/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================== OPTIMIZED HEADER ===================== */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 1100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
}

.location-btn {
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
  text-align: left;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: #eb8a51;
  font-size: 20px;
}

.top-navbar {
  position:relative;
  /* top: 48px; */
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  z-index: 1090;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.back-btn {
  font-size: 28px;
  color: #333;
  text-decoration: none;
  padding: 4px 10px;
}

.logo img {
  max-height: 58px;
  width: auto;
}

.nav-icons {
  display: flex;
  align-items: center;
}

.cta-small {
  background: #eb8a51;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .party-hero {
    height: 260px;
  }
}

/* ===================== HERO ===================== */
.party-hero {
  position: relative;
  min-height: 100vh;
  height: auto; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 60px 0 80px;
}

/* .party-hero {
  position: relative;
  min-height: 100vh;  
  height: auto;        
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px;  
  box-sizing: border-box;
} */

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(62, 18, 9, 0.78), rgba(62, 18, 9, 0.88)),
    url('../images/birthday-decor.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.hero-logo {
  height: 82px;
  width: auto;
  margin-bottom: 24px;
}

.luxury-heading {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -1.2px;
}

.tagline {
  font-size: clamp(22px, 5.5vw, 32px);
  color: #F79251;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(16.5px, 4vw, 19px);
  line-height: 1.55;
  max-width: 660px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.cta-primary, .cta-secondary {
  padding: 16px 44px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  min-width: 270px;
}

.cta-primary {
  background: #F79251;
  color: #3E1209;
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 3px solid rgba(255,255,255,0.9);
}

/* Location Trust */
.location-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.location-trust span {
  background: rgba(255,255,255,0.18);
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 15px;
}

/* Flag Icons */
.flag-icon {
  width: 30px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

/* ===================== RESPONSIVE ===================== */

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
  .location-trust {
    flex-direction: row;
    gap: 20px;
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .party-hero {
    padding: 60px 0 70px;
    min-height: 520px;
  }
  .hero-logo {
    height: 65px;
  }
}

@media screen and (orientation: landscape) and (max-height: 520px) {
  .party-hero {
    padding: 40px 0 60px;
    min-height: 460px;
  }
  
  .luxury-heading { font-size: 32px; }
  .tagline { font-size: 22px; }
}


/* ===================== INTRO SECTION WITH IMAGE ===================== */

.intro-section {
  background: #FBFAF7;
  padding: 80px 20px 70px;
}

.intro-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.intro-image {
  width: 350px;
  height: 300px;
  max-width: 520px;
  max-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(62, 18, 9, 0.15);
}

.intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.intro-image:hover img {
  transform: scale(1.04);
}

.intro-content {
  text-align: center;
  max-width: 720px;
}

.intro-heading {
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 700;
  color: #3E1209;
  margin-bottom: 32px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.intro-text {
  font-size: 17.5px;
  line-height: 1.68;
  color: #444;
  margin-bottom: 26px;
}

.intro-text strong {
  color: #3E1209;
  font-weight: 600;
}

.highlight {
  color: #F79251;
  font-weight: 600;
}

.intro-cta {
  margin-top: 40px;
}

.cta-outline {
  display: inline-block;
  background: transparent;
  color: #3E1209;
  border: 2.5px solid #F79251;
  padding: 16px 42px;
  border-radius: 50px;
  font-size: 17.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cta-outline:hover {
  background: #F79251;
  color: #3E1209;
  transform: translateY(-4px);
}

/* Desktop Layout - Image on Left, Text on Right */
@media (min-width: 768px) {
  .intro-wrapper {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  
  .intro-image {
    flex: 1;
    max-width: 480px;
  }
  
  .intro-content {
    flex: 1;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 60px 16px 50px;
  }
}

/* ===================== SHOW UP SECTION ===================== */
.show-up-section {
  position: relative;
  padding: 100px 20px;
  color: white;
  overflow: hidden;
}

.show-up-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), 
              url('../images/event-venue.jpeg') center/cover no-repeat;
  z-index: 1;
}

.show-up-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.show-up-heading {
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #F79251;
}

.show-up-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.show-up-left {
  text-align: center;
}

.show-up-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.show-up-text-bold {
  font-weight: bold;
  font-size: larger;
  color: #F79251;
}

.show-up-right .benefit-list {
  list-style: none;
  padding: 0;
}

.show-up-right .benefit-list li {
  font-size: 17.5px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.show-up-right .benefit-list li::before {
  content: "✔";
  color: #F79251;
  font-weight: bold;
}

/* Desktop */
@media (min-width: 768px) {
  .show-up-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  
  .show-up-left {
    text-align: left;
  }
}

/* ===================== SERVICES SECTION ===================== */
.services-section {
  background: linear-gradient(180deg, #FBFAF7 0%, #F5F0E8 100%);
  position: relative;
  padding: 100px 20px 110px;
  overflow: hidden;
}

/* Subtle elegant pattern overlay */
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1585208798174-6cedd78e0198') repeat; /* Light African/gold pattern - replace with your own */
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(34px, 7vw, 50px);
  font-weight: 700;
  color: #3E1209;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 18.5px;
  color: #5C4033;
  max-width: 680px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(62, 18, 9, 0.09);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0e6d8;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #F79251, #3E1209);
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 25px 55px rgba(62, 18, 9, 0.16);
}

.service-image {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
}

.service-content h3 {
  font-size: 1.55rem;
  color: #3E1209;
  margin-bottom: 16px;
  font-weight: 700;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-content ul {
  padding-left: 22px;
}

.service-content li {
  margin: 9px 0;
  color: #444;
  position: relative;
}

.service-content li::before {
  content: "•";
  color: #F79251;
  position: absolute;
  left: -18px;
  font-size: 18px;
}

/* ===================== GALLERY SECTION ===================== */
.gallery-section {
  background: #FBFAF7;
  padding: 90px 20px 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  color: #3E1209;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: white;
  border: 2px solid #F79251;
  color: #3E1209;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #F79251;
  color: white;
}

.gallery-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 0 20px 10px;
}

.gallery-scroll-container::-webkit-scrollbar {
  display: none;
}

.gallery-grid {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  width: max-content;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(62, 18, 9, 0.1);
  width: 280px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(62, 18, 9, 0.92));
  color: white;
  padding: 28px 20px 20px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Desktop Grid */
@media (min-width: 768px) {
  .gallery-scroll-container {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
    gap: 24px;
  }
  
  .gallery-item {
    width: auto;
    flex-shrink: 1;
  }
}

/* ===================== FINAL CTA - LUXURY DESIGN ===================== */

.final-cta {
  background: linear-gradient(135deg, #3E1209 0%, #5C1F12 100%);
  color: white;
  padding: 110px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/gold-pattern-light.png') repeat; /* Optional elegant pattern */
  opacity: 0.08;
  z-index: 1;
  mix-blend-mode: screen;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #F79251;
}

.cta-subtext {
  font-size: 18.5px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 48px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: 50px;
}

.cta-primary.large,
.cta-secondary.large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 52px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.4s ease;
  min-width: 300px;
  justify-content: center;
}

.cta-primary.large {
  background: #F79251;
  color: #3E1209;
  box-shadow: 0 12px 35px rgba(247, 146, 81, 0.4);
}

.cta-primary.large:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(247, 146, 81, 0.5);
}

.cta-secondary.large {
  background: transparent;
  color: white;
  border: 3px solid rgba(255,255,255,0.85);
}

.cta-secondary.large:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

/* ===================== TRUST BADGES ===================== */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15.5px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.trust-badges .flag-icon {
  width: 24px;
  height: 18px;
  object-fit: contain;
  border-radius: 3px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .trust-badges {
    gap: 12px;
  }
  
  .trust-badges span {
    padding: 10px 18px;
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  .trust-badges {
    flex-direction: column;
    /* display: flex;
    flex-wrap: wrap; */
    align-items:flex-start;
    justify-content:flex-start;

  }
  
  .trust-badges span {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

.whatsapp-btn {
  background: #25D366 !important;   /* WhatsApp green */
  color: white !important;
}

.whatsapp-btn:hover {
  background: #20ba5a !important;
  transform: translateY(-6px);
}

/* Responsive */
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .final-cta {
    padding: 80px 25px 70px;
  }

  .cta-content .cta-buttons .cta-primary.large,
  .cta-content .cta-buttons .cta-secondary.large {
    min-width: 280px;
    font-size: 19px;
  }
}

/* Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-align: center;
  color: #eb8a51;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item i {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.nav-item.active,
.nav-item:hover {
  color: #c74d06; /* active or primary color */
}

/* Bottom Navigation Bar Cart Icon Badge */
.icon-wrapper {
  position: relative;
  display: inline-block;
}

.cart-badge {
  position: absolute;
  top: -9px;
  right: -11px;
  background-color: red;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
}


/* ===================== LIGHTBOX ===================== */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 90vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 10px;
  font-size: 42px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  font-size: 42px;
  width: 50px;
  height: 60px;
  cursor: pointer;
  border-radius: 8px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  margin-top: 20px;
  color: white;
}

.lightbox-caption h4 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.lightbox-caption p {
  margin: 0;
  opacity: 0.9;
}