/* =========================================
   BOUGIE BEACH PARTY CO. - MASTER STYLES
   ========================================= */

/* --- 1. VARIABLES (BRAND KIT) --- */
:root {
  /* Primary Colors */
  --gold: #b38538;
  --gold-hover: #966f2d;
  --page-pink: #FEEFED;       /* Light Background */
  --dark-pink: #ffbebe;       /* Girly vibes */
  --ink: #3A2F2A;             /* Text Color */
  
  /* Accent Colors (New Palette) */
  --smokey-blue: #7b989a;
  --light-blue: #a7cab5;      /* Bright accent */
  --green: #344235;
  --smokey-green: #979d69;
  --terracotta: #ee8e4a;
  --white: #ffffff;
  
  /* Fonts */
  --font-head: 'Josefin Slab', serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Dancing Script', cursive; 
  
  /* Layout & Spacing */
  --max-width: 1200px;
  --header-height: 80px;
  --radius: 12px;
  --shadow-soft: 0 10px 40px rgba(58, 47, 42, 0.05); /* Softer, luxurious shadow */
  --shadow-hover: 0 15px 45px rgba(179, 133, 56, 0.15);

  /* Footer Specific Variables */
  --footer-bg: var(--green);
  --footer-text: var(--white);
}

/* --- 2. GLOBAL RESET & TYPOGRAPHY --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--page-pink);
  color: var(--ink);
  line-height: 1.6;
  padding-top: var(--header-height);
  overflow-x: hidden; /* Prevents side scroll glitches */
  -webkit-font-smoothing: antialiased; /* Makes text rendering smoother */
}

/* Add this new utility to help the browser handle the heavy images */
.card-img img, .slide-img {
  will-change: transform; /* Tells browser to prepare for animation */
  transform: translateZ(0); /* Hardware acceleration hack */
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Responsive Typography */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); } /* Prevents overflow */
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--gold); }
h3 { font-size: 1.5rem; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
ul { list-style: none; }

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 25px; /* Better side spacing */
}

.text-center { text-align: center; }

/* Improved Spacing Logic */
.section-pad { 
  padding: 80px 0; 
}
@media (max-width: 768px) {
  .section-pad { padding: 50px 0; } /* Tighter on mobile */
}

/* Creative Element: Wave Divider */
.wave-divider {
  width: 100%;
  height: auto;
  margin-bottom: -10px; /* Connects smoothly to next section */
  display: block;
}
.wave-fill { fill: var(--white); }

/* --- 3. BUTTONS (CTA STRATEGY) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

/* Primary: Gold */
.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 15px rgba(179, 133, 56, 0.3);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 133, 56, 0.4);
}

/* Secondary: Ghost */
.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* Accent Button (Terracotta/Blue) */
.btn-accent {
  background-color: var(--terracotta);
  color: white;
  border: 2px solid var(--terracotta);
}
.btn-accent:hover {
  background-color: #d67a3a;
  border-color: #d67a3a;
}

/* --- 4. HEADER & NAV (Optimized) --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  /* Increased opacity slightly so we can drop the blur */
  background: rgba(254, 239, 237, 0.98); 
  z-index: 1000;
  border-bottom: 1px solid rgba(179, 133, 56, 0.2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Smaller shadow radius is faster */
  /* backdrop-filter removed for performance */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Default logo image (for pages still using .logo class) */
.logo img { height: 55px; border-radius: 0; }

/* --- Brand subtitle under logo (DESKTOP) --- */
/* Use this when your HTML uses <a class="logo-wrap"> ... <span class="brand-subtitle desktop-only"> */
.logo-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;   /* centers logo + subtitle together */
    text-align: center;
    line-height: 1;
}

.logo-wrap img {
  height: 55px;
  border-radius: 0;
  display: block;
}

/* Tight + pretty, very close to logo */
.brand-subtitle {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;           /* VERY close */
  opacity: 0.85;
  font-family: var(--font-body);
}

/* Keep your nav on desktop */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  height: 100%;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

/* Dropdown Menu Styles (Desktop) */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  z-index: 1001;
  border-top: 2px solid var(--gold);
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: slideDown 0.3s ease;
}

.dropdown-content a {
  color: var(--ink);
  padding: 15px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background-color: var(--page-pink);
  color: var(--gold);
}

@keyframes slideDown {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--gold); }

