/* ── Heather's Home — Curated Living ── */
/* Warm, cosy, neutral palette inspired by the brand */

:root {
  --taupe: #9C8B7A;
  --taupe-light: #B8A99A;
  --taupe-dark: #7A6B5D;
  --sage: #8B9E87;
  --sage-light: #A8B8A4;
  --sage-dark: #6B7E67;
  --cream: #F5F0EB;
  --warm-white: #FDFBF8;
  --blush: #D4A5A5;
  --text: #4A3F35;
  --text-light: #7A6B5D;
  --pink-ribbon: #E8A0BF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--taupe-dark);
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--taupe); }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ── Navigation ── */
nav {
  background: var(--warm-white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(156, 139, 122, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo img {
  height: 80px;
  width: auto;
}

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

nav ul li a {
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--taupe);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 3rem;
  background: rgba(253, 251, 248, 0.88);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-logo {
  width: 280px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--sage);
  color: white;
  border-radius: 3px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.btn:hover {
  background: var(--sage-dark);
  color: white;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--taupe-light);
  color: var(--taupe-dark);
}

.btn-outline:hover {
  background: var(--taupe);
  color: white;
  border-color: var(--taupe);
}

/* ── Intro / Story ── */
.intro {
  background: var(--warm-white);
  text-align: center;
}

.intro p {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

.intro .divider {
  width: 60px;
  height: 2px;
  background: var(--sage);
  margin: 2rem auto;
}

/* ── Collections Grid ── */
.collections {
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.collection-card {
  background: var(--warm-white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(122, 107, 93, 0.12);
}

.collection-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.collection-card .card-body {
  padding: 1.5rem;
  text-align: center;
}

.collection-card h3 {
  color: var(--taupe-dark);
  margin-bottom: 0.4rem;
}

.collection-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── About / Story split ── */
.story {
  background: var(--warm-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  border-radius: 4px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-light);
  font-size: 1.02rem;
}

/* ── Heather's Legacy ── */
.legacy {
  background: var(--warm-white);
  text-align: center;
}

.legacy h2 {
  text-align: center;
}

.legacy p {
  max-width: 750px;
  margin: 0 auto 1rem;
  font-size: 1.02rem;
  color: var(--text-light);
}

/* ── Pink Ribbon / Awareness Banner ── */
.awareness {
  background: linear-gradient(135deg, #F9F0F3 0%, #F5EDE8 100%);
  text-align: center;
  padding: 3.5rem 0;
}

.awareness .ribbon-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.awareness h3 {
  color: var(--taupe-dark);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.awareness p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Visit / Showroom ── */
.visit {
  background: var(--cream);
  text-align: center;
}

.visit-content {
  max-width: 600px;
  margin: 0 auto;
}

.visit-content .address {
  font-size: 1.1rem;
  color: var(--taupe-dark);
  margin: 1.5rem 0;
  font-style: italic;
}

.visit-content .hours {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Footer ── */
footer {
  background: var(--taupe-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
  text-align: center;
  font-size: 0.85rem;
}

footer .footer-logo img {
  height: 60px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.85);
}

footer a:hover {
  color: white;
}

footer .footer-heart {
  color: var(--pink-ribbon);
}

/* ── Scroll Entrance Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children within grids */
.collections-grid .fade-in:nth-child(2) { transition-delay: 0.12s; }
.collections-grid .fade-in:nth-child(3) { transition-delay: 0.24s; }

/* ── Responsive ── */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero { height: 70vh; min-height: 400px; }
  .hero-content { margin: 1rem; padding: 2rem; }
  .hero-logo { width: 200px; }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(156, 139, 122, 0.15);
  }

  nav ul.active { display: flex; }

  .nav-toggle { display: block; }

  section { padding: 3.5rem 0; }
}
