/* ============================================
   THE GOLF SIMS — Main Stylesheet
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-secondary: #f7f7f5;
  --text: #0a0a0a;
  --text-muted: #555;
  --green: #2d5a3d;
  --green-light: #3d7a52;
  --border: #e0e0d8;
  --nav-bg: #ffffff;
  --card-bg: #ffffff;
  --toggle-bg: #e0e0d8;
  --toggle-knob: #2d5a3d;
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --text: #f0f0f0;
  --text-muted: #aaa;
  --green: #4a7c59;
  --green-light: #5a9a6e;
  --border: #222;
  --nav-bg: #0d0d0d;
  --card-bg: #161616;
  --toggle-bg: #2d5a3d;
  --toggle-knob: #c9a961;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  transition: background 0.3s, border-color 0.3s;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  color: var(--text);
}
.nav-logo .the { font-family: 'Poppins', sans-serif; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 1px; }
.nav-logo .golf { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; letter-spacing: -1px; line-height: 1; }
.nav-logo .sims { font-family: 'Poppins', sans-serif; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-top: 1px; }
.nav-logo .lines { display: flex; align-items: center; gap: 6px; margin: 2px 0; }
.nav-logo .line { height: 1px; width: 22px; background: var(--green); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.2s;
}
.nav-icon:hover { color: var(--green); }
.nav-icon svg { width: 20px; height: 20px; }

.dark-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.toggle-track {
  width: 40px;
  height: 22px;
  background: var(--toggle-bg);
  border-radius: 11px;
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
  outline: none;
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--toggle-knob);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}
[data-theme="dark"] .toggle-knob { transform: translateX(18px); }
.toggle-icon { font-size: 14px; }

.book-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.book-btn:hover { background: var(--green-light); color: #fff; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--bg);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.hero-tagline-line {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin-bottom: 10px;
}

.hero-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--green-light); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 520px; }

/* ── ICON BAR ── */
.icon-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.icon-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.icon-item:last-child { border-right: none; }
.icon-item:hover { background: var(--bg-secondary); }

.icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-wrap svg { width: 32px; height: 32px; stroke: var(--green); fill: none; stroke-width: 1.5; }

.icon-text h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.icon-text p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── MORE THAN GOLF ── */
.more-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg);
  padding: 70px 60px;
  align-items: start;
  transition: background 0.3s;
}

.more-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 6px;
}
.more-left .green-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.more-left p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 260px;
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.more-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}
.more-card h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.more-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── BOTTOM BAR ── */
.bottom-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  transition: background 0.3s;
}

.bottom-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.bottom-item:last-child { border-right: none; justify-content: space-between; }

.bottom-icon svg { width: 36px; height: 36px; stroke: var(--green); fill: none; stroke-width: 1.3; }

.bottom-text h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 3px;
}
.bottom-text p { font-size: 12px; color: var(--text-muted); }

.give-gift-btn {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.give-gift-btn:hover { border-color: var(--green); color: var(--green); }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 50px 60px 20px;
  transition: background 0.3s;
}

.footer-inner {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }

.footer-contact p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact a { color: var(--text-muted); text-decoration: none; }
.footer-contact a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .icon-bar { grid-template-columns: repeat(3, 1fr); }
  .more-section { grid-template-columns: 1fr; gap: 40px; }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .bottom-bar { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero-left { padding: 40px 24px; }
  .hero-left h1 { font-size: 42px; }
  .icon-bar { grid-template-columns: 1fr; }
  .more-section { padding: 40px 24px; }
  .more-grid { grid-template-columns: 1fr; }
  .bottom-bar { grid-template-columns: 1fr; }
  .site-nav { padding: 0 20px; }
}


/* ============================================
   ABOUT US PAGE
   ============================================ */

/* ── ABOUT HERO ── */
.about-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  inset: 0;
}
.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.2));
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}

.about-hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-hero-line {
  width: 50px;
  height: 2px;
  background: var(--green-light);
}

/* ── STORY SECTION ── */
.about-story {
  background: var(--bg);
  padding: 90px 60px;
  transition: background 0.3s;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.about-story-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  position: sticky;
  top: 90px;
}

.about-story-right p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-lead {
  font-size: 17px !important;
  color: var(--text) !important;
  font-weight: 400;
  line-height: 1.7 !important;
  margin-bottom: 28px !important;
}

/* ── DIVIDER IMAGE ── */
.about-divider-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.about-divider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-divider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-divider-overlay blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  max-width: 700px;
  padding: 0 40px;
  line-height: 1.3;
  font-style: italic;
}

/* ── VALUES ── */
.about-values {
  background: var(--bg-secondary);
  padding: 90px 60px;
  transition: background 0.3s;
}

.about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: border-color 0.2s, background 0.3s;
}
.value-card:hover { border-color: var(--green); }

.value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}
.value-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--green);
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── LOCATION ── */
.about-location {
  background: var(--bg);
  padding: 90px 60px;
  transition: background 0.3s;
}

.about-location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-location-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.about-location-text > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.location-details { margin-bottom: 36px; }
.location-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.location-detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  flex-shrink: 0;
}

.about-location-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-story-left h2 { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-location-inner { grid-template-columns: 1fr; }
  .about-location-img { display: none; }
}

@media (max-width: 600px) {
  .about-hero-inner h1 { font-size: 36px; }
  .about-story { padding: 50px 24px; }
  .about-values { padding: 50px 24px; }
  .about-location { padding: 50px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-divider-overlay blockquote { font-size: 24px; }
}


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

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 40px 0;
  transition: background 0.3s, border-color 0.3s;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-icon:hover { border-color: var(--green); color: var(--green); }
.social-icon svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.6;
}
.footer-links-col a:hover { color: var(--green); }
.footer-hours {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--green); }

/* ============================================
   MOBILE MENU
   ============================================ */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}
.hamburger svg { width: 24px; height: 24px; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu-overlay.open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}
.mobile-menu-close svg { width: 28px; height: 28px; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-book-btn {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--green) !important;
  color: #fff !important;
  padding: 16px 24px !important;
  text-align: center;
  margin-top: 8px;
  border-bottom: none !important;
}

.mobile-social {
  display: flex;
  gap: 12px;
}

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

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .dark-toggle .toggle-icon { display: none; }
}

@media (max-width: 600px) {
  .site-footer { padding: 40px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .site-nav { padding: 0 20px; }
}