/* --- 5. HERO SECTION --- */
.hero {
  position: relative;
  min-height: 85vh; /* Changed to min-height for safety */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://raw.githubusercontent.com/GabrielaFiona/Drafts-bougiebeachpartyco/d142ae1ac1e07c83f7cf171fe1a60c0c58817684/assets/img/whitesparklebackgrnd.jpg'); 
  background-size: cover;
  background-position: center;
  padding: 100px 20px; /* Added padding so content never hits edges */
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(58, 47, 42, 0.35); /* Slightly darker for better contrast */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex; 
  gap: 15px; 
  justify-content: center; 
  flex-wrap: wrap;
}

/* --- 6. FEATURED & CARDS --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px; /* Increased gap */
  margin-top: 40px;
}

.info-card {
  padding: 20px;
}

/* Product Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
}

.card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-hover);
}

.card-img {
  height: 260px;
  background-color: #ddd;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-body { 
  padding: 30px; 
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

/* --- 7. ZIG-ZAG LAYOUT (All Rentals) --- */
.zigzag-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  
  /* New Boxed Design */
  background-color: var(--page-pink); /* Returns the brand pink to the card itself */
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(179, 133, 56, 0.15); /* Subtle gold border */
  box-shadow: 0 10px 30px rgba(58, 47, 42, 0.05); /* Soft lift */
  transition: transform 0.3s ease;
}

.zigzag-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(179, 133, 56, 0.15);
}

.zigzag-item:nth-child(even) {
  flex-direction: row-reverse;
}

.zigzag-img { 
  flex: 1; 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: var(--shadow-soft);
  position: relative;
  min-height: 300px; /* Ensures image size consistency */
  background-color: var(--white);
}

.zigzag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zigzag-img::before {
  content: '';
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px solid rgba(255,255,255,0.6);
  z-index: 2;
  pointer-events: none;
  border-radius: 8px;
}

.zigzag-content { flex: 1; }

.zigzag-content h2 { margin-bottom: 0.5rem; font-size: 2rem; }

/* Mobile Adjustments for Boxes */
@media (max-width: 900px) {
  .zigzag-item, .zigzag-item:nth-child(even) { 
    flex-direction: column; 
    gap: 30px;
    padding: 25px; /* Slightly less padding on mobile */
  }
}

/* =========================================
   Mobile Fix: Remove white image frame + ensure clean crop
   ========================================= */
@media (max-width: 900px) {
  .zigzag-img {
    background: transparent !important; /* removes the white box */
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden; /* keeps edges clean */
    min-height: clamp(220px, 55vw, 340px); /* better mobile framing */
  }

  .zigzag-img::before {
    display: none !important;
  }

  .zigzag-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* --- 8. FOOTER (Fixed Shaking) --- */
.bbp-footer {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 80px 20px 40px;
  margin-top: 0; /* Removed margin to prevent gaps */
  position: relative;
}

/* Rounded top for footer - creative element */
.bbp-footer::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; width: 100%; height: 41px;
  background: var(--green);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: -1;
}

.bbp-logo-wrap {
  width: 100px;
  margin: 0 auto 20px;
}

.bbp-logo {
  display: block;
  width: 100%;
  height: auto;
  animation: softPulse 3s infinite alternate ease-in-out;
}

@keyframes softPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.bbp-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--white);
}

.bbp-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.bbp-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.bbp-btn.primary {
  background: var(--gold);
  color: white;
}
.bbp-btn.primary:hover { background: var(--gold-hover); }

.bbp-btn.alt {
  background: white;
  color: var(--green);
}
.bbp-btn.alt:hover { background: #f0f0f0; }

.bbp-socials {
  display: flex; justify-content: center; gap: 20px; margin-bottom: 30px;
}

.bbp-socials a {
  width: 45px; height: 45px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.bbp-socials a:hover { background: var(--gold); border-color: var(--gold); }
.bbp-socials svg { width: 20px; fill: white; }

.bbp-bottom { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* --- 9. EXPLORE PAGE SPECIFIC --- */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.vibe-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-soft);
}

.vibe-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vibe-card:hover .vibe-img { transform: scale(1.1); }

.vibe-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  background: linear-gradient(to top, rgba(52, 66, 53, 0.9), transparent);
  padding: 30px 20px;
  color: white;
  transform: translateY(10px);
  transition: 0.3s;
}

.vibe-card:hover .vibe-overlay { transform: translateY(0); }

.vibe-overlay h3 { color: var(--gold); margin-bottom: 5px; font-size: 1.8rem; }
.vibe-overlay p { font-size: 0.9rem; margin-bottom: 15px; opacity: 0.9; }

