/* =============================================
   LittleZoe — Cozy Boho Soft Pink Theme
   Palette: Cream · Dusty Pink · Sage · Blush
   Fonts: Playfair Display + Nunito
============================================= */

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

/* ── CSS Variables ── */
p {
  margin: 0;
  line-height: 1;
} 
:root {
  --bg-cream:       #FFF9F5;
  --text-main:      #4A4A4A;
  --text-light:     #7A7A7A;
  --text-muted:     #A0A0A0;
  --dusty-pink:     #D8A7B1;
  --blush-pink:     #F3D7DD;
  --sage-green:     #B8C4B1;
  --footer-beige:   #F1E7DD;
  --white-card:     #FFFFFF;
  --border-soft:    #EDD8DC;
  --shadow-warm:    rgba(216, 167, 177, 0.18);
  --shadow-card:    rgba(74, 74, 74, 0.07);
}

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

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

body {
  background-color: var(--bg-cream);
  color: var(--text-main);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
  line-height: 1.3;
  font-weight: 600;
}

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

p {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

a {
  color: var(--dusty-pink);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: #c2909c;
  opacity: 0.85;
}

/* ── Utility: Italic accent (Playfair italic) ── */
.italic-accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--dusty-pink);
}

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

section {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 2rem;
  background-color: var(--white-card);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px var(--shadow-card);
  margin: 2rem auto;
  max-width: 1100px;
}

section img {
  flex-shrink: 0;
  border-radius: 1rem;
  box-shadow: 0 4px 16px var(--shadow-warm);
  width: 300px;
  height: auto;
}

section .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section .text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ── Header / Navbar ── */
header {
  background-color: var(--white-card);
  border-bottom: 1.5px solid var(--border-soft);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px var(--shadow-warm);
}

header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--dusty-pink);
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

nav ul li a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--dusty-pink);
  border-bottom-color: var(--dusty-pink);
}

/* ── Hero Section ── */
.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--blush-pink) 0%, var(--bg-cream) 60%);
  border-radius: 0 0 2rem 2rem;
}

.hero img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50% 45% 50% 45%;
  border: 5px solid var(--white-card);
  box-shadow: 0 8px 32px var(--shadow-warm);
  flex-shrink: 0;
}

.hero-text h1 {
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
}

/* ── About / Intro Section ── */
.about-section {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background-color: var(--white-card);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 4px 24px var(--shadow-card);
  margin: 2rem auto;
  max-width: 1100px;
}

.about-section img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--shadow-warm);
}

.about-section .text p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ── Cards ── */
.card {
  background-color: var(--white-card);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-soft);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--shadow-warm);
}

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

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ── Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* ── Category Tags ── */
.tag {
  display: inline-block;
  background-color: var(--blush-pink);
  color: var(--dusty-pink);
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-soft);
}

.tag.sage {
  background-color: rgba(184, 196, 177, 0.25);
  color: #6d8569;
  border-color: var(--sage-green);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.6rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--dusty-pink);
  color: #fff;
  border-color: var(--dusty-pink);
}

.btn-primary:hover {
  background-color: #c2909c;
  border-color: #c2909c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-warm);
}

.btn-outline {
  background-color: transparent;
  color: var(--dusty-pink);
  border-color: var(--dusty-pink);
}

.btn-outline:hover {
  background-color: var(--blush-pink);
  color: var(--dusty-pink);
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--dusty-pink), var(--sage-green));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Section Title ── */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Blog Post / Article ── */
.post-header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.post-header h1 {
  margin: 1rem 0 0.75rem;
}

.post-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.post-content h2 {
  margin: 2rem 0 0.75rem;
}

.post-content blockquote {
  border-left: 4px solid var(--dusty-pink);
  background-color: var(--blush-pink);
  padding: 1rem 1.5rem;
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 1.5rem 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
}

/* ── Sidebar Widget ── */
.widget {
  background-color: var(--white-card);
  border-radius: 1.2rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px var(--shadow-card);
  border: 1px solid var(--border-soft);
  margin-bottom: 1.5rem;
}

.widget h4 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dusty-pink);
  margin-bottom: 1rem;
}

/* ── Newsletter / CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blush-pink) 0%, var(--footer-beige) 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border: 1px solid var(--border-soft);
}

.cta-banner h2 {
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--text-light);
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.cta-banner .input-group {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-banner input[type="email"] {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border: 1.5px solid var(--border-soft);
  border-radius: 2rem;
  background: var(--white-card);
  color: var(--text-main);
  outline: none;
  width: 260px;
  transition: border-color 0.25s ease;
}

.cta-banner input[type="email"]:focus {
  border-color: var(--dusty-pink);
}

/* ── Footer ── */
footer {
  background-color: var(--footer-beige);
  border-top: 1.5px solid var(--border-soft);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

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

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dusty-pink);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
}

footer h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer ul li a {
  font-size: 0.9rem;
  color: var(--text-light);
}

footer ul li a:hover {
  color: var(--dusty-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--blush-pink);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dusty-pink);
}

/* ── Selection ── */
::selection {
  background-color: var(--blush-pink);
  color: var(--text-main);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .hero img {
    width: 200px;
    height: 200px;
  }

  section {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  section img {
    width: 100%;
    max-width: 260px;
  }

  .about-section {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .about-section img {
    width: 100%;
    height: 220px;
  }

  nav ul {
    gap: 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.contact-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:40px 20px;
}

.contact-card{
  width:100%;
  max-width:450px;
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  margin:25px 0;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-form input,
.contact-form textarea{
  padding:12px;
  border-radius:12px;
  border:1px solid #ddd;
  font-family:'Nunito',sans-serif;
}

.contact-form button{
  background:#D8A7B1;
  color:white;
  border:none;
  padding:12px;
  border-radius:25px;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  background:#B8C4B1;
}