/* ==========================================================================
   VARIABLES & RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fleur+De+Leah&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Diphylleia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');

:root {
    /* LIGHT MODE (Default) */
    --primary-color: #4A0E0E;
    --secondary-color: #FDFAF5; 
    --accent-color: #8C734B;
    --text-color: #333333;
    --faq-text-color: #FDFAF5;
    --content-bg: rgba(253, 250, 245, 0.9);
    --section-bg: #f7f3ed;
    --section-border: #663333;
    --sage: #7d8c75;
    --link-color: #4A0E0E;
    --white: #ffffff;
    --input-bg: #ffffff;
    --menu-bg: rgba(255, 255, 250, 0.95);
    --sumHover: rgba(175, 160, 90, 0.25);
    --sucsess-color: rgba(175, 160, 90, 0.25);
    --error-color: rgba(255, 0, 25, 0.9);
}

/* DARK MODE OVERRIDES */
body.dark-mode {
    --primary-color: #ffcccc; 
    --secondary-color: #121212; 
    --accent-color: #d4af37; 
    --faq-text-color: #e0e0e0;
    --text-color: #e0e0e0;
    --content-bg: rgba(20, 20, 20, 0.95);
    --section-bg: #1e1e1e;
    --section-border: #444444;
    --sage: #556b4f; 
    --link-color: #d4af37;
    --white: #2a2a2a; 
    --input-bg: #333333;
    --menu-bg: rgba(15, 15, 15, 0.98);
    --sumHover: rgba(255, 250, 200, 0.25);
    --error-color: rgba(255, 0, 25, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
	width: 100%;
	overflow-x: hidden;
	scroll-padding-top: 171px; /* Offset for all anchor links */
	scroll-behavior: smooth;   /* Optional: adds a nice slide effect */
}

body {
    font-family: "Diphylleia", sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-width: 340px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; height: auto; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1 { font-family: "MonteCarlo", cursive; font-weight: 500; font-size: 3.5rem; line-height: 1.1; }
h2 { font-family: "MonteCarlo", cursive; font-weight: 400; font-size: 2.5rem; line-height: .8; color: var(--link-color); text-align: center; }
h3 { font-family: "Diphylleia", cursive; font-weight: 400; font-size: 1.8rem; line-height: .9; color: var(--accent-color); }
h4 { color: var(--link-color); }

.fancyCursive {
  font-family: "Fleur De Leah", cursive;
  font-weight: 500;
  font-style: normal;
  font-size: 3.5rem; 
  line-height: 0.8rem;
  position: relative; 
  top: 0.2em;
}

.fancyCursiveSml {
  font-family: "Fleur De Leah", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem; 
  line-height: 0.8rem;
  position: relative; 
  top: 0.2em;
}

a { text-decoration: none; color: var(--link-color); transition: 0.3s; }
a:hover { color: var(--accent-color); }

.lead { font-size: 1.65rem; max-width: 800px; margin: 0 auto 60px; }

.no-list { 
	list-style-image: url('../images/wine_bullet.gif');
	list-style-type: square;
	font-size: 0.9rem;
	padding-left: 20px;
}

.sprite-list {
  list-style: none;
  padding: 0px;
}

.sprite-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding-left: 1em;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  fill: var(--link-color); /* Specific color for all icons in this list */
}

.icon-list {
  list-style: none; /* Remove default dots */
  padding: 0;
}

.icon-list li {
  display: flex; /* Aligns icon and text horizontally */
  align-items: flex-start; /* Keeps icon at the top of multi-line text */
  gap: 12px; /* Consistent spacing between icon and text */
  margin-bottom: 10px;
}

.list-icon {
  width: 1.2em; /* Scales perfectly with font-size */
  height: 1.2em;
  flex-shrink: 0; /* Prevents icon from squishing */
  color: var(--link-color); /* Change icon color directly in CSS */
  margin-top: 0.1em; /* Fine-tune vertical alignment with text baseline */
}

.svgSprites {
    display: none; /* Hide the sprite container */
}

/* ==========================================================================
   THEME TOGGLE
   ========================================================================== */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 25px;
    right: 20px; 
    z-index: 1012; 
    width: 30px;
    height: 30px;
    color: white; 
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.sun-icon { opacity: 1; transform: rotate(0) scale(1); }
.moon-icon { opacity: 0; transform: rotate(90deg) scale(0); }

body.dark-mode .sun-icon { opacity: 0; transform: rotate(-90deg) scale(0); }
body.dark-mode .moon-icon { opacity: 1; transform: rotate(0) scale(1); }


/* ==========================================================================
   VIDEO BACKGROUND
   ========================================================================== */
#background-video {
    position: fixed;
    right: 0; bottom: 0;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    z-index: -1;
    object-fit: cover;
}