/* --- 10. MOBILE RESPONSIVE (NAV) --- */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--page-pink);
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    align-items: stretch;
    height: auto;
  }

  .nav-menu.active { display: flex; }
  .mobile-toggle { display: block; }
  
  /* Mobile Dropdown Handling */
  .dropdown { display: block; height: auto; }
  .dropdown-content {
    display: none; /* Hidden by default */
    position: relative;
    top: 0; left: 0;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: rgba(0,0,0,0.02);
    margin-top: 10px;
    border-top: none;
  }
  
  /* Show dropdown content when parent has 'open' class via JS */
  .dropdown.open .dropdown-content { display: block; animation: fadeIn 0.3s; }
  
  .zigzag-item, .zigzag-item:nth-child(even) { flex-direction: column; gap: 30px; }
  
  .hero-btns { flex-direction: column; gap: 15px; }
  .hero-btns .btn { width: 100%; }
}

/* FAQ & CONTACT Fixes */
.faq-grid, .contact-grid { width: 100%; }

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* =========================================
   FAQ PAGE STYLES
   ========================================= */

/* 1. Chips (Quick Navigation) */
.faq-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-sm {
  padding: 8px 24px;
  font-size: 0.9rem;
  border-radius: 50px;
}

/* 2. Main Grid Layout */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

/* 3. Category Card */
.faq-category {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(179, 133, 56, 0.1);
}

.faq-category[open] {
  box-shadow: 0 15px 40px rgba(58, 47, 42, 0.12);
  transform: translateY(-2px);
  border-color: var(--gold);
}

/* Category Header */
.cat-summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  background: var(--white);
  transition: background 0.3s ease;
}

.cat-summary:hover {
  color: var(--gold);
  background: #fffcf8;
}

.cat-summary::-webkit-details-marker { display: none; }

.cat-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Chevron */
.chev {
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-category[open] .chev {
  transform: rotate(180deg);
}

/* 4. Questions List */
.faq-list {
  padding: 5px 25px 25px 25px;
  background: var(--white);
  animation: fadeIn 0.3s ease-in-out;
}

/* Individual Questions */
.q-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.q-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.q-summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--ink);
  padding: 10px 0;
  list-style: none;
  position: relative;
  padding-left: 20px;
  transition: color 0.2s;
}

.q-summary:hover {
  color: var(--gold);
}

.q-summary::-webkit-details-marker { display: none; }

/* Gold Dot Indicator */
.q-summary::before {
  content: "•";
  color: var(--gold);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 2px;
  line-height: 1;
}

.answer {
  color: #666;
  line-height: 1.6;
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 0.95rem;
}

/* 5. Anchor Offset (Fixes scrolling behind fixed header) */
.anchor-offset {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* 1. Contact Chips */
.contact-chips {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* 2. Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* 3. The Cards */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(179, 133, 56, 0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.card-head {
  background: linear-gradient(180deg, #ffffff, #f8f1ea);
  padding: 20px 25px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-head h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--ink);
}

.card-body {
  padding: 25px;
}

/* 4. Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-body);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(179, 133, 56, 0.1);
}

/* 5. Mobile Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    margin-bottom: 20px;
  }
}

/* =========================================
   11. CELEBRATIONS PAGE STYLES (OVERLAP)
   ========================================= */

/* Base Section Styling */
.theme-section {
  padding: 80px 0;
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(0,0,0,0.03); 
}

/* --- THEME DEFINITIONS --- */

/* 1. Girls Theme (Pink/Girly) */
.theme-girls {
  background-color: var(--page-pink); 
}
.theme-girls h2 {
  color: #d15a7c; 
  font-family: var(--font-accent); 
  font-size: 3rem;
}
.theme-girls .idea-card {
  border-left-color: #d15a7c;
}

/* 2. Romance Theme (Warm/Terracotta) */
.theme-romance {
  background-color: #fffbf7; 
}
.theme-romance h2 {
  color: var(--terracotta);
  font-family: var(--font-head);
}
.theme-romance .idea-card {
  border-left-color: var(--terracotta);
}

/* 3. Family Theme (Fresh/Blue) */
.theme-family {
  background-color: #f0f8ff; 
}
.theme-family h2 {
  color: #4a90e2;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.theme-family .idea-card {
  border-left-color: #4a90e2;
}

/* 4. Date Night (Smokey/Moody) */
.theme-date {
  background-color: #f4f7f7; 
}
.theme-date h2 {
  color: var(--smokey-blue);
  font-family: var(--font-head);
}
.theme-date .idea-card {
  border-left-color: var(--smokey-blue);
}

/* 5. Casual (Green/Earthy) */
.theme-casual {
  background-color: var(--white);
}
.theme-casual h2 {
  color: var(--green);
  font-family: var(--font-head);
}
.theme-casual .idea-card {
  border-left-color: var(--green);
  background: #f9f9f9;
}

/* --- OVERLAP LAYOUT COMPONENTS --- */

.theme-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.theme-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.theme-header p {
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0.8;
  margin-top: 10px;
}

/* 2. Large Hero Image */
.celeb-media {
  width: 100%;
  height: 350px; /* Limits height so we see text above and below */
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.celeb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 3. The Overlapping Service Container */
.celeb-services-overlap {
  position: relative;
  z-index: 2; /* Sits on top */
  margin-top: -80px; /* Pulls it UP over the image */
  padding: 0 20px;
}

/* Grid for Cards */
.idea-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

/* The Cards */
.idea-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  border-left-style: solid;
  border-left-width: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.idea-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.idea-card h4 {
  margin: 0 0 8px 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-family: var(--font-head);
}

.idea-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
  flex-grow: 1;
}

.idea-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .celeb-media {
    height: 200px;
  }
  .celeb-services-overlap {
    margin-top: -40px;
  }
  .idea-grid {
    grid-template-columns: 1fr;
  }
  .theme-section {
    padding: 50px 0;
  }
}

/* =========================================
   12. RENTAL INQUIRY FORM (Added)
   ========================================= */

.rental-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.inquiry-form-wrap {
  display: none;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 25px;
  border-radius: var(--radius);
  margin-top: 20px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.03);
  animation: fadeIn 0.4s ease;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .rental-actions {
    flex-direction: column;
  }
  .rental-actions .btn {
    width: 100%;
  }
}

/* =========================================
   13. HOMEPAGE ADDITIONS (Interactive)
   ========================================= */

.card-link {
  color: var(--gold);
  font-weight: bold;
  margin-top: 15px;
  display: block;
  transition: letter-spacing 0.3s;
}
.card:hover .card-link {
  letter-spacing: 1px;
}

.celebration-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.celeb-pill {
  background: var(--white);
  border: 1px solid rgba(179, 133, 56, 0.3);
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-decoration: none;
}

.celeb-pill:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(179, 133, 56, 0.2);
}

.slide-img {
  transition: opacity 0.4s ease;
}

/* =========================================
   14. NEW UPDATES (Mobile Fix & Gallery Arrows)
   ========================================= */

@media (max-width: 768px) {
  .hero {
    min-height: auto; 
    padding: 110px 20px 40px; 
    align-items: flex-start;
  }
  
  .hero-content {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

.gallery-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden; 
}

.gallery-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 5px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 auto;
  width: 280px;
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  position: relative;
}

.gallery-item:hover { transform: scale(1.03); }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--white);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.2s;
}

.gallery-nav:hover {
  background: var(--gold-hover);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

@media (max-width: 768px) {
  .gallery-nav { display: none; }
  .gallery-wrapper { padding: 0; }
  .gallery-strip { padding-left: 20px; padding-right: 20px; }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(58, 47, 42, 0.95);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active { display: flex; opacity: 1; }

.lightbox-content {
  max-width: 90%; max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transform: scale(0.9); transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content { transform: scale(1); }

.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: var(--white); font-size: 3rem;
  cursor: pointer; line-height: 1; z-index: 3001;
}

/* =========================================
   15. FULL GALLERY PAGE STYLES (NEW)
   ========================================= */

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding-bottom: 60px;
}

.gallery-page-grid .gallery-item {
  width: 100%; 
  height: 350px;
  flex: none;
}

.gallery-divider {
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
}

.gallery-divider h2 {
  background: var(--page-pink);
  display: inline-block;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  color: var(--gold);
}

.gallery-divider::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; width: 100%; height: 1px;
  background: rgba(179, 133, 56, 0.3);
  z-index: 1;
}

.gallery-intro-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  margin-bottom: 50px;
  border: 1px solid rgba(179, 133, 56, 0.2);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

/* =========================================
   MOBILE MENU BRAND BLOCK (the one you loved)
   - Hidden on desktop
   - Shows at top of mobile menu when open
   ========================================= */

/* Hidden by default (desktop) */
.mobile-brand-area {
  display: none;
}

@media (max-width: 900px) {
  /* Show ONLY when the hamburger menu is open */
  .nav-menu.active .mobile-brand-area {
    display: block;
    padding: 14px 16px 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-align: center;
  }

  .mobile-brand-title {
    font-family: var(--font-accent);
    font-size: 1.45rem;
    color: var(--gold);
    line-height: 1.1;
  }

  .mobile-brand-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 4px;
    color: var(--gold);
  }

  /* Hide the desktop subtitle under the logo on mobile */
  .desktop-only { display: none; }
}
