#site-header {
  min-height: var(--header-height);
}

#site-footer {
  min-height: 400px;
  /* Approximate height based on content */
}


:root {
  /* Color Palette - Burgundy & Gold */
  --primary: #800020;
  /* Burgundy */
  --primary-dark: #4a0012;
  /* Dark Burgundy */
  --accent-gold: #D4AF37;
  /* Gold */
  --bg-dark: #0A0A0A;
  /* Near Black */
  --bg-surface: #141414;
  /* Dark Surface */
  --text-main: #FFFFFF;
  /* White */
  --text-muted: #A0A0A0;
  /* Muted Gray */
  --glass-border: rgba(212, 175, 55, 0.2);

  /* Spacing */
  --container-width: 1600px;
  --header-height: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gold {
  color: var(--accent-gold);
}

.bg-gold {
  background-color: var(--accent-gold);
}

.text-burgundy {
  color: var(--primary);
}

.bg-burgundy {
  background-color: var(--primary);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.2em;
}

.tracking-widest {
  letter-spacing: 0.4em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
  color: var(--text-main);
  font-size: 0.8rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: black;
}

.btn-gold:hover {
  background-color: white;
  color: black;
}

.btn-outline {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: black;
}

/* Booking Widget Section */
.booking-widget-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-widget-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-widget-section .widget-container {
  display: flex;
  justify-content: center;
}

.booking-widget-section .widget-container iframe {
  max-height: 130px;
}

@media (max-width: 768px) {
  .booking-widget-section .widget-container iframe {
    max-height: none;
  }
}

/* Hero Widget (inside hero section, below subtitle) */
.hero-widget {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-widget .widget-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ─── Booking Lightbox ─── */
.booking-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.booking-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.booking-lightbox-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #1a1a1a 0%, #111 50%, #0d0d0d 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2.5rem 3rem 3rem;
  max-width: 420px;
  width: 90vw;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.booking-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.booking-lightbox-close:hover {
  color: var(--accent-gold);
  transform: scale(1.15);
}

.booking-lightbox-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-lightbox-tagline {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.booking-lightbox-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin: 0;
}

.booking-lightbox-widget {
  display: flex;
  justify-content: center;
}

/* Mobile Book Button in mobile menu */
.mobile-book-btn {
  margin-top: 2rem;
  width: 100%;
  max-width: 280px;
  text-align: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Lightbox mobile adjustments */
@media (max-width: 768px) {
  .booking-lightbox {
    align-items: flex-end;
    padding: 0;
  }

  .booking-lightbox-content {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 2rem 1.5rem 2.5rem;
    transform: translateY(100%);
    max-height: 85vh;
    overflow-y: auto;
  }

  .booking-lightbox.active .booking-lightbox-content {
    transform: translateY(0);
  }

  .booking-lightbox-widget iframe {
    max-height: none;
  }
}


/* Section Styling */
section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: rgba(30, 30, 30, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Text Utilities */
.text-white {
  color: #fff;
}

.text-muted {
  color: var(--text-muted);
}

.text-sm {
  font-size: 0.85rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.15rem;
}

.text-xl {
  font-size: 1.25rem;
}

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

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.d-md-flex {
  display: none;
}

@media (min-width: 769px) {
  .d-md-flex {
    display: inline-flex;
  }
}

/* Footer Styles */
.site-footer {
  background-color: black;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ══════════════════════════════════════════════════════════
   Newsletter Section
   Global "Get Special Offers" component
   ══════════════════════════════════════════════════════════ */
.newsletter-section {
  position: relative;
  padding: 6rem 0;
  margin-top: auto;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Subtle background glow */
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.newsletter-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.newsletter-header {
  margin-bottom: 3rem;
}

.newsletter-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.newsletter-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   Constant Contact Form Overrides
   Using #newsletter-form ID for maximum specificity
   ══════════════════════════════════════════════════════════ */

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

/* Reset ALL CC containers */
#newsletter-form,
#newsletter-form .ctct-inline-form,
#newsletter-form .ctct-form-container,
#newsletter-form .ctct-form-embed,
#newsletter-form .ctct-form-defaults {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

/* Force form to block layout */
#newsletter-form form,
#newsletter-form .ctct-form-custom {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

/* Hide all unwanted CC elements */
#newsletter-form .ctct-form-header,
#newsletter-form .ctct-form-text,
#newsletter-form .ctct-form-footer,
#newsletter-form #gdpr_text,
#newsletter-form .ctct-gdpr-text,
#newsletter-form .ctct-form-disclaimer,
#newsletter-form .ctct-form-success,
#newsletter-form .ctct-form-error,
#newsletter-form .ctct-form-errorMessage,
#newsletter-form form>p {
  display: none !important;
}

/* Custom Success Message */
.newsletter-success-message {
  text-align: center;
  padding: 2rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  margin-top: 1rem;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-success-message .success-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.newsletter-success-message .success-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Privacy Disclaimer */
.newsletter-disclaimer {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* Hide name fields — email only */
#newsletter-form .ctct-form-field:has(input[name="first_name"]),
#newsletter-form .ctct-form-field:has(input[name="last_name"]) {
  display: none !important;
}

/* Hide labels */
#newsletter-form .ctct-form-label,
#newsletter-form .ctct-form-required,
#newsletter-form label {
  display: none !important;
}

/* Email field wrapper — MUST be full width */
#newsletter-form .ctct-form-field {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 0.75rem 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Email input — dark/gold theme */
#newsletter-form input[type="email"],
#newsletter-form input[type="text"],
#newsletter-form .ctct-form-element {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
  height: auto !important;
}

#newsletter-form input:focus {
  border-color: var(--accent-gold) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1) !important;
}

#newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
  font-weight: 300 !important;
}

/* Submit button — gold accent */
#newsletter-form button,
#newsletter-form .ctct-form-button {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 1rem 2.5rem !important;
  border-radius: 0 !important;
  border: none !important;
  background: var(--accent-gold) !important;
  color: #000000 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  height: auto !important;
  line-height: 1.15 !important;
}

#newsletter-form button:hover {
  background: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Desktop: side-by-side layout */
@media (min-width: 640px) {

  #newsletter-form form,
  #newsletter-form .ctct-form-custom {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: nowrap !important;
  }

  #newsletter-form .ctct-form-field {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  #newsletter-form button,
  #newsletter-form .ctct-form-button {
    width: auto !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 4rem 0;
  }
}