/* My Lovely Little Things — Small Gifts & Accessories */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --blush: #E8A0B4;
  --rose: #D4728C;
  --rose-dark: #9E4460;
  --blush-pale: #FFF5F7;
  --blush-cream: #FEF0F3;
  --gold: #C9A961;
  --gold-light: #F5EDD6;
  --charcoal: #3A3035;
  --grey: #6B5F65;
  --white: #FFFFFF;
  --lavender: #E8DAF0;
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--rose-dark);
}

h1 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 0.5em; }
h2 { font-size: 1.9rem; margin-bottom: 0.5em; }
h3 { font-size: 1.3rem; margin-bottom: 0.3em; }

a { color: var(--rose); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rose-dark); }

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

/* Navigation */
.site-nav {
  background: var(--white);
  border-bottom: 2px solid var(--blush-cream);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rose-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-brand svg { width: 28px; height: 28px; flex-shrink: 0; }

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

.nav-links a {
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--rose); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--rose-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: var(--blush-cream);
  padding: 5rem 2rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.hero-text h1 { color: var(--rose-dark); font-size: 2.8rem; }
.hero-text p { font-size: 1.1rem; color: var(--grey); margin-bottom: 1.5rem; }

.hero-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(212,114,140,0.15);
}

.hero-img img { width: 100%; height: 380px; object-fit: cover; display: block; }

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--rose);
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover { background: var(--rose-dark); color: #fff; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--rose);
  color: var(--rose);
}

.btn-outline:hover { background: var(--rose); color: #fff; }

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

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section styling */
.section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.section-intro p { font-size: 1.05rem; color: var(--grey); }

.bg-blush { background: var(--blush-cream); }
.bg-lavender { background: var(--lavender); }

/* Gift card grid */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.gift-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212,114,140,0.12);
}

.gift-card img { width: 100%; height: 220px; object-fit: cover; display: block; }

.gift-card-body { padding: 1.4rem; }
.gift-card-body h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.gift-card-body p { color: var(--grey); font-size: 0.92rem; }

.gift-tag {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--blush-cream);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  color: var(--rose);
  font-weight: 700;
}

/* Page header */
.page-header {
  background: var(--blush-cream);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--blush);
}

.page-header h1 { margin-bottom: 0.3em; }
.page-header p { font-size: 1.05rem; color: var(--grey); max-width: 580px; margin: 0 auto; }

/* Content body */
.content-body { max-width: 780px; margin: 0 auto; padding: 3rem 2rem; }
.content-body p { margin-bottom: 1.4em; font-size: 1.02rem; color: var(--charcoal); }
.content-body h2 { margin-top: 2.5rem; color: var(--rose-dark); }
.content-body h3 { margin-top: 1.5rem; }
.content-body img { width: 100%; border-radius: 10px; margin: 1.5rem 0; display: block; }
.content-body ul, .content-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.content-body li { margin-bottom: 0.5rem; }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.two-col img { width: 100%; border-radius: 10px; display: block; }

/* Category feature boxes */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-box {
  background: var(--white);
  border: 2px solid var(--blush-cream);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.category-box:hover { border-color: var(--blush); }
.category-box h3 { margin-bottom: 0.5rem; }
.category-box p { font-size: 0.9rem; color: var(--grey); }

/* Testimonial */
.testimonial {
  background: var(--blush-cream);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 2.5rem 0;
  text-align: center;
  border-left: 4px solid var(--rose);
}

.testimonial p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rose-dark);
  margin-bottom: 0.8rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--grey);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  color: var(--blush);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-col a:hover { color: var(--blush); }
.footer-col p { font-size: 0.85rem; }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 2rem 1.2rem;
    gap: 0.8rem;
    border-bottom: 2px solid var(--blush-cream);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-img img { height: 280px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .gift-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .gift-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .site-nav { padding: 0 1.2rem; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
