:root {
  --primary: #4a1942;
  --secondary: #7a2f6e;
  --accent: #d4a5c9;
  --lavender: #c9b6e4;
  --background: #faf3ec;
  --text: #2b1a27;
  --cream: #f5e9df;
}

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

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

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

img { max-width: 100%; display: block; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { box-shadow: 0 10px 20px rgba(74,25,66,0.3); }

.btn-secondary { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }

.btn-white { background: #fff; color: var(--primary); }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--background);
  padding: 18px 5%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--primary);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 300px; }
.tag {
  display: inline-block;
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-text h1 span { display: block; font-size: 4rem; }
.hero-text p { font-size: 1.1rem; margin-bottom: 30px; max-width: 420px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { flex: 1; min-width: 300px; position: relative; }
.hero-image img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  max-height: 520px;
}

/* FEELINGS PANEL */
.feelings-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, var(--lavender), var(--accent));
  padding: 60px 8%;
  flex-wrap: wrap;
}
.feelings-text h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 16px; }
.feelings-text p { max-width: 400px; }
.feelings-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

/* WHY CHOOSE US */
.why-us { padding: 80px 5%; text-align: center; max-width: 1200px; margin: 0 auto; }
.why-us h2 { font-size: 2rem; color: var(--primary); margin-bottom: 50px; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.why-card {
  background: var(--cream);
  padding: 36px 24px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.why-card:hover { transform: translateY(-8px); }
.why-card i { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; }

/* ABOUT */
.about {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-text { flex: 1; min-width: 300px; }
.about-text h2 { font-size: 2.4rem; color: var(--primary); margin-bottom: 16px; }
.about-intro { font-style: italic; margin-bottom: 12px; }
.about-collage { flex: 1; min-width: 300px; position: relative; padding: 30px; }
.collage-main { border-radius: 16px; width: 100%; max-width: 340px; }
.collage-polaroid {
  position: absolute;
  width: 160px;
  border-radius: 10px;
  border: 6px solid #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  top: 10px;
  right: 0;
}
.collage-label {
  position: absolute;
  background: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.label-1 { top: 0; right: 40px; }
.label-2 { bottom: 60px; left: 0; }
.label-3 { bottom: 0; right: 60px; }

/* PRODUCTS */
.products { padding: 80px 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
.products h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 50px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.product-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }
.product-card img { height: 260px; width: 100%; object-fit: cover; }
.product-card h3 { padding: 16px 20px 4px; font-size: 1.1rem; }
.product-card p { padding: 0 20px; font-size: 0.9rem; color: #666; }
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 20px;
}
.price { font-weight: 600; color: var(--primary); }
.btn-order {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.btn-order:hover { background: var(--secondary); }

/* GALLERY */
.gallery { padding: 60px 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
.gallery h2 { font-size: 2rem; color: var(--primary); margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* CUSTOM CTA */
.custom-cta {
  position: relative;
  padding: 100px 5%;
  text-align: center;
  overflow: hidden;
}
.custom-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  z-index: 0;
}
.custom-cta-content { position: relative; z-index: 1; color: #fff; max-width: 600px; margin: 0 auto; }
.custom-cta-content h2 { font-size: 2.8rem; margin-bottom: 20px; }
.custom-cta-content p { margin-bottom: 30px; }

/* QUOTE BAND */
.quote-band {
  background: linear-gradient(135deg, var(--lavender), var(--accent));
  padding: 70px 5%;
  text-align: center;
}
.quote-band p {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  font-style: italic;
}

/* FINAL CTA */
.final-cta { padding: 90px 5%; text-align: center; }
.final-cta h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 30px; }
.final-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.contact-info { font-weight: 500; }
.contact-info i { color: #25D366; margin-right: 8px; }

/* FOOTER */
.footer {
  background: var(--primary);
  color: #f2e8ee;
  text-align: center;
  padding: 60px 5% 30px;
}
.footer-logo {
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.footer-links a { color: #f2e8ee; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; justify-content: center; gap: 20px; font-size: 1.3rem; margin-bottom: 24px; }
.footer-social a { color: #f2e8ee; }
.footer-social a:hover { color: var(--accent); }
.footer-bottom { font-size: 0.8rem; opacity: 0.7; }

/* ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text h1 span { font-size: 2.8rem; }
  .about-collage { padding: 60px 0 0; }
  .collage-polaroid { position: static; margin-top: 16px; }
  .collage-label { position: static; display: inline-block; margin: 6px; }
  .custom-cta-content h2 { font-size: 2rem; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}