/* ============================================
   Adventures With Ava — Shared Stylesheet
   Warm watercolor palette, storybook feel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@400;600;700;800&display=swap');

/* ---- Tokens ---- */
:root {
  --cream:       #FDF6EC;
  --warm-white:  #FFFAF4;
  --gold:        #C8922A;
  --gold-light:  #F0D080;
  --teal:        #2A7C8A;
  --teal-light:  #E8F4F6;
  --pink:        #C0526A;
  --pink-light:  #FAE8ED;
  --brown:       #6B4226;
  --brown-light: #F5EDE4;
  --text-dark:   #2C1A0E;
  --text-mid:    #5C3D22;
  --text-light:  #8B6347;
  --shadow:      rgba(107, 66, 38, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--pink); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.25;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }

p { margin-bottom: 1.2em; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ---- Navigation ---- */
.site-nav {
  background: var(--warm-white);
  border-bottom: 2px solid var(--gold-light);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
}

.nav-logo span {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

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

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-mid);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--teal-light);
  color: var(--teal);
}

/* ---- Page Hero Banner ---- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--warm-white) 60%, var(--pink-light) 100%);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--gold-light);
}

.page-hero h1 { color: var(--brown); margin-bottom: 0.5rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ---- Content Sections ---- */
.section {
  padding: 4rem 2rem;
}

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

.section-alt {
  background: var(--warm-white);
}

.section-teal {
  background: var(--teal-light);
}

.section-pink {
  background: var(--pink-light);
}

/* ---- Cards ---- */
.card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--gold-light);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow); }

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

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

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

/* ---- Divider ---- */
.paw-divider {
  text-align: center;
  padding: 1rem 0;
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
  color: var(--gold-light);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 2.5rem 2rem;
}

.site-footer p { color: var(--gold-light); margin-bottom: 0.4rem; font-size: 0.95rem; }
.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: white; }

.footer-logo {
  width: 60px;
  margin: 0 auto 1rem;
  opacity: 0.9;
  border-radius: 50%;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links a { padding: 0.4rem 0.6rem; font-size: 0.85rem; }
  .nav-logo span { display: none; }
  .section { padding: 2.5rem 1.2rem; }
}

@media (max-width: 520px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 0.4rem 0.4rem; font-size: 0.8rem; }
}