/* ==========================================================================
   STICKY HEADER WRAPPER
   ========================================================================== */
.fixed-header-wrapper {
    position: fixed; /* Ensures it stays on top of viewport */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    width: 100%;
    background-color: black;
    position: relative;
    z-index: 1000;
    padding-bottom: 0px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.5);
}

.deco-bar-top img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%; 
	display: block; 
	height: 5px; 
	min-height: 5px; 
	z-index: 2111;
}

.deco-bar-bottom img {
	position: absolute;
	top: 85px;
	left: 0;
	width: 100%; 
	display: block; 
	height: 5px; 
	min-height: 5px; 
	z-index: 2111;
	border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    flex-wrap: wrap;
}

.header-left { flex: 0 0 100px; }
.header-left img {position: relative; top: 7px; left: -10px; width: 100px; height: auto; border-radius: 4px; }

.header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-link img { width: 100%; max-width: 443px; height: auto; }


/* Navigation Images Logic */
.nav-image-container {
    display: flex;
    gap: 0px;
    margin-top: 0px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-img {
    height: 11px;
    margin-top: 5px;
    padding-right: 1.5rem;
    width: auto;        
    flex-shrink: 0;     
    max-width: none;    
    display: block;
}

.nav-image-container span { display: none; } 


/* ==========================================================================
   SUB NAVIGATION (Venue Links)
   ========================================================================== */
.venue_only-links {
    background: var(--content-bg);
    border-bottom: 2px solid rgba(230, 195, 40, 1);
    width: 100%;
    z-index: 999;
    box-shadow: 0 8px 12px rgba(0,0,0,0.5);
    transition: background 0.3s;
}

.scroll-wrapper {
    display: flex;
    justify-content: center;
    padding: 1rem 0 1rem 0;
    gap: 1rem;
    flex-wrap: nowrap;
}

.venue_only-links a {
    font-family: "El Messiri", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    white-space: nowrap;
    color: var(--text-color);
}
.venue_only-links a:hover { color: var(--accent-color); }


/* ==========================================================================
   HAMBURGER BUTTON ANIMATIONS
   ========================================================================== */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
}

.bar {
    width: 25px; 
    height: 3px; 
    background-color: #FFFFFF;
    margin: 5px 0; 
    transition: all 0.3s ease-in-out; 
}

/* Transform the Burger into an X when active */
.hamburger.is-active .bar:nth-child(2) { opacity: 0; }
.hamburger.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */
.content {
    width: 95%;
    max-width: 1200px;
    background: var(--content-bg);
    border: 2px #FFCC66 solid;
    border-radius: 4px;
    padding: 40px 10px;
    margin: 40px auto 70px;
    text-align: center;
    box-shadow: 2px 4px 16px rgba(0,0,0,0.8);
    color: var(--text-color);
    transition: background-color 0.3s;
}

.hero-text { margin-bottom: 40px; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { margin-bottom: 20px; }
.sub-section {
    background-color: var(--section-bg);
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--section-border);
    transition: background-color 0.3s; 
}
.section-title { 
	font-size: 2.85rem; 
	margin-bottom: 0px; 
	color: var(--link-color);
	text-shadow: 0 1px 2px rgba(0,0,0,0.75); 
}

.divider {
    width: 50%; height: 2px;
    background: var(--accent-color);
    margin: 0.05rem auto 2em auto;
}

/* ==========================================================================
   GRID SYSTEM
   ========================================================================== */
.content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
    align-items: flex-start;
}
.content-grid.reverse { flex-direction: row-reverse; }

.image-box, .text-box { flex: 1; min-width: 300px; }
.image-box img { 
    box-shadow: 3px 3px 5px rgba(0,0,0,0.7); 
    border-radius: 4px; 
}
.text-box h3 { color: var(--accent-color); text-align: left;}
.text-box p { margin-bottom: 1.5em; }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.feature-item {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--section-border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-group { margin-bottom: 1rem; }

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

label { text-align: left; display: block; margin-bottom: 5px; font-weight: bold; }

input[type="text"],
input[type="email"],
input[type="tel"],
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--section-border);
    border-radius: 4px;
    background: var(--input-bg);
    color: var(--text-color);
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
}

input:required { border-left: 4px solid var(--link-color); }

textarea { resize: vertical; min-height: 100px; }

.contact-container {
    /* background: var(--white); */
    padding: 0.5em;
    max-width: 100%;
    color: var(--text-color);
}

