:root {
  --purple-dark: #4b1231;
  --purple-mid: #6a1f44;
  --purple-light: #8c3b63;
  --gold: #d6b36a;
  --cream: #f5efe6;
  --text-dark: #3b2b2b;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ================= HEADER ================= */
header {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(75, 18, 49, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

/* Mobile menu toggle */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 5px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: linear-gradient(rgba(75, 18, 49, 0.72), rgba(43, 7, 24, 0.75)), 
              url("assets/round final design.png") center/contain no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 60px;
  color: #fff;
  min-height: fit-content;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  color: #f3e8d2;
  letter-spacing: 1px;
}

.hero p {
  margin-top: 30px;
  font-size: clamp(16px, 2.5vw, 22px);
  color: #f3e8d2;
  line-height: 1.6;
  font-weight: 300;
}

.cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--purple-dark);
  text-decoration: none;
  border-radius: 35px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(214, 179, 106, 0.3);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 179, 106, 0.4);
  background: #e8c77d;
  color: var(--purple-dark);
}

.hero-images {
  position: relative;
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-images img {
  max-width: 100%;
  height: auto;
}

.bottle {
  width: 200px;
  position: absolute;
  left: 60px;
  bottom: 20px;
  z-index: 10;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.pot {
  width: 320px;
  margin-left: 40px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* ================= ABOUT ================= */
.about {
  padding: 100px 60px;
  background: 
    linear-gradient(135deg, rgba(245, 239, 230, 0.95), rgba(244, 235, 220, 0.95)),
    url("assets/texture-paper.png") center/cover repeat;
}

.about h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--purple-mid);
  margin-bottom: 30px;
}

.about p {
  max-width: 900px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.9;
  color: var(--text-dark);
  font-weight: 400;
}

/* ================= QUALITY ================= */
.quality {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-light) 100%);
  color: #fff;
  padding: 100px 60px;
}

.quality h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 50px;
  text-align: center;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-item {
  background: rgba(255, 255, 255, 0.12);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.quality-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* ================= QUALITY STRIP ================= */
.quality-strip {
  background:
    linear-gradient(135deg, rgba(75, 18, 49, 0.88) 0%, rgba(106, 31, 68, 0.88) 100%),
    url("assets/ayush.png") center/cover no-repeat;
  padding: 50px 70px;
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  align-items: center;
  gap: 40px;
  color: var(--cream);
}

/* LEFT BRAND BLOCK */
.quality-brand {
  text-align: left;
}

.quality-brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 6px;
  letter-spacing: 1px;
  color: var(--gold);
}

.badge {
  display: inline-block;
  background: rgba(245, 239, 230, 0.95);
  color: var(--purple-dark);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.fssai {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.95;
}

/* RIGHT CONTENT */
.quality-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 16px;
}

.quality-point {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 500;
}

.quality-point strong {
  display: block;
  color: #fff;
  font-weight: 600;
}

.quality-point span {
  display: block;
  font-size: 13px;
  opacity: 0.95;
  margin-top: 4px;
}

/* ================= FOOTER ================= */
footer {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  color: #fff;
  padding: 60px 60px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .quality-strip {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .quality-brand h1 {
    font-size: 34px;
  }

  .quality-points {
    grid-template-columns: 1fr;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

footer p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
}

/* ================= MOBILE OPTIMIZATIONS ================= */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .logo {
    font-size: 24px;
  }

  nav {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 20px 0;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero p {
    font-size: 16px;
    margin-top: 20px;
  }

  .cta {
    padding: 14px 28px;
    font-size: 14px;
    margin-top: 30px;
  }

  .hero-images {
    height: 280px;
  }

  .bottle {
    width: 120px;
    left: 20px;
  }

  .pot {
    width: 200px;
    margin-left: 10px;
  }

  .about,
  .quality {
    padding: 60px 20px;
  }

  .about h3,
  .quality h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    padding: 40px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  header {
    padding: 18px 40px;
  }

  .hero {
    padding: 80px 40px;
  }

  .hero-content {
    gap: 60px;
  }

  .about,
  .quality {
    padding: 80px 40px;
  }

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

  footer {
    padding: 50px 40px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .logo {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .hero p {
    font-size: 15px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .about h3,
  .quality h3 {
    font-size: 24px;
  }

  .about p {
    font-size: 15px;
  }

  .quality-item {
    padding: 30px 20px;
    font-size: 16px;
  }
}
