/* ============================================================
   Live Your Dream: The Taylor Anderson Story
   Layout — nav, hero, page header, sections, footer
   ============================================================ */

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--navy-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30'%3E%3Cpath d='M0,10 C20,2 40,18 60,10 C80,2 100,18 120,10' fill='none' stroke='%23c9a84c' stroke-width='1' opacity='0.22'/%3E%3Cpath d='M0,22 C20,14 40,30 60,22 C80,14 100,30 120,22' fill='none' stroke='%23c9a84c' stroke-width='0.7' opacity='0.13'/%3E%3C/svg%3E");
  background-size: 120px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-top: 2px solid rgba(201, 168, 76, 0.45);
  border-bottom: 2px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav ul a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.site-nav ul a:hover,
.site-nav ul a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: url("../images/tori.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

@media (max-width: 860px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(19, 29, 51, 0.55) 0%,
    rgba(19, 29, 51, 0.75) 100%
  );
}

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

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  margin-bottom: 0.1em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-content .subtitle {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.6em;
}

.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.page-header p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0.5rem auto 0;
  font-size: 1.1rem;
}

/* ---------- Sections ---------- */
section {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.4em;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 0;
}

.bg-soft {
  background: var(--off-white);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--navy-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30'%3E%3Cpath d='M0,10 C20,2 40,18 60,10 C80,2 100,18 120,10' fill='none' stroke='%23c9a84c' stroke-width='1' opacity='0.22'/%3E%3Cpath d='M0,22 C20,14 40,30 60,22 C80,14 100,30 120,22' fill='none' stroke='%23c9a84c' stroke-width='0.7' opacity='0.13'/%3E%3C/svg%3E");
  background-size: 120px 30px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}

.site-footer a {
  color: var(--gold-light);
}

.site-footer .footer-links {
  margin-bottom: 0.8rem;
}

.site-footer .footer-links a {
  margin: 0 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
