body {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.font-serif-id {
  font-family: "Playfair Display", serif;
}

/* Logo styling */
.logo-container {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-container:hover {
  transform: scale(1.08);
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.logo-container .logo-fallback {
  width: 24px;
  height: 24px;
  color: white;
}

.preview-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 9999px;
  border: 2px solid #f59e0b;
  background: #fff;
  margin-top: 4px;
}
.preview-img-sm {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 9999px;
  border: 2px solid #f59e0b;
  background: #fff;
}
.file-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}
.error-message {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}
.error-message.show {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.success-animation {
  animation: slideUp 0.5s ease forwards;
}

.lang-btn {
  transition: all 0.3s ease;
}
.lang-btn.active {
  background: #f59e0b;
  color: white;
  border-color: #f59e0b;
}
.lang-btn:not(.active) {
  color: #64748b;
}
.lang-btn:not(.active):hover {
  background: #f1f5f9;
}

.event-banner {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-left: 4px solid #f59e0b;
}

.event-closed-banner {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-left: 4px solid #ef4444;
}

.mini-hero {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #f59e0b 100%);
}

/* Form focus styles */
.form-input:focus {
  border-color: #f59e0b !important;
  ring-color: #f59e0b !important;
}

/* Responsive */
@media (max-width: 640px) {
  .logo-container {
    width: 36px;
    height: 36px;
  }
  .logo-container .logo-fallback {
    width: 20px;
    height: 20px;
  }
}

/* Header Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo-text .brand {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, #d97706, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
}

.header-logo-text .sub {
  font-size: 0.55rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .header-logo img {
    height: 32px;
  }
  .header-logo-text .brand {
    font-size: 1rem;
  }
  .header-logo-text .sub {
    font-size: 0.45rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .header-logo img {
    height: 28px;
  }
  .header-logo-text .brand {
    font-size: 0.85rem;
  }
  .header-logo-text .sub {
    font-size: 0.4rem;
    letter-spacing: 0.5px;
  }
  .header-logo {
    gap: 0.5rem;
  }
}

/* WhatsApp Floating Button - Simple */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
}

.wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.wa-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .wa-float a {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .wa-float {
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 480px) {
  .wa-float a {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .wa-float {
    bottom: 14px;
    right: 14px;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100%;
  background: white;
  padding: 2rem 1.5rem;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open .mobile-menu-content {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
}

.mobile-menu-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  text-decoration: none;
}

.mobile-menu-logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 0.5rem;
}

.mobile-menu-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(to right, #d97706, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  text-align: center;
}

.mobile-menu-logo-sub {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 0.1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #d97706;
  padding-left: 0.5rem;
}

.mobile-nav-link i {
  width: 24px;
  color: #d97706;
}

.mobile-menu-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.hamburger-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }
  .desktop-nav {
    display: none !important;
  }
  .desktop-btn {
    display: none !important;
  }
  .mobile-menu {
    display: block;
  }
}

/* Group button styles */
.btn-wa {
  background: #25d366;
  color: white;
}
.btn-wa:hover {
  background: #1da851;
  color: white;
}
