/* =====================================================
   Alamo Women's Club — Main Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --sage:        #7A8C6E;
  --sage-light:  #A8B89A;
  --sage-dark:   #5C6E52;
  --cream:       #F7F4EF;
  --warm-white:  #FDFBF8;
  --charcoal:    #2C2C2C;
  --stone:       #6B6560;
  --gold:        #B8975A;
  --gold-light:  #D4B07A;
  --blush:       #E8D5C4;
  --nav-height:  70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAVIGATION ── */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,251,248,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,151,90,0.15);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}
nav#main-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.68rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--sage-dark); }
.nav-links > li > a.btn-nav {
  background: var(--sage);
  color: white;
  border-radius: 4px;
  padding: 0.42rem 1.1rem;
  margin-left: 0.4rem;
}
.nav-links > li > a.btn-nav:hover { background: var(--sage-dark); color: white; }

/* Dropdown */
.nav-links li:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px); left: 0;
  background: white;
  min-width: 200px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 0.4rem 0;
  z-index: 200;
}
.dropdown a {
  display: block;
  padding: 0.45rem 1.25rem;
  font-size: 0.82rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: background 0.15s;
}
.dropdown a:hover { background: var(--cream); color: var(--sage-dark); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 99;
  overflow-y: auto;
  padding: 1rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu a.indent { padding-left: 3rem; font-size: 0.9rem; color: var(--stone); }
.mobile-menu a:hover { background: var(--cream); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.78rem 1.9rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--gold); color: white; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,151,90,0.35); }
.btn-sage { background: var(--sage); color: white; }
.btn-sage:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: white; }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.52);
  transition: opacity 0.5s;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.5) 0%, rgba(92,110,82,0.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-height);
}
.hero-eyebrow {
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.84);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--sage);
  color: white;
  padding: 1.6rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── GENERIC SECTION WRAPPER ── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--sage-dark); }
.section-body {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.78;
  max-width: 580px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text { display: flex; flex-direction: column; gap: 0; }
.about-text .section-body + .section-body { margin-top: 1rem; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.about-images img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}

/* ── ACTIVITIES ── */
.activities-section { background: var(--cream); }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.activity-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.activity-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.activity-icon {
  width: 44px; height: 44px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.activity-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.activity-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.65; }

/* ── RENTALS ── */
.rentals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.rental-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.rental-images img {
  width: 100%; height: 170px;
  object-fit: cover;
  border-radius: 6px;
}
.rental-images img:first-child {
  grid-column: 1 / -1;
  height: 250px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.price-table th {
  background: var(--sage);
  color: white;
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.price-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--stone);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child,
.price-table th:last-child { text-align: right; }
.amenities-list { list-style: none; margin: 1.25rem 0; }
.amenities-list li {
  padding: 0.38rem 0;
  font-size: 0.9rem;
  color: var(--stone);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.amenities-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── MEMBERSHIP ── */
.membership-section { background: var(--charcoal); color: white; }
.membership-section .section-eyebrow { color: var(--gold-light); }
.membership-section .section-title { color: white; }
.membership-section .section-title em { color: var(--gold-light); }
.membership-section .section-body { color: rgba(255,255,255,0.75); max-width: 100%; }
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.membership-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.fact-card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.fact-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}
.fact-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── PHILANTHROPY ── */
.philanthropy-section { background: var(--blush); }
.philanthropy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.phil-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--sage);
}
.phil-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.phil-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.65; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 36px; opacity: 0.8; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.58);
  font-size: 0.84rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.77rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .rentals-grid, .membership-grid { grid-template-columns: 1fr; gap: 3rem; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .philanthropy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .activities-grid { grid-template-columns: 1fr; }
  .membership-facts { grid-template-columns: 1fr; }
  section { padding: 4rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 1.5rem; }
  .hero h1 { font-size: 2.4rem; }
}
