/* ====================================
   RESET
==================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ====================================
   TYPOGRAPHY
==================================== */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

p {
  font-weight: 300;
  font-size: 1.05rem;
  color: #444;
}

/* ====================================
   LAYOUT
==================================== */

.section {
  padding: 90px 0;
}

.section-light {
  background: #f7f6f3;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* ====================================
   HEADER
==================================== */

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s ease;
}

.main-nav a:hover {
  color: #C6A75E;
}

.header-cta .btn-primary.small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0B1220;
  padding: 20px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
}

.mobile-menu.active {
  display: flex;
}
/* Header CTA layout */
.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Call Now styling */
.call-now {
  font-size: 0.9rem;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.call-now:hover {
  color: #C6A75E;
}

/* Hide call on smaller desktop if too crowded */
@media (max-width: 1100px) {
  .call-now {
    display: none;
  }
}

/* ====================================
   HERO
==================================== */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ====================================
   PRESTIGE GRID
==================================== */

.prestige-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.prestige-text {
  max-width: 520px;
}

.prestige-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
  max-height:400px;
}

/* Reverse Layout */

.prestige-section.reverse .prestige-grid > .prestige-text {
  order: 2;
}

.prestige-section.reverse .prestige-grid > .prestige-image {
  order: 1;
}

/* ====================================
   GOLD DIVIDER
==================================== */

.gold-divider {
  width: 60px;
  height: 3px;
  background: #C6A75E;
  margin: 20px 0;
}

/* ====================================
   BUTTONS
==================================== */

.btn-primary {
  display: inline-block;
  background: #C6A75E;
  color: white;
  padding: 14px 36px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #C6A75E;
  color: #0B1220;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #C6A75E;
   background:white;
  color: black;
  padding: 14px 36px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #C6A75E;
  color: white;
}

.text-link {
  font-weight: 500;
  text-decoration: none;
  color: #0B1220;
  border-bottom: 1px solid #C6A75E;
  padding-bottom: 3px;
  transition: 0.3s ease;
}

.text-link:hover {
  color: #C6A75E;
}
/* Dining Menu Grid */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.menu-item h3 {
  margin-bottom: 10px;
}

.menu-item p {
  color: #666;
}

/* Dark Dining Section */

.section-dark-dining {
  background: #0B3D2E;
  color: white;
}

.section-dark-dining p {
  color: #e5e5e5;
}
/* ====================================
   REAL DINING MENU SYSTEM
==================================== */

.menu-section {
  margin-top: 70px;
}

.menu-header {
  text-align: center;
  margin-bottom: 50px;
}

.menu-header h2 {
  margin-bottom: 10px;
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.menu-item {
  margin-bottom: 28px;
}

.menu-item h3 {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.menu-item span {
  font-weight: 500;
}

.menu-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.menu-divider {
  height: 1px;
  background: #ddd;
  margin: 60px 0;
}

/* Happy Hour Split */

.happy-hour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.happy-hour-block h3 {
  margin-bottom: 20px;
}

/* Responsive */

@media (max-width: 900px) {

  .menu-columns,
  .happy-hour-grid {
    grid-template-columns: 1fr;
  }

}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

form input,
form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 100%;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #C6A75E;
}

@media (max-width: 768px) {
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}
/* ====================================
   EVENT CARDS
==================================== */

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.event-card {
  background: white;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #e8e6df;
  transition: all 0.25s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.event-card h3 {
  margin-bottom: 10px;
  color: #0B3D2E;
}

.event-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */

@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */

@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
/* ====================================
   FOOTER
==================================== */

.site-footer {
  background: #0B3D2E;
  color: white;
  padding: 60px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: #C6A75E;
}
/* Footer Social */

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #C6A75E;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom */

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 900px) {

  .main-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .prestige-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prestige-section.reverse .prestige-grid > * {
    order: initial;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    height: 85vh;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
  }
}
/* MEMBERSHIP GRID */

.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */

.membership-card {
  background: #f7f6f3;
  padding: 40px;
  border-radius: 8px;
  transition: 0.25s ease;
  border: 1px solid #eee;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: #C6A75E;
}

/* HEADER */

.membership-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.membership-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0;
}

/* PRICE */

.membership-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0B3D2E;
}

.membership-price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #777;
}

/* ALT PAYMENT */

.membership-alt {
  font-size: 0.9rem;
  color: #666;
}
/* ====================================
   MODERN SCORECARD
==================================== */
/* ====================================
 /* REAL SCORECARD DESIGN */

.scorecard-wrapper {
  overflow-x: auto;
  margin-top: 60px;
}

.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: center;
  background: white;
}

.scorecard-table th,
.scorecard-table td {
  padding: 8px 6px;
}

.scorecard-table thead th {
  border-bottom: 2px solid #C6A75E;
  font-weight: 500;
}

.scorecard-table tbody tr {
  border-bottom: 1px solid #eee;
}

.scorecard-table td:first-child {
  text-align: left;
  font-weight: 500;
  padding-left: 10px;
}

/* Totals styling */

.scorecard-table .out,
.scorecard-table .in,
.scorecard-table .total {
  font-weight: 600;
}

/* Tee colors */

.tee-blue td:first-child { color: #1f4e79; }
.tee-white td:first-child { color: #666; }
.tee-gold td:first-child { color: #C6A75E; }
.tee-red td:first-child { color: #b22222; }

/* Par row emphasis */

.par-row {
  background: #f7f6f3;
  font-weight: 600;
}

/* Mobile */

@media (max-width: 900px) {
  .scorecard-table {
    font-size: 0.75rem;
  }
}
/* ===== Modal Base ===== */
.event-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.event-modal.active {
  display: flex;
}

.event-modal-content {
  background: #fff;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 8px;
  position: relative;
}

/* ===== Form Grid ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .event-modal-content {
    padding: 25px 20px;
    max-height: 95vh;
  }

  .form-grid {
    grid-template-columns: 1fr; /* stack inputs */
  }

  .event-modal-content h2 {
    font-size: 1.6rem;
  }

  .btn-primary {
    width: 100%;
  }

}
.event-modal-content::-webkit-scrollbar {
  width: 6px;
}

.event-modal-content::-webkit-scrollbar-thumb {
  background: #C6A75E;
  border-radius: 4px;
}
/* Premium Select */

.select-wrapper {
  position: relative;
  max-width: 500px;
}

.select-wrapper select {
  width: 100%;
  padding: 16px 45px 16px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  appearance: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.select-wrapper select:focus {
  outline: none;
  border-color: #C6A75E;
  box-shadow: 0 0 0 3px rgba(198,167,94,0.15);
}

/* Custom Arrow */

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #777;
  font-size: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.membership-form input,
.membership-form textarea,
.membership-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  transition: 0.25s ease;
}

.membership-form input:focus,
.membership-form textarea:focus,
.membership-form select:focus {
  outline: none;
  border-color: #C6A75E;
  box-shadow: 0 0 0 3px rgba(198,167,94,0.15);
}

/* Completed State */
.membership-form input.filled,
.membership-form textarea.filled,
.membership-form select.filled {
  border-color: #C6A75E;
  background: rgba(198,167,94,0.05);

}





