/*
  style.css - Main stylesheet for Snap Click Booth Website
  ---------------------------------------------------
  This file contains all global and page-specific styles for the website.
  
  CENTRALIZED COLOR & STYLE SYSTEM:
  All brand colors, fonts, and component styles are defined in the :root CSS variables
  section (see below). This allows for easy theme changes across the entire website:
  
  TO CHANGE THE BRAND COLOR:
  1. Locate the `:root { ... }` section (around line 523)
  2. Update `--primary-accent` to your desired color (currently #CDA274 - gold)
  3. Update `--primary-accent-hover` to the darker version for hover states
  4. All buttons, links, and accents throughout the site will automatically update
  
  TO CHANGE BUTTON STYLES:
  - Use the .btn-primary and .btn-secondary classes throughout all HTML files
  - Update their definitions in the style.css to change globally
  - All button colors, shadows, and hover effects are centralized
  
  TO CHANGE FORM STYLES:
  - Use the .form-section-heading, .form-subsection-heading, .form-border-accent,
    .form-header-accent, and .form-scrollbar-accent classes
  - All form styling is centralized and consistent across pages
  
  FONT FAMILY CHANGES:
  - Primary font: --font-primary (default: 'Work Sans', sans-serif)
  - Heading font: --font-heading (default: 'Playfair Display', serif)
  - Update these variables in :root to change fonts globally
  
  ALL PAGES USE:
  - CSS variables for colors (loaded from style.css)
  - Centralized button classes (.btn-primary, .btn-secondary)
  - Consistent typography and spacing
  
  This design ensures consistency and makes future theme changes simple and fast.
*/

/* --- Google Fonts Import --- */
/* Note: Playfair Display is imported via link tags in individual HTML files */

/* --- Global Font Styles --- */
body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

p, li, span, a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
}

/* --- Heading Styles --- */
/* Styles for headings using the Playfair Display font, used on all pages for main headings */
.playfair-heading {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 2rem;
  color: #222;
}

/* --- CENTRALIZED BUTTON STYLES --- */
/* Primary button: used for main CTAs throughout the site */
.btn-primary {
  padding: 0.5rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: var(--border-radius);
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border: none;
  box-shadow: 0 4px 12px var(--button-primary-shadow);
  margin: 0;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--button-primary-hover);
  box-shadow: 0 6px 20px var(--button-primary-shadow);
  transform: translateY(-3px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Secondary button: used for alternative CTAs */
.btn-secondary {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  border: none;
  box-shadow: 0 4px 12px var(--button-secondary-shadow);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--button-secondary-hover);
  color: var(--button-primary-bg);
  transform: translateY(-3px);
}

/* --- CENTRALIZED FORM STYLES --- */
/* Form section heading: used for form section titles */
.form-section-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--form-heading-color);
  margin-bottom: 1.5rem;
}

/* Form subsection heading: used for form subsection titles in summary */
.form-subsection-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--form-heading-color);
  margin-bottom: 0.5rem;
}

/* Form border accent: used for form section borders and dividers */
.form-border-accent {
  border: 1px solid var(--form-border-color);
}

/* Form header accent: used for form header backgrounds */
.form-header-accent {
  background: var(--form-heading-color);
  color: var(--button-primary-text);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Form scrollbar accent: used for custom scrollbars in form sections */
.form-scrollbar-accent {
  scrollbar-width: thin;
  scrollbar-color: var(--form-scrollbar-thumb) var(--form-scrollbar-track);
}

/* --- Hero Banner Styles (Home Page) --- */
/* Styles for the large banner at the top of the home page */
.hero-banner {
  position: relative;
  width: 100vw;
  min-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 340px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: 0;
  box-sizing: border-box;
}
/* Background image for the hero banner */
.hero-banner-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('Images/Banner No Logo.png') center center/cover no-repeat;
  z-index: 0;
  filter: brightness(0.85) saturate(1.1);
}
/* Content inside the hero banner (logo, text, buttons) */
.hero-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  min-height: 340px;
}
/* Text block in the hero banner */
.hero-banner-text {
  color: #fff;
  text-shadow: 0 2px 16px rgba(44,44,44,0.18);
  max-width: 520px;
}
.hero-banner-text h2 {
  font-family: 'Rock Salt', cursive, Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: #fff;
  letter-spacing: 1.5px;
}
.hero-banner-text p {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0;
}
/* Call-to-action buttons in the hero banner */
.hero-banner-cta {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-end;
  margin-top: 6rem !important;
}

