/*
Theme Name: Sterling D. Walker
Description: Personal website theme for Sterling D. Walker — therapist, trainer, and travel guide
Version: 1.0
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d2137;
  --gold:   #c8963e;
  --gold-lt:#e5b96a;
  --cream:  #f9f6f1;
  --white:  #ffffff;
  --gray:   #5a6070;
  --light:  #eef1f5;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(13,33,55,.12);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: .5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #cdd6e0;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .4px;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: brightness(.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .4px;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}

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

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,62,.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===== SECTION WRAPPERS ===== */
section { padding: 80px 5%; }
.section-alt { background: var(--cream); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(13,33,55,.15);
}

.card img { height: 220px; }

.card-body {
  padding: 1.5rem;
}

.card-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .4rem;
}

.card-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin-bottom: .6rem;
}

.card-body p {
  font-size: .93rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

/* ===== TWO-COLUMN SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split img { height: 420px; border-radius: var(--radius); box-shadow: var(--shadow); }

.split-text .section-sub { margin-bottom: 1.8rem; }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split img { height: 260px; }
}

/* ===== SERVICES LIST ===== */
.services-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.services-list li {
  padding: .55rem 0;
  border-bottom: 1px solid #e4e8ef;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .97rem;
  color: var(--gray);
}

.services-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== TESTIMONIAL ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.testimonial p {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1rem;
}

.testimonial strong { color: var(--navy); }

/* ===== CONTACT FORM ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p { color: var(--gray); margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .8rem;
  color: var(--gray);
  font-size: .95rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }

label { font-size: .88rem; font-weight: 600; color: var(--navy); }

input, select, textarea {
  padding: .75rem 1rem;
  border: 1.5px solid #d0d7e2;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,62,.15);
}

textarea { resize: vertical; min-height: 130px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: #9aaab8;
  padding: 3rem 5% 2rem;
}

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

footer h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: .5rem; }
footer ul a { color: #9aaab8; font-size: .9rem; transition: color .2s; }
footer ul a:hover { color: var(--gold); }

footer p { font-size: .85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .82rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: .6rem;
}

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-banner img.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: brightness(.4);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.page-banner-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: .6rem;
}

.page-banner-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid #d0d7e2;
  transition: transform .25s;
}

.price-card.featured {
  border-top-color: var(--gold);
  transform: scale(1.03);
}

.price-card:hover { transform: translateY(-4px) scale(1.01); }

.price-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin: .8rem 0;
}

.price-amount span { font-size: 1rem; color: var(--gray); font-weight: 400; }

.price-card ul {
  list-style: none;
  margin: 1.2rem 0 2rem;
  text-align: left;
}

.price-card ul li {
  padding: .4rem 0;
  border-bottom: 1px solid #eef1f5;
  font-size: .9rem;
  color: var(--gray);
  display: flex;
  gap: .5rem;
  align-items: center;
}

.price-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ===== DESTINATIONS ===== */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.destination-card img {
  height: 100%;
  transition: transform .4s;
  filter: brightness(.65);
}

.destination-card:hover img { transform: scale(1.06); filter: brightness(.5); }

.destination-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,33,55,.8) 0%, transparent 60%);
}

.destination-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .3rem;
}

.destination-overlay p {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 768px) {
  section { padding: 56px 5%; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    padding: .5rem 0 1.2rem;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: .9rem 5%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-links .current-menu-item > a,
  .nav-links .current_page_item > a {
    background: rgba(200,150,62,.1);
    color: var(--gold);
  }
}