.frm_button {
	background: var(--link-color);
	color: var(--secondary-color);
	padding: 0.5rem;
	width: 100%;
	max-width: 17em;
	border: 2px #000000 solid;
	border-radius: 16px;
	/* text-transform: uppercase; */
	cursor: pointer;
	font-family: "El Messiri", sans-serif; font-weight: 600; font-size: 1.1em;
	text-shadow: 0px 0px 1px rgba(0,0,0,1);
	white-space: nowrap;
}

.frm_button:hover { background-color: var(--accent-color); }

.msgBox {
    padding: 15px;
    border: 1px solid var(--section-border);
    border-radius: 4px;
    background: var(--input-bg);
}

.sub_error { font-family: "Diphylleia", cursive; font-weight: 400; font-size: 1.4rem; color: var(--error-color); padding: 15px;
    border: 1px solid var(--section-border);
    border-radius: 4px;
    background: var(--input-bg);
    text-align: left;
 }
.sub_success { font-family: "Diphylleia", cursive; font-weight: 400; font-size: 1.4rem; color: var(--link-color); padding: 15px;
    border: 1px solid var(--section-border);
    border-radius: 4px;
    background: var(--input-bg);
    text-align: left;
 }

.error-message { color: var(--error-color); font-size: 1.4em; margin-top: 5px; }
.success-message { color: var(--link-color); font-size: 1.4em; margin-top: 5px; }

.grecaptcha-badge { visibility: hidden !important; } /* Hide the reCAPTCHA badge */


/* ==========================================================================
   SUBMIT SPINNER
   ========================================================================== */
