/* =============================
   EAST CREEK LANDING
   Elegant Banquet Hall Design
   ============================= */

:root {
  --navy: #1e3a5f;
  --navy-dark: #0f2942;
  --gold: #d4af37;
  --gold-light: #e8c96f;
  --cream: #faf8f3;
  --text-dark: #2c3e50;
  --text-muted: #6b7280;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

/* =============================
   NAVIGATION (Base)
   ============================= */

.site-header {
  position: relative;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo-img {
  height: clamp(60px, 12vw, 120px);
  width: auto;
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  order: 3;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* =============================
   HERO SECTION (Index Page)
   ============================= */

.hero {
  position: relative;
  min-height: clamp(500px, 85vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/main_entrance.jpg') center/cover;
  color: white;
  text-align: center;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.35), rgba(30, 58, 95, 0.45)),
    radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.25), transparent 70%);
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.6;
  padding: 0 clamp(0.5rem, 2vw, 0);
}

.hero-ctas {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-features {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.feature-chip {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: clamp(0.5rem, 1.5vw, 0.6rem) clamp(0.8rem, 2vw, 1.2rem);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 500;
}

.feature-icon {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/* =============================
   GOOGLE REVIEWS SECTION
   ============================= */

.reviews-section {
  background: white;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem);
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

#shapo-widget-655d023716b0759dda5b {
  width: 100%;
  min-height: 200px;
}

/* =============================
   PAGE HERO (Non-Index Pages)
   ============================= */

.page-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(rgba(30, 58, 95, 0.75), rgba(15, 41, 66, 0.85)),
              url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=1600&h=600&fit=crop') center/cover;
  color: white;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2), transparent 70%);
  animation: fadeIn 1.2s ease-out;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.page-hero-content .eyebrow {
  color: var(--gold-light);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================
   BUTTONS
   ============================= */

.btn {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  font-size: clamp(1rem, 2vw, 1.1rem);
  padding: clamp(0.85rem, 2.2vw, 1.1rem) clamp(1.5rem, 3.5vw, 2.5rem);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* =============================
   SECTIONS
   ============================= */

.section {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.section-header p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* =============================
   OVERVIEW SECTION
   ============================= */

.overview-section {
  background: var(--cream);
  position: relative;
}

.overview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(30, 58, 95, 0.01) 10px,
      rgba(30, 58, 95, 0.01) 20px
    );
  pointer-events: none;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.overview-text p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.overview-image img {
  width: 100%;
  height: clamp(250px, 50vw, 500px);
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* =============================
   SPACES SECTION
   ============================= */

.spaces-section {
  background: white;
}

.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.space-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.space-image {
  position: relative;
  height: clamp(200px, 35vw, 280px);
  overflow: hidden;
}

.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.space-card:hover .space-image img {
  transform: scale(1.05);
}

.space-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.space-content {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.space-content h3 {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.space-capacity {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.space-content > p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--text-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.space-features {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  list-style: none;
  margin-bottom: 1.5rem;
}

.space-features li {
  padding: clamp(0.3rem, 1vw, 0.5rem) 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  color: var(--text-dark);
}

.space-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* =============================
   PERFECT FOR SECTION
   ============================= */

.perfect-for-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
}

.perfect-for-section .section-header h2 {
  color: white;
}

.perfect-for-section .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.event-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.event-type {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.event-type:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.event-icon {
  font-size: clamp(2.5rem, 5vw, 3rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.event-type:hover .event-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.event-type h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
  font-weight: 400;
}

.event-type p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
}

/* =============================
   PROMINENT BINGO CTA
   ============================= */

.bingo-cta-prominent {
  background: linear-gradient(135deg, #8b0000 0%, #c41e3a 50%, #dc143c 100%);
  color: white;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5rem) clamp(1rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}

.bingo-cta-prominent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15), transparent 70%);
  animation: fadeIn 1.2s ease-out;
}

.bingo-content-prominent {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bingo-icon {
  font-size: clamp(3.5rem, 8vw, 5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.bingo-content-prominent h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bingo-details {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.bingo-jackpot {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.bingo-contact {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.bingo-contact a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bingo-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* =============================
   FLOATING BOTTOM BAR
   ============================= */

.floating-bottom-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 1rem;
  z-index: 999;
  transition: bottom 0.3s ease;
  border-top: 2px solid var(--gold);
}

.floating-bottom-bar.visible {
  bottom: 0;
}

.floating-bar-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.floating-bar-btn:first-child {
  background: var(--gold);
  color: var(--navy-dark);
}

.floating-bar-btn:first-child:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.floating-bar-btn:last-child:hover {
  background: rgba(30, 58, 95, 0.1);
}

/* Hide on desktop */
@media (min-width: 969px) {
  .floating-bottom-bar {
    display: none;
  }
}

/* Tighter on small mobile */
@media (max-width: 400px) {
  .floating-bar-btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    gap: 0.35rem;
  }

  .floating-bar-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* =============================
   SCROLL TO TOP BUTTON
   ============================= */

.scroll-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 968px) {
  .scroll-to-top {
    bottom: 90px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

/* =============================
   REVIEWS SECTION ANIMATION
   ============================= */

.reviews-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reviews-section.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   CTA SECTION
   ============================= */

.cta-section {
  background: var(--cream);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(30, 58, 95, 0.01) 10px,
      rgba(30, 58, 95, 0.01) 20px
    );
  pointer-events: none;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 400;
}

.cta-box p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================
   FOOTER
   ============================= */

.site-footer {
  background: var(--navy-dark);
  color: white;
  padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-col h4 {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--gold-light);
  font-weight: 400;
}

.footer-col p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-address {
  line-height: 1.6;
}

.footer-spacer {
  margin-top: 1.5rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-col a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.created-by a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.created-by a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* =============================
   RESPONSIVE BREAKPOINTS
   ============================= */

@media (max-width: 968px) {
  .nav {
    position: relative;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 100;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 2rem;
    display: block;
    text-align: center;
  }

  .overview-grid,
  .spaces-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
  }

  .event-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .event-types,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================
   HEADER SPECIFIC STYLES (Final)
   ============================= */

.site-header {
  position: relative;
  top: 0;
  z-index: 100;
  background: white;
}

/* Reduced vertical space */
.header-top {
  background: linear-gradient(180deg, #f9f6ed 0%, #f5efd8 80%, rgba(255,255,255,0.8) 100%);
  padding: 0.35rem 0;
  padding-bottom: 0.6rem;
}


.header-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
  padding-left: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--gold);
}

/* Pull logo down less, shrink logo */
.header-logo {
  position: relative;
  text-align: center;
  margin-top: -22px;
  z-index: 10;
}


.logo-img {
  height: 90px;
  width: auto;
  background: white;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  border: 3px solid #b8922e;
}


/* Reduce nav bar padding */
.main-nav {
  background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, white 20%);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.65rem 2rem;
}


.nav-links {
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
}


.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

@media (max-width: 968px) {
  .header-top-inner {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1rem;
    gap: 1.2rem;
  }

  .header-contact {
    padding-left: 0;
  }

  .phone-link {
    font-size: 0.95rem;
  }

  .header-logo {
    margin-top: -28px;
  }

  .logo-img {
    height: 92px;
    padding: 0.55rem 1.1rem;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.1rem;
  }
}

/* =============================
   IMPROVED MOBILE SPACING - BINGO
   ============================= */

@media (max-width: 600px) {
  .bingo-cta-prominent {
    padding: clamp(2.5rem, 6vw, 3rem) clamp(1rem, 3vw, 1.5rem);
  }

  .bingo-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  }

  .bingo-content-prominent h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  }

  .bingo-details {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  }

  .bingo-jackpot {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: clamp(1.5rem, 2vw, 1.75rem);
  }

  .bingo-contact {
    font-size: clamp(0.85rem, 1.6vw, 0.9rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}
/* Mobile: make event pills readable */
@media (max-width: 480px) {
  .fc .fc-daygrid-event {
    width: 100%;
    margin: 2px 0 !important;
    border-radius: 8px;
  }

  .fc .fc-daygrid-event .fc-event-title {
    font-size: 12px !important;
    white-space: normal !important;  /* allow wrapping if needed */
    overflow: visible !important;
  }

  /* keep the text from being clipped */
  .fc .fc-daygrid-event-harness {
    overflow: visible !important;
  }
}
