/* LOLO's Bake — Style Sheet */

:root {
  --pink: #e8a0b4;
  --pink-dark: #d4788f;
  --pink-light: #f5d6e0;
  --cream: #fff8f0;
  --mint: #b8d8c8;
  --mint-dark: #8cbca4;
  --chocolate: #5a3a2a;
  --text: #3d2c2a;
  --text-light: #7a6563;
  --white: #ffffff;
  --bg-cream: #fdf6ed;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, .logo {
  font-family: 'Playfair Display', serif;
}

.accent { color: var(--pink-dark); }

.text-center { text-align: center; }

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ── Language Toggle ── */
.lang-toggle {
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 1000;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  box-shadow: var(--shadow);
}

.lang-btn {
  background: none;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 6px;
  color: var(--text-light);
  transition: var(--transition);
}

.lang-btn.active { color: var(--pink-dark); }

.lang-sep { color: #ddd; font-size: 0.8rem; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--chocolate);
  text-decoration: none;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-dark);
  transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--pink-dark); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 50%, var(--mint) 100%);
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-primary:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--pink-dark);
  border-color: var(--pink-dark);
}

.btn-secondary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-img-placeholder {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--mint) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-img-placeholder i {
  font-size: 5rem;
  opacity: 0.7;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: auto; }

/* ── Story ── */
.story {
  background: var(--bg-cream);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.story-img-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mint) 0%, var(--pink-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--chocolate);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.story-img-placeholder i { font-size: 4rem; color: var(--pink-dark); }

.story-p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

.story-signature {
  margin-top: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink-dark);
  font-size: 1.1rem;
}

/* ── Products ── */
.products {
  background: var(--white);
}

.badge-legend {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-green { background: #d4edda; color: #155724; }
.badge-orange { background: #fff3cd; color: #856404; }
.badge-purple { background: #e8d5f5; color: #6c2d9b; }
.badge-blue { background: #d1ecf1; color: #0c5460; }
.badge-pink { background: #f8d7da; color: #721c24; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-img {
  height: 160px;
  background: linear-gradient(135deg, var(--pink-light), var(--mint));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pink-dark);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--chocolate);
}

.product-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.products-cta {
  margin-top: 60px;
}

.products-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

/* ── Testimonials ── */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-avatar {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 12px;
}

.testimonial-stars {
  color: #f4c542;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--chocolate);
  font-size: 0.9rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--pink-dark);
}

/* ── Delivery ── */
.delivery {
  background: var(--white);
}

.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.delivery-img-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mint) 0%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--chocolate);
}

.delivery-img-placeholder i { font-size: 4rem; color: var(--mint-dark); }

.delivery-p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

.delivery-zones {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.zone-tag {
  background: var(--mint);
  color: var(--chocolate);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ── Footer ── */
.footer {
  background: var(--chocolate);
  color: var(--cream);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

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

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-link {
  display: block;
  color: var(--pink-light);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-link i { margin-right: 8px; }

.footer-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--pink-light);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .lang-toggle { top: 12px; right: 16px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow);
  }

  .nav-links.active { display: flex; }

  .mobile-menu-btn { display: block; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
  }

  .hero-title { font-size: 2.8rem; }
  .hero-description { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }

  .hero-img-placeholder {
    width: 250px;
    height: 250px;
    font-size: 1rem;
  }
  .hero-img-placeholder i { font-size: 3rem; }

  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }

  .story-content,
  .delivery-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }

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

  .badge-legend { gap: 6px; }
  .badge { font-size: 0.7rem; padding: 4px 10px; }
}