.loading-spinner {
	display: none; /* Hidden by default */
	border: 4px solid #f3f3f3; /* Light grey */
	border-top: 4px solid #dbbc34; /* Golden */
	border-radius: 50%;
	width: 20px;
	height: 20px;
	animation: spin 2s linear infinite;
	margin-left: 10px;
	vertical-align: middle;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-category {
    background: var(--section-border); 
    padding: 10px 15px;
    margin-top: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
    text-align: left;
    color: var(--faq-text-color);
}

details {
    overflow: hidden; /* Important for height animation */
    text-align: left;
    padding-left: 2em; 
    margin-bottom: 1px;
    transition: height 0.3s ease-out; /* Smooth Slide */
    border-bottom: 1px solid var(--section-border);
    background: var(--white);
    /* height: auto; -> Managed by JS now */
}

summary {
    padding: 18px 50px 18px 15px;
    margin-bottom: 3px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.3s ease;
    color: var(--text-color);
    background: var(--white);
}

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

/* Horizontal Bar (Always visible) */
summary::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 14px;
    height: 2px;
    background-color: var(--accent-color);
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

/* Vertical Bar (Rotates to form minus or plus) */
summary::after {
    content: '';
    position: absolute;
    right: 26px;
    top: 50%;
    width: 2px;
    height: 14px;
    background-color: var(--accent-color);
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

/* ANIMATION STATE: OPEN */
/* We use the .is-open class controlled by JS to sync icon with animation */
details.is-open summary {
    color: var(--accent-color);
}

details.is-open summary::after {
    transform: translateY(-50%) rotate(90deg);
    opacity: 0; /* Hides vertical bar, leaving horizontal (Minus sign) */
}

details.is-open summary::before {
    transform: translateY(-50%) rotate(180deg);
}

.FAQ_content {
    padding: 0 15px 20px 15px;
    color: var(--text-color);
    font-size: 0.95rem;
}

summary:hover {
    background: var(--sumHover);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    width: 100%;
    padding: 0px 0px 0px 0px;
    color: #CCAA00;
    height: 1.5rem;
    text-align: center;
    position: fixed;
    bottom: 0px;
    left: 0px;
    background-color: black;
    font-size: 0.4rem;
    margin: 0px; 
    z-index: 3; 
    max-height: 1.5rem; 
    min-height: 1.5rem;
    font-family: "Verdana";
}

.footer_imgTop { padding: 0px; margin: 0px; position: fixed; bottom: 1.5rem; left: 0px; max-height: 5px; min-height: 5px; }
.footer_imgBot { padding: 0px; margin: 0px; position: fixed; bottom: 0px; left: 0px; max-height: 5px; min-height: 5px; }
.footer a { font-size: 0.5rem; color: #FFCC33; font-weight: 400; }

.footer p { line-height: 1.1; margin: 0.1rem; }

/* ==========================================================================
   BADGE
   ========================================================================== */
  .badge-container {
    position: fixed;
    bottom: 1.5rem;
    right: 0;
    width: 180px;
    height: 180px;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
  }

  .badge-container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%; 
    height: 150%;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s ease-in-out;
    filter: drop-shadow(-2px 4px 4px rgba(0, 0, 0, 0.8));
  }

  .badge-container svg:hover {
    transform: scale(1.1);
  }

  @media (max-width: 600px) {
    .badge-container {
      width: 100px;
      height: 100px;
    }
  }

  /* Added style for the text to wrap it slightly better within the shape's bounds */
  .badge-text {
      text-anchor: middle;
	font-family: "Diphylleia", cursive; 
	font-weight: 700; font-size: 1.8rem;
	letter-spacing: 0.15em; 
	fill: #FFFFFF;
  }

/* ==========================================================================
   MAP
   ========================================================================== */
.map-responsive {
  overflow: hidden;
  padding-bottom: 75%; /* 56.25%; This creates a 16:9 aspect ratio, 75%; makes it square */
  position: relative;
  height: 0;
    border: 1px solid var(--section-border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
    border: 1px solid var(--section-border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}


/* ==========================================================================
   GALLERY CONTAINER
   ========================================================================== */
.vineyard-gallery {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: inherit; /* Inherits your site's font */
}

/* .gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.gallery-header p {
color: #666;
  font-style: italic;
} */

/* --- MODERN GRID LAYOUT --- */
.gallery-grid {
  display: grid;
  /* Auto-fit columns: responsive without media queries */
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3; /* Enforces uniform shape */
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the box without stretching */
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05); /* Subtle zoom effect */
}

/* --- HOVER OVERLAY --- */
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay span {
  /* border: 1px solid var(--section-border); */
  color: rgb(255, 212, 95);
  border: 3px solid rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(33,33,33,0.75); /* var(--white); */
}

/* --- LIGHTBOX (MODAL) STYLES --- */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  -webkit-backdrop-filter: blur(5px); /* Modern blur effect */
  backdrop-filter: blur(5px); /* Modern blur effect */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  border-radius: 4px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #FFCC00;
}

#caption {
  margin-top: 15px;
  color: #CCCCCC;
  font-size: 1.1rem;
}

/* --- DARK MODE INTEGRATION 
body.dark-mode .gallery-header h2 {
  color: #f0f0f0;
}
body.dark-mode .gallery-header p {
  color: #AAAAAA;
} */
body.dark-mode .gallery-item {
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}


/* ==========================================================================
   MOBILE MEDIA QUERIES (Max Width 1023px, Standard nav works fine at 1024px 
   ========================================================================== */
@media screen and (max-width: 1023px) {
    .header-inner { 
        justify-content: flex-start;
        padding: 10px;
        position: relative;
    }

    .header-left { 
        order: 1; 
        margin-right: auto;
    }

    .hamburger { 
        display: block; 
        position: absolute;
        top: 15px; 
        right: 15px;
    }

    .theme-toggle {
        right: 70px;
    }

    .header-center { 
        order: 3; 
        width: 100%;
        margin-top: 10px;
    }

    .logo-link img { max-width: 250px; margin: 0 auto; display: block; }

    @media screen and (max-width: 768px) {
        .logo-link img { display: none; }
    }

    /* --- MOBILE MENU ANIMATION LOGIC --- */
    .nav-image-container {
        display: flex;
        flex-direction: column;
        
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 80vh; 
        overflow-y: auto;
        background: var(--menu-bg);
        box-shadow: 0 5px 10px rgba(0,0,0,0.5);
        z-index: 1001;
        
        /* Hiding Logic */
        opacity: 0;
        visibility: hidden;
        transform: translateZ(-8px);
        
        /* Smooth Transition */
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        pointer-events: none;
    }

    /* Active State (Shown) */
    .nav-image-container.active { 
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-image-container a {
        padding: 15px 0px 15px 0px;
        border-bottom: 1px solid var(--section-border);
        display: block;
        color: var(--text-color);
        font-size: 1.3rem;
        text-align: center;
        width: 100%;
    }
    
    .nav-image-container .nav-img { display: none; }
    .nav-image-container span { display: inline-block; }

    /* Content Stack */
    .content-grid, .content-grid.reverse {
        flex-direction: column;
	columns: 2;
        gap: 60px;
    }
    
    .image-box, .text-box { width: 100%; min-width: 0; }
    
    .venue_only-links { 
        overflow-x: auto; 
        white-space: nowrap; 
        -webkit-overflow-scrolling: touch;
    }
    
    .scroll-wrapper { 
        justify-content: flex-start; 
        padding: 15px 20px; 
    }

    .form-row { flex-direction: column; gap: 25px; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}
