/* Madame Soleil — Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:wght@300;400;500&display=swap');

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

:root {
  --cream: #FFFDF5;
  --yellow: #F5C842;
  --yellow-light: #FFF8D6;
  --pink: #F4A7B9;
  --pink-light: #FFF0F4;
  --blue: #B8D4E8;
  --blue-light: #EAF4FB;
  --orange: #F4A261;
  --teal: #4ECDC4;
  --teal-dark: #38B2AA;
  --text: #2C2C2C;
  --muted: #7A7A7A;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .sun { font-size: 22px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links .sep { color: #ddd; font-weight: 300; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); padding: 20px 40px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-menu a { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--text); }
.btn-yellow:hover { background: #e6b93a; transform: translateY(-1px); }
.btn-sm { padding: 10px 22px; font-size: 10px; }

/* ── CARDS ───────────────────────────────────────────────────── */
.card { border-radius: 16px; padding: 32px; }
.card-yellow { background: var(--yellow-light); border: 1px solid rgba(245,200,66,0.3); }
.card-pink { background: var(--pink-light); border: 1px solid rgba(244,167,185,0.3); }
.card-blue { background: var(--blue-light); border: 1px solid rgba(184,212,232,0.3); }
.card-white { background: var(--white); border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

/* ── SECTION LABELS ──────────────────────────────────────────── */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── IMAGE PLACEHOLDERS ──────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: var(--white);
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  line-height: 2;
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.newsletter-input {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.newsletter-input input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  color: var(--white);
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  outline: none;
}
.newsletter-input input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input button {
  padding: 10px 18px;
  background: var(--teal);
  border: none;
  border-radius: 30px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ── CONTAINERS ──────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
section { padding: 80px 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  section { padding: 50px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer { padding: 48px 20px 32px; }
}