/* Hero section button container - adds spacing between text and buttons */
.hero-button-container {
  margin-top: 8rem !important;
}
/* Primary button style */
.banner-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Work Sans', sans-serif;
  text-decoration: none;
  border-radius: 4px;
  background: var(--primary-accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(205,162,116,0.25);
  margin: 0;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Secondary button style */
.banner-btn-secondary {
  background: #fff;
  color: var(--primary-headings);
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Button hover and focus effects */
.banner-btn:hover, .banner-btn:focus {
  background: #b8925e;
  box-shadow: 0 6px 20px rgba(205,162,116,0.4);
  transform: translateY(-3px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.banner-btn-secondary:hover, .banner-btn-secondary:focus {
  background: #f0f0f0;
  color: var(--primary-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
/* Responsive styles for smaller screens */
@media (max-width: 900px) {
  .hero-banner-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    min-height: 260px;
  }
  .hero-banner-cta {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-end;
    margin-top: 2.5rem !important;
  }
  .hero-banner-text {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-banner {
    min-height: 180px;
  }
  .hero-banner-content {
    min-height: 180px;
    padding: 1.2rem 0.5rem;
  }
  .banner-btn {
    font-size: 1rem;
    padding: 0.65rem 1.2rem;
    min-width: 110px;
  }
}

/* --- Modern Hero Section Styles --- */
.sv-section.hero {
  min-height: 600px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.sv-section.hero .sv-section-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Responsive hero section */
@media (max-width: 900px) {
  .sv-section.hero {
    min-height: 450px;
  }
  .sv-section.hero .sv-section-inner {
    padding: 3rem 1rem;
  }
}

@media (max-width: 600px) {
  .sv-section.hero {
    min-height: 380px;
    height: auto !important;
  }
  .sv-section.hero .sv-section-inner {
    padding: 2rem 0.8rem;
  }
  .sv-section.hero .sv-section-inner h1 {
    font-size: 2.2rem !important;
  }
  .sv-section.hero .sv-section-inner p {
    font-size: 1rem !important;
  }
}

/* --- Full-width Colored Content Blocks (Home Page) --- */
/* Styles for the stacked info blocks on the home page */
.info-blocks-stacked {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Individual info block styles */
.info-block {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 2.2rem 0 2.2rem 0;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
/* Remove top border for blocks after the first */
.info-block + .info-block {
  border-top: none;
}
/* Color variations for info blocks */
.info-block-green {
  background: linear-gradient(90deg, #e6fff7 60%, #e6f0ff 100%);
}
.info-block-orange {
  background: linear-gradient(90deg, #fff7e6 60%, #ffe7f7 100%);
}
.info-block-yellow {
  background: linear-gradient(90deg, #fffde6 60%, #fff7e6 100%);
}
.info-block:last-child {
  background: linear-gradient(90deg, #f7e6ff 60%, #e6fff7 100%);
}
/* Responsive adjustments for info blocks */
@media (max-width: 900px) {
  .info-block {
    padding: 1.2rem 0.2rem;
  }
}

/* --- Section Headings --- */
/* Centered headings for sections */
section > h2, section h2 {
  text-align: center;
}

/* --- Navigation Styles --- */
/* Styles for the navigation menu */
nav ul {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: flex-end; /* Push links to the right */
  transition: right 0.3s ease;
  margin-right: 0;
}

nav a {
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

nav a:hover,
nav a:focus {
  color: #f0e5d1;
  border-bottom: none;
}

/* --- Logo Link and Logo Styles --- */
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 auto;
  margin: 0 1rem;
  transition: transform 0.3s ease;
  z-index: 10;
  position: relative;
  min-width: 120px;
}

.logo-link:hover .logo {
  transform: scale(1.05);
}

.logo {
  height: 120px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) brightness(0) saturate(0) invert(1);
  transition: transform 0.3s ease;
}

/* --- Gallery Styles --- */
/* Styles for the gallery section, including grid layout and individual gallery items */
.gallery-block-link {
  text-decoration: none;
  color: inherit;
}
.gallery-block-link h3,
.gallery-block-link .gallery-date {
  text-decoration: none !important;
  color: inherit;
}
.package-price {
  color: var(--primary-accent);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  text-align: center;
  letter-spacing: 1px;
}
/* Gallery Page Styles */
.gallery-hero {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
}
.gallery-hero h2 {
  color: var(--primary-accent);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
/* Gallery Event Header: Match Contact Us header color */
.gallery-hero h2.playfair-heading {
  color: #222;
}
.gallery-list {
  grid-auto-rows: 1fr;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 2.2rem 2.2rem;
  justify-items: center;
  max-width: 100%;
  margin: 0 0 3rem 0;
  background: none;
  padding: 0 1.5rem 2.5rem 1.5rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  max-width: 1100px;
}

@media (max-width: 900px) {
  .gallery-list {
    grid-template-columns: repeat(2, minmax(0, 320px));
  }
}

@media (max-width: 600px) {
  .gallery-list {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
  }
}
/* Gallery Block: image on top, title, then date */
.gallery-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44,44,44,0.10);
  padding: 0 0 1.2rem 0;
  min-width: 0;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  margin: 0 auto;
  border: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.gallery-block:hover, .gallery-block:focus {
  box-shadow: 0 8px 32px rgba(44,44,44,0.13), 0 2px 8px rgba(127,158,140,0.10);
  border-color: var(--primary-accent);
}

@media (hover: hover) and (pointer: fine) {
  .gallery-block:hover, .gallery-block:focus {
    transform: translateY(-4px) scale(1.025);
  }
}
.gallery-block h3 {
  margin: 1.1rem 0 0.3rem 0;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  text-shadow: none;
  line-height: 1.18;
  min-height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.gallery-date {
  color: #888;
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 0.2rem;
  margin-top: 0.1rem;
  font-weight: 400;
  letter-spacing: 0.1px;
}
.gallery-images {
  position: relative; /* Ensure stacking context for lock icon */
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #f7f7f7;
  max-width: 320px;
  max-height: 320px;
}
.gallery-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s;
}

/* Darken the image slightly on hover/focus of the gallery block */
.gallery-block:hover .gallery-images img,
.gallery-block:focus .gallery-images img {
  filter: brightness(0.75);
}

/* --- Gallery Lock Icon Overlay --- */
.gallery-lock-icon {
  position: absolute;
  top: 0.7em;
  left: 0.7em;
  z-index: 2;
  width: 32px;
  height: 32px;
  pointer-events: none;
  background: none;
  /* Optional: add a subtle shadow for visibility */
  filter: drop-shadow(0 1px 4px rgba(44,44,44,0.12));
}

/* --- Home Info Blocks --- */
/* Styles for the info blocks on the home page, including layout and individual block styles */
.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  margin: 3rem auto 2rem auto;
  max-width: 700px;
}
.info-block h3 {
  margin-top: 0;
  color: var(--primary-headings);
  font-size: 1.3rem;
}
.info-block ul, .info-block ol {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
  color: #333;
  font-size: 1rem;
}
.info-block li {
  margin-bottom: 0.4rem;
}

/* --- CENTRALIZED COLOR & STYLE SYSTEM --- */
/* All brand colors and styles are defined here for consistency across all pages */
/* This allows for easy theme changes - just update values here and all pages reflect the change */
:root {
  /* --- Brand Color Palette --- */
  /* Primary Colors */
  --primary-accent: #CDA274;                  /* Gold - used for buttons, highlights, accents */
  --primary-accent-hover: #b8925e;            /* Darker gold for hover states */
  --primary-headings: #3B3B3B;                /* Dark gray - used for main headings */
  --primary-paragraphs: #1D1D1D;              /* Very dark gray - used for body text */
  --primary-details: #CDA274;                 /* Gold - used for detail accents */
  

  
  /* --- Neutral Colors --- */
  --neutral-white: #ffffff;                   /* Pure white */
  --neutral-light-gray: #f0f0f0;              /* Light gray - secondary button background */
  --neutral-medium-gray: #e5e7eb;             /* Medium gray - borders, dividers */
  --neutral-dark-gray: #2e2e2e;               /* Dark gray - text alternatives */
  
  /* --- Button Styling --- */
  --button-primary-bg: #CDA274;               /* Primary button background */
  --button-primary-text: #ffffff;             /* Primary button text */
  --button-primary-hover: #b8925e;            /* Primary button hover background */
  --button-primary-shadow: rgba(205, 162, 116, 0.25);  /* Primary button shadow */
  
  --button-secondary-bg: #ffffff;             /* Secondary button background */
  --button-secondary-text: #3B3B3B;           /* Secondary button text */
  --button-secondary-hover: #f0f0f0;          /* Secondary button hover background */
  --button-secondary-shadow: rgba(0, 0, 0, 0.15);     /* Secondary button shadow */
  
  /* --- Form & Input Styling --- */
  --form-heading-color: #CDA274;              /* Form section heading color */
  --form-border-color: #CDA274;               /* Form borders and dividers */
  --form-focus-color: #CDA274;                /* Form input focus color */
  --form-scrollbar-track: #e5e7eb;            /* Scrollbar track color */
  --form-scrollbar-thumb: #CDA274;            /* Scrollbar thumb color */
  
  /* --- Typography --- */
  --font-primary: 'Work Sans', sans-serif;    /* Primary font for body text */
  --font-heading: 'Playfair Display', serif;  /* Font for headings */
  
  /* --- Borders & Shadows --- */
  --border-radius: 4px;                       /* Standard border radius */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1); /* Small shadow */
  --shadow-md: 0 4px 12px rgba(205, 162, 116, 0.25);  /* Medium shadow (primary) */
  --shadow-lg: 0 6px 20px rgba(205, 162, 116, 0.4);   /* Large shadow (primary) */
}

/* --- Banner Section Styles --- */
/* Styles for the banner section, including image and overlay */
.banner-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0 !important;
  margin-bottom: 0;
  padding-top: 0 !important;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(61,28,92,0.10);
  padding-top: 0;
  border-top: 0;
  z-index: 1;
}
.banner-img {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  display: block;
  border-radius: 0;
  object-fit: cover;
  max-height: 340px;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
  top: 50%;
  transform: translateY(-50%);
  gap: 1rem;
  padding: 0 3vw 2vw 0;
  background: rgba(61,28,92,0.18);
  pointer-events: none;
}
.banner-btn {
  pointer-events: auto;
  border-radius: 30px;
  padding: 0.85rem 2.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255,183,71,0.10);
  margin: 0 0.5rem;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, border 0.2s;
  outline: none;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #ffb347 0%, #ff6f91 100%);
  color: #fff;
}

/* Learn More button: solid primary accent */
.banner-btn:first-child {
  background: var(--primary-accent);
  color: var(--neutral-white);
  border: 2px solid var(--primary-accent);
}

/* Book Now button: transparent with primary accent border and text */
.banner-btn:last-child {
  background: var(--primary-accent);
  color: var(--neutral-white);
  border: 2px solid var(--primary-accent);
  font-weight: bold;
}

.banner-btn:last-child:hover,
.banner-btn:last-child:focus {
  background: var(--primary-headings);
  color: var(--neutral-white);
  border-color: var(--primary-headings);
}

/* Center section headings */
section > h2, section h2 {
  text-align: center;
}
.banner-btn:hover, .banner-btn:focus {
  background: linear-gradient(90deg, #ff6f91 0%, #ffb347 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,111,145,0.15);
}
@media (max-width: 700px) {
  .banner-section {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    border-radius: 0;
  }
  .banner-img {
    border-radius: 0;
    max-height: 180px;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
  }
  .banner-overlay {
    gap: 1rem;
  }
  .banner-btn {
    padding: 0.65rem 1.2rem;
    font-size: 1rem;
  }
}

/* --- Global Styles --- */
/* Basic global styles for the body, header, footer, and main content */
html {
  height: 100%;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--primary-paragraphs);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  background: transparent;
  color: var(--neutral-white);
  min-height: 80px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: none;
  border-bottom: none;
  position: relative;
  z-index: 100;
  width: 100%;
  backdrop-filter: none;
  pointer-events: none;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  min-height: 80px;
  padding: 0 1.5rem;
  width: 100%;
  gap: 0;
  position: relative;
  pointer-events: auto;
}

nav {
  position: relative;
  flex: 0 1 auto;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.8rem;
  align-items: center;
  transition: right 0.3s ease;
}

nav:first-of-type ul {
  justify-content: flex-end;
}

nav:last-of-type ul {
  justify-content: flex-start;
}
.menu-toggle {
  position: relative;
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0 2rem 0 0;
  order: 2;
}

.menu-toggle .menu-text {
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  order: 1;
  flex-shrink: 0;
}

/* Hide menu text when menu is active */
.menu-toggle.active .menu-text {
  display: none;
}

/* Wrapper div for hamburger bars - creates vertical stack */
.menu-toggle > div {
  display: flex;
  flex-direction: column;
  gap: 3.4px;
  order: 2;
}

.menu-toggle .bar {
  display: block;
  width: 14px;
  height: 1px;
  background: #fff !important;
  border-radius: 0;
  transition: 0.3s;
  position: relative;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* Hamburger to X animation */
.menu-toggle.active div .bar:nth-child(1) {
  transform: translateY(4.7px) rotate(45deg);
  background: var(--primary-accent) !important;
}
.menu-toggle.active div .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active div .bar:nth-child(3) {
  transform: translateY(-4.7px) rotate(-45deg);
  background: var(--primary-accent) !important;
}

/* Responsive nav */
@media (max-width: 900px) {
  .header-container {
    padding: 0 1rem;
    justify-content: space-between;
    gap: 0;
  }
  nav:first-of-type {
    display: none;
  }
  nav:first-of-type ul {
    display: none;
  }
  .logo {
    height: 60px;
  }
  .logo-link {
    margin: 0;
    margin-right: auto;
    flex: 0 0 auto;
    min-width: 60px;
    padding-left: 1.5rem;
  }
  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    min-height: auto;
    font-size: 1rem;
    padding: 6rem 2rem 2rem 2rem;
    border-radius: 0;
    z-index: 999;
    margin-top: 0;
    backdrop-filter: none;
    gap: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }
  /* Hide desktop menu on mobile */
  nav .desktop-menu {
    display: none !important;
  }
  /* Show mobile menu on mobile */
  nav .mobile-menu {
    display: none;
  }
  nav .mobile-menu.active {
    display: flex !important;
    background: #fff;
  }
  nav ul.active {
    display: flex !important;
  }
  nav .mobile-menu li a {
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    font-weight: 50 !important;
    font-style: normal !important;
    padding: 0.3em 0 0.3em 2rem !important;
    line-height: 1em !important;
    color: var(--primary-headings) !important;
    text-shadow: none !important;
    border-bottom: none !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    transition: color 0.3s ease;
  }
  nav .mobile-menu li a:hover,
  nav .mobile-menu li a:focus {
    color: var(--primary-accent) !important;
  }
  nav ul li a {
    font-size: 1.2rem;
    padding: 1.2em 0;
    line-height: 1.5;
    color: var(--primary-headings);
    text-shadow: none;
    border-bottom: none;
    letter-spacing: 0.03em;
    font-weight: 500;
  }
  nav ul li a:hover,
  nav ul li a:focus {
    color: var(--primary-headings);
    background: none;
    border-bottom: none;
  }
  /* Hamburger button styling on mobile */
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 3.5rem !important;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 1001;
    padding: 1.5rem 1rem 1.5rem 1.5rem !important;
  }
  nav {
    position: relative;
  }
  nav:last-of-type {
    flex: 0;
  }
}

/* Hide hamburger on large screens */
@media (min-width: 901px) {
  .menu-toggle {
    display: none !important;
  }
  /* Show desktop menu on large screens */
  nav .desktop-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    z-index: auto;
  }
  /* Hide mobile menu on large screens */
  nav .mobile-menu {
    display: none !important;
  }
  nav ul {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
}
.packages {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  padding: 0;
  justify-content: center;
  margin: 2.5rem 0 2.5rem 0;
}
.package-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44,44,44,0.10);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  flex: 1 1 300px;
  max-width: 340px;
  min-width: 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid var(--primary-accent);
}
.package-box:hover, .package-box:focus {
  box-shadow: 0 6px 32px rgba(44,44,44,0.16);
  transform: translateY(-6px) scale(1.03);
  border-color: var(--primary-accent);
}
.package-title {
  color: var(--primary-accent);
  font-size: 1.35rem;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.5px;
  text-align: center;
}
.package-sub {
  color: var(--primary-details);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  text-align: center;
  font-weight: 500;
}
.package-features {
  margin: 0 !important;
  padding: 0 0 0 1.1rem !important;
  color: #333;
  font-size: 1rem;
  text-align: left;
  align-self: stretch;
  line-height: 0.9 !important;
}
.package-features li {
  margin-bottom: 0 !important;
  list-style: none;
  line-height: 1 !important;
}

.packages li {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 6px;
  list-style: none;
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 220px;
  box-sizing: border-box;
}
  .packages {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .package-box {
    max-width: 100%;
    min-width: 0;
  }
/* =====================================================================
   Snap Click Booth - Unified Form Styles (Contact & Book Now)
   ---------------------------------------------------------------------
   This section contains ALL styles for the Contact Us and Book Now forms.
   - Both forms use the same structure: all fields/buttons are direct children of the form (no wrappers)
   - All layout, width, and appearance are controlled here for maintainability
   - Responsive, accessible, and modern
   - Custom dropdown arrows for select fields
   - Only SV_Green is used for focus/hover (no gold)
   - No duplicate or scattered form styles elsewhere in this file
   ===================================================================== */

/* --- Form Container Layout ---
   Centers the form, sets max width, and vertical layout. */
form.book-form,
form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2rem;
  box-sizing: border-box;
}
form.book-form > *,
form.contact-form > * {
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  form.book-form,
  form.contact-form {
    max-width: 100vw;
    padding: 0 0.5rem;
  }
}

/* --- Field Base Styles ---
   Applies to all inputs, selects, textareas, and buttons. */
input, textarea, select, button {
  padding: 0.4rem;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: border 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  font-family: 'Montserrat', Arial, sans-serif; /* Match field font to labels */
}
label {
  padding: 0.1rem;
  margin-bottom: 0.1rem;
  font-size: 0.8rem;
  border-radius: 4px;
  border: none;
  box-sizing: border-box;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- Field Focus/Hover Styles ---
   Gold border and subtle shadow on focus/hover for all fields. */
input:focus, textarea:focus, select:focus {
  border-color: var(--primary-accent, #CDA274) !important;
  outline: none;
  box-shadow: 0 0 0 2px rgba(205,162,116,0.12);
}

/* --- Button Styles ---
   Green background, cream text, bold, with hover/focus effect. */
button {
  background: var(--primary-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}
button:hover, button:focus {
  background: #b8925e;
  color: #fff;
}

/* --- Booking Form: Time Row ---
   Horizontal layout for the time selects in the Book Now form. */
.booking-time-row {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: center;
  width: 100%;
}
.booking-time-row select,
.booking-time-row span {
  flex: 0 0 auto;
}
.booking-time-row select {
  min-width: 5.2em;
  width: 5.2em;
  max-width: 7em;
}

/* --- Custom Dropdown Arrow Styles ---
   Adds a single SVG arrow to all relevant select fields, removes browser default. */
#BF_event,
#BF_package,
#BF_startTimeHour,
#BF_startTimeMinute,
#BF_startTimeAMPM {
  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 8l5 5 5-5" stroke="%2300c48c" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-size: 1.2em;
  padding-right: 2.7em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* Remove default dropdown arrow for all browsers */
select::-ms-expand {
  display: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* --- Spinner Animation for Loading Indicator --- */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- Menu Toggle (Mobile Nav) --- */
.menu-toggle:hover,
.menu-toggle:focus {
  background: none;
  border-radius: 0;
  transition: background 0.2s;
}

/* --- Form Outer Box ---
   Visually centers and boxes the form, sets max width, padding, background, and shadow.
   Ensures the form inside can reach up to 700px wide on large screens.
*/
.form-outer-box {
  max-width: 700px;              /* Limit box to 700px on large screens */
  width: 100%;                   /* Allow box to shrink on smaller screens */
  margin: 2.5rem auto;           /* Center horizontally, add vertical spacing */
  background: #fff;              /* White background for card effect */
  border-radius: 16px;           /* Rounded corners */
  box-shadow: 0 2px 16px rgba(44,44,44,0.10); /* Subtle shadow for depth */
  padding: 2.2rem 2rem;          /* Space inside the box */
  box-sizing: border-box;        /* Includes padding in width calculation */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Responsive: reduce padding on small screens */
@media (max-width: 700px) {
  .form-outer-box {
    max-width: 97vw;
    padding: 1.2rem 0.9rem;
  }
}

/* Make all form field headings (labels) bold in the event setup form */
#eventForm label,
#eventForm .block.text-sm.font-medium.text-gray-700.mb-1 {
  font-weight: 600 !important;
}

/* ========== EVENT SETUP FORM OUTER BOX ========== */
.event-setup-form-outer-box {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 2.2rem 2rem;
  width: 100%;
}
@media (max-width: 950px) {
  .event-setup-form-outer-box {
    max-width: 97vw;
    padding: 1.2rem 1rem;
  }
}
/* =====================================================================
   END: Unified Form Styles (Contact & Book Now)
   ===================================================================== */

/* Add or update this CSS for the footer background */
footer {
  background: #ffffff;
  color: var(--primary-headings, #222);
  padding: 2rem 1.5rem;
  margin: 2.5rem 2.5rem 2.5rem 2.5rem;
  border-top: 1.2px solid var(--primary-accent, #CDA274);
  border-bottom: 1.2px solid var(--primary-accent, #CDA274);
  border-radius: 0px;
}

footer .footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

footer .social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--primary-accent, #CDA274);
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 1.5rem;
}

footer .social-links a:hover {
  transform: scale(1.15);
  color: var(--primary-accent-hover, #b8925e);
}

footer .copyright {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin: 0;
}

@media (max-width: 600px) {
  footer {
    padding: 1.5rem 1rem;
    margin: 0 1rem 1rem 1rem;
  }
  
  footer .social-links {
    gap: 1.5rem;
  }
  
  footer .social-links a {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  
  footer .copyright {
    font-size: 0.85rem;
  }
}

/* Ensure footer sits at the bottom of the viewport if content is short */
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content should grow to fill space above footer */
main {
  flex: 1 0 auto;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix for gallery password modal being hidden under overlay */
.modal-overlay {
  position: fixed !important;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,44,44,0.45);
  z-index: 10001 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- iOS/iPadOS Select Field Normalization --- */
/* Remove iOS default blue text and background for select fields in forms */
input, select, textarea {
  color: #222 !important;
  background-color: #fff !important;
  -webkit-text-fill-color: #222 !important; /* iOS Safari fix */
  box-shadow: none !important;
}
select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
  background: #fff !important;
  color: #222 !important;
  border: 1px solid #ccc;
}
select:focus {
  border-color: var(--primary-accent, #CDA274) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(205,162,116,0.12) !important;
}

/* Remove iOS autofill blue background */
input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #222 !important;
  color: #222 !important;
}

/* iOS Safari: Force date input to match other field widths */
input[type="date"] {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* iOS Safari: Remove extra padding and border for date fields */
input[type="date"]::-webkit-input-placeholder { color: #888; }
input[type="date"]::-webkit-datetime-edit { padding: 0 !important; }
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
}

/* iOS Safari: Match date input height to other fields */
input[type="date"] {
  height: 2.4em !important; /* Match the height of other input fields */
  line-height: 1.2 !important;
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
  /* The padding matches the .4rem used on other fields */
}
input[type="date"]::-webkit-datetime-edit {
  line-height: 1.2 !important;
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

/* iOS Safari: Remove extra right padding from date input to match other fields */
input[type="date"]::-webkit-datetime-edit {
  padding-right: 0 !important;
}
input[type="date"] {
  padding-right: 0.4rem !important; /* Match other fields' right padding */
}

/* Add this CSS to style the All-Inclusive Packages section with a background image */
.sv-section.bg-yellow {
  background: url('Images/BGimage2.jpeg') center center/cover no-repeat;
  position: relative;
  /* Optional: add an overlay for better text readability */
}
.sv-section.bg-yellow > .sv-section-inner {
  position: relative;
  z-index: 1;
}
/* Optional: overlay for readability */
.sv-section.bg-yellow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* adjust opacity as needed */
  z-index: 0;
}

/* Add this to your style.css */

/* Add padding to the text column in two-column blocks */
.sv-section-inner > div:not(:first-child) {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .sv-section-inner > div:not(:first-child) {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}
@media (max-width: 600px) {
  .sv-section-inner > div:not(:first-child) {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* --- Custom Ring Styling for Card Selections --- */
/* Override Tailwind's default blue ring with gold theme for template, backdrop, and package cards */
.ring-2 {
  --tw-ring-color: var(--primary-accent) !important;
  --tw-ring-offset-width: 0 !important;
  --tw-ring-offset-color: #fff !important;
  box-shadow: 0 0 0 2px var(--primary-accent) !important;
}

