/* =============================================
   Travelled Well – Shared Stylesheet
   Color palette derived from logo
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1B2849;
  --cream:  #F5EFD8;
  --sage:   #7DB5A0;
  --gold:   #C8B87A;
  --white:  #FAFAF5;
  --text:   #2C2C2C;
  --light-text: #5A5A5A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Raleway', 'Aptos', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.25;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 90px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.45);
  border-bottom: 3px solid var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text .brand-name {
  font-family: 'Raleway', 'Aptos', 'Helvetica Neue', Arial, sans-serif;
  color: var(--cream);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-logo-text .brand-tagline {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Hero Slideshow --- */
.hero {
  position: relative;
  height: 95vh;
  min-height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27,40,73,0.25) 0%,
    rgba(27,40,73,0.55) 60%,
    rgba(27,40,73,0.80) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: 90px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: 'Raleway', 'Aptos', 'Helvetica Neue', Arial, sans-serif;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  max-width: 700px;
  margin-bottom: 0.75rem;
}

.hero-sub {
  color: var(--cream);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--sage);
  color: var(--navy);
  border: 2px solid var(--sage);
}
.btn-primary:hover { background: #5fa08b; border-color: #5fa08b; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }

/* Slide caption */
.slide-caption {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-style: italic;
  text-align: right;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 2.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.dot.active { background: var(--sage); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  animation: bounceDown 2.2s ease-in-out infinite;
}
.scroll-hint svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,0.55);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* --- Section shared --- */
section { padding: 5rem 2rem; }

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--sage);
  margin-top: 0.5rem;
}

/* --- About Teaser --- */
.about-teaser {
  background: var(--cream);
}

.about-teaser p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 680px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* --- Signup strip (compact, ~1 inch, navy) --- */
.signup-strip {
  background: var(--navy);
  border-top: 1px solid rgba(200,184,122,0.3);
  padding: 1.1rem 2rem 0.9rem;
}

.signup-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.signup-strip-label {
  font-family: 'Raleway', 'Aptos', 'Helvetica Neue', Arial, sans-serif;
  color: var(--cream);
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.signup-strip form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  min-width: 260px;
}

.signup-strip input[type="email"] {
  flex: 1;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(200,184,122,0.45);
  background: rgba(255,255,255,0.09);
  color: var(--white);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.signup-strip input[type="email"]::placeholder {
  color: rgba(245,239,216,0.45);
}

.signup-strip input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.14);
}

.signup-strip button[type="submit"] {
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.signup-strip button[type="submit"]:hover { background: #b5a060; }

.signup-strip .strip-success {
  color: var(--sage);
  font-size: 0.9rem;
  display: none;
}

@media (max-width: 600px) {
  .signup-strip-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .signup-strip form   { flex-direction: column; }
  .signup-strip-label  { text-align: center; }
}


/* --- Footer (merged with signup strip — same navy, no gap) --- */
footer {
  background: var(--navy);
  color: rgba(245,239,216,0.45);
  text-align: center;
  padding: 0.6rem 2rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(255,255,255,0.07);
}

footer a { color: rgba(245,239,216,0.6); }
footer a:hover { color: var(--gold); text-decoration: none; }

/* =============================================
   About Page specific
   ============================================= */
.page-hero {
  padding-top: 90px;
  background: var(--navy);
  text-align: center;
  padding-bottom: 3rem;
  padding-top: calc(90px + 3rem);
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(245,239,216,0.7);
  font-size: 1.1rem;
}

.about-content {
  background: var(--white);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.bio-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.bio-card .bio-role {
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bio-card p {
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

.channel-section {
  background: var(--cream);
}

.channel-section p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 680px;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-logo { width: 110px; height: 110px; }

  section { padding: 3.5rem 1.25rem; }

  .slide-caption { display: none; }
}

@media (min-width: 769px) {
  .bio-grid { grid-template-columns: 1fr 1fr; }
}
