/* ================================================================
   LEE PHOTO + VIDEO — GLOBAL STYLESHEET
   style.css — shared across all pages

   HOW TO EDIT:
   - Colors: Change the CSS variables in :root (top of this file)
   - Fonts: Change --font-display and --font-body
   - Spacing: Change --section-pad and --max-w
================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES — Edit brand colors and fonts here
---------------------------------------------------------------- */
:root {
  /* Brand Colors — Bright Spring Palette */
  --cream:        #FFF6F5;   /* soft blush — light page backgrounds */
  --warm-white:   #FFFFFF;   /* pure white — cards, nav */
  --sand:         #82CFC5;   /* light mint — borders, dividers, accents */
  --clay:         #FAA151;   /* warm orange — labels, highlights */
  --terracotta:   #FAA151;   /* warm orange — primary buttons, CTAs */
  --sage:         #82CFC5;   /* light mint — section accents */
  --deep:         #1A2E35;   /* dark teal-navy — nav, footer, dark sections */
  --charcoal:     #1A2E35;   /* dark teal-navy — headings, body text */
  --muted:        #5BA89E;   /* mid teal — secondary text, captions */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Layout */
  --max-w:        1280px;
  --section-pad:  clamp(4rem, 8vw, 8rem);
  --nav-h:        80px;

  /* Animation */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------------------------------------------
   RESET + BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--deep);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ----------------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
p  { font-size: clamp(0.95rem, 1.2vw, 1.05rem); color: var(--charcoal); }

em { font-style: italic; }

/* ----------------------------------------------------------------
   LAYOUT
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}
.section { padding: var(--section-pad) 0; }

/* ----------------------------------------------------------------
   BUTTONS
   Edit button text directly in each HTML file
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-dark  { color: var(--deep); border-color: var(--deep); }
.btn-dark:hover  { background: var(--deep); color: var(--warm-white); }
.btn-light { color: var(--warm-white); border-color: var(--warm-white); }
.btn-light:hover { background: var(--warm-white); color: var(--deep); }
.btn-accent { background: var(--terracotta); color: var(--warm-white); border-color: var(--terracotta); }
.btn-accent:hover { background: transparent; color: var(--terracotta); }

/* ----------------------------------------------------------------
   SCROLL REVEAL
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,35,24,0.08);
}
/* Solid nav for inner pages (no hero photo underneath) */
.nav.solid {
  background: var(--warm-white);
  box-shadow: 0 1px 0 rgba(44,35,24,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--warm-white);
  transition: color 0.4s;
}
.nav.scrolled .nav-logo,
.nav.solid    .nav-logo { color: var(--deep); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav-links a,
.nav.solid    .nav-links a { color: var(--charcoal); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--terracotta) !important; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--warm-white);
  transition: all 0.3s;
}
.nav.scrolled .nav-cta,
.nav.solid    .nav-cta { border-color: var(--terracotta); color: var(--terracotta); }
.nav-cta:hover { background: var(--deep) !important; color: var(--warm-white) !important; border-color: var(--deep) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--warm-white); transition: all 0.3s; }
.nav.scrolled .nav-toggle span,
.nav.solid    .nav-toggle span { background: var(--deep); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--deep); }
.mobile-menu a.btn { font-family: var(--font-body); font-size: 0.78rem; }
.mobile-menu-close { position: absolute; top: 2rem; right: 2rem; font-size: 2rem; cursor: pointer; color: var(--deep); background: none; border: none; }

/* ----------------------------------------------------------------
   PAGE HERO (inner pages — shorter than homepage)
---------------------------------------------------------------- */
.page-hero {
  position: relative;
  height: clamp(320px, 55vw, 580px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(44,35,24,0.72) 0%, rgba(44,35,24,0.3) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.page-hero h1 {
  color: var(--warm-white);
  font-style: italic; font-weight: 300;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.page-hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   SECTION LABELS + HEADERS
---------------------------------------------------------------- */
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-header h2 { font-style: italic; }

/* ----------------------------------------------------------------
   TESTIMONIAL CARDS (shared)
---------------------------------------------------------------- */
.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--sand);
  position: relative;
  background: var(--warm-white);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 1rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: var(--clay); opacity: 0.3;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.testimonial-stars span { color: var(--terracotta); font-size: 0.9rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-style: italic; font-weight: 300;
  color: var(--deep); line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

/* ----------------------------------------------------------------
   MINI CTA BANNER (used on most inner pages)
---------------------------------------------------------------- */
.mini-cta {
  background: var(--deep);
  text-align: center;
  padding: clamp(4rem, 7vw, 7rem) 0;
}
.mini-cta h2 {
  font-style: italic; font-weight: 300;
  color: var(--warm-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.mini-cta p {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 2.25rem;
  font-size: 1rem; line-height: 1.8;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col a:hover { color: var(--warm-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-social a:hover { color: var(--clay); }

/* ----------------------------------------------------------------
   BREADCRUMB
---------------------------------------------------------------- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex; gap: 0.5rem; align-items: center;
}
.breadcrumb a { color: var(--muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb-sep { color: var(--clay); }

/* ----------------------------------------------------------------
   ACCESSIBILITY
---------------------------------------------------------------- */
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
