@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Cormorant+Garamond:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');

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

body {
  font-family: 'Cormorant Garamond', serif;
  background: #FAF7F2;
  color: #4B1F3D;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
  background: #F5EDE3;
  padding: 0.5rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(75, 31, 61, 0.06);
  border-bottom: 1px solid rgba(75, 31, 61, 0.06);
  transition: box-shadow 0.3s ease;
}

.header-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 101;
}

.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  gap: 2.8rem;
  list-style: none;
  align-items: center;
}

nav a {
  color: #4B1F3D;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4B1F3D, #A78CA1);
  transition: width 0.3s ease;
}

nav a:hover {
  color: #A78CA1;
}

nav a:hover::after {
  width: 100%;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #4B1F3D;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, rgba(75, 31, 61, 0.75) 0%, rgba(107, 61, 90, 0.75) 50%, rgba(75, 31, 61, 0.75) 100%),
              url('../assets/logo-wetta.png') center 12% / 55% no-repeat;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding: 3rem 1.5rem 5rem;
  text-align: center;
  color: white;
  box-shadow: 0 4px 20px rgba(75, 31, 61, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  display: inline-block;
  background: white;
  color: #4B1F3D;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -80px;
}

/* ==========================================================================
   CONTAINER & SECTIONS
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #4B1F3D;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: linear-gradient(135deg, rgba(75, 31, 61, 0.95) 0%, rgba(107, 61, 90, 0.95) 100%);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
  color: white;
  box-shadow: 0 -4px 20px rgba(75, 31, 61, 0.15);
}

footer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #F5EDE3;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 2.5rem;
    box-shadow: -4px 0 20px rgba(75, 31, 61, 0.15);
    transition: right 0.4s ease;
  }

  nav ul.active {
    right: 0;
  }

  nav a {
    font-size: 1.3rem;
  }

  .hero {
    min-height: 460px;
    padding: 2.5rem 1.2rem 3.5rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
  }

  .logo img {
    height: 75px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.6rem 1rem;
  }

  .hero {
    min-height: 400px;
    padding: 2rem 1rem 3rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Hero Logo */
.hero-logo {
  max-width: 400px;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 280px;
    margin-bottom: 1.5rem;
  }
}