:root {
     --primary-red: #8B1E1E;        /* deep premium red */
  --primary-red-dark: #5E1414;

  /* BACKGROUNDS */
  --bg-cream: #FAF6EF;           /* main background */
  --bg-warm: #F3E8DA;            /* section alt */
  --bg-white: #FFFFFF;

  /* ACCENTS */
  --accent-saffron: #E07A2D;     /* warm orange */
  --accent-gold: #C8962B;        /* premium gold */
  --accent-green: #4C7A3D;       /* subtle natural green */

  --crimson: #a81717;          /* same as primary-red */
  --gold: #dea731;
  --cream: #FAF6EF;
  --dark: #2B1A12;
  --warm-white: #FAF6EF;
  --spice-orange: #E07A2D;
  /* TEXT */
  --text-dark: #2B1A12;
  --text-muted: #6B5C4E;

  /* BORDERS */
  --border-light: rgba(0,0,0,0.08);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Raleway', sans-serif;
    background: var(--warm-white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
/* NAVBAR BASE */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6%;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LOGO */
.nav-logo img {
  height: 56px;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

/* LINKS */
.nav-menu a {
  text-decoration: none;
  font-size: 0.89rem;
  font-weight: 600;
  color: #2B1A12;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-red);
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  padding: 10px 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.8rem;
  color: #444;
}

.dropdown-menu a:hover {
  background: #f8f5ef;
  color: var(--primary-red);
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* RIGHT BUTTON */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-btn {
  background: var(--primary-red);
  color: white;
  padding: 10px 20px;
  font-size: 0.75rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--primary-red-dark);
}
.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary-red);
  bottom: -4px;
  left: 0;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}
.page-header {
  padding: 120px 8% 60px;
  text-align: center;
  background: #faf7f2;
}

.page-header h1 {
  font-size: 3rem;
  color: #8B0000;
}

/* HERO SECTION */
.spices-hero {
  height: 100vh;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 0 8%;
  overflow: hidden;

  /* PARALLAX EFFECT */
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.25),
      rgba(250,246,239,0.18)
    ),
    url('assets/spicesbg.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* THIS MAKES IMAGE MOVE ON SCROLL */
  background-attachment: fixed;
}

/* SOFT REALISTIC BOTTOM FADE */
.spices-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 140px;

  background: linear-gradient(
    to bottom,
    rgba(250,246,239,0),
    rgba(250,246,239,0.82),
    var(--warm-white)
  );

  z-index: 1;
  pointer-events: none;
}
.spice-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.spice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.spice-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* DARK FADE OVERLAY */
.spice-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.05)
  );
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

/* HOVER EFFECT */
.spice-card:hover .spice-img {
  transform: scale(1.08);
}

.spice-card:hover .spice-img::after {
  opacity: 0.4;
}

.spice-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.spice-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 10px 0 16px;
  line-height: 1.6;
}

.spices-content {
  max-width: 800px;
  z-index: 2;
  animation: fadeUp 1s ease;
}

/* HEADING */
.spices-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;

  font-style: italic;   /* FULL ITALIC */
  letter-spacing: 1px;
}

/* GOLD WORD */
.spices-content h1 em {
  color: var(--gold);
  font-style: italic;
}

/* PARAGRAPH */
.spices-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-top: 18px;
  font-style: italic;
}
/* HERO ITALIC */
.spices-content h1 em {
  color: var(--gold);
}

/* PREMIUM INFO AREA */
.spice-info {
  padding: 22px;
  background: white;
}

/* TAGS */
.size-tag {
  background: var(--primary-red);
  color: #fff;
  padding: 5px 12px;
  margin-right: 6px;
  font-size: 0.72rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 6px;
  transition: 0.3s;
  font-style: italic;    
}

.size-tag:hover {
  background: var(--gold);
  color: black;
}

/* SMOOTH ENTRY */
.spice-card {
  animation: fadeUp 0.8s ease;
}
/* TEXT CONTAINER */
.spices-content {
  max-width: 800px;
  z-index: 2;
}

/* TAG */
.spices-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  font-style: italic;
}

/* HEADING (reuse your hero style feel) */
.spices-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;        /* SAME as rice */
  font-weight: 800;
  line-height: 1.1;
  color: white;
}

.spices-content h1 em {
  color: var(--gold);
  font-style: normal;
}

/* DESCRIPTION */
.spices-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250,246,239,0.8);
  margin-bottom: 28px;


}
.spices-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
/* BUTTON ROW */
.spices-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}
/* GRID */
.spices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
  padding: 60px 8%;
}

/* CARD */
.spice-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.spice-card:hover {
  transform: translateY(-5px);
}

.spice-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.spice-info {
  padding: 20px;
}

.spice-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.spice-desc {
  font-size: 0.85rem;
  color: gray;
  margin: 10px 0;
}

.size-tag {
  background: #8B0000;
  color: #fff;
  padding: 4px 10px;
  margin-right: 5px;
  font-size: 0.75rem;
  border-radius: 20px;
}
.btn-primary {
  background: var(--primary-red);
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
}

/* outline button */
.btn-outline {
  border: 1.5px solid white;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: white;
  color: black;
}


footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #080808 100%);
  padding: 80px 8% 30px;
  color: rgba(250,245,236,0.65);
  position: relative;
  overflow: hidden;
}

/* subtle glow line */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  opacity: 0.5;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* BRAND */
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--cream);
}
.footer-brand .footer-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 320px;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(250,245,236,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  position: relative;
}

/* underline animation */
.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* NEWSLETTER */
.footer-newsletter input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: white;
  margin-bottom: 10px;
  outline: none;
}

.footer-newsletter button {
  width: 100%;
  padding: 10px;
  background: var(--gold);
  border: none;
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: var(--crimson);
  color: white;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(250,245,236,0.6);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: white;
  transform: translateY(-3px);
}
.footer-logo img {
  width: 140px;   /* adjust size */
  height: auto;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Responsive */
  @media (max-width: 1000px) {
    .drinks-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    .about, .why-inner, .contact { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { display: none; }
    .hero-content { max-width: 100%; padding: 0 6%; }
    nav { padding: 0 5%; }
    .nav-links { display: none; }
    .drinks-grid { grid-template-columns: 1fr 1fr; }
    .why-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  }
  @media (max-width: 480px) {
    .drinks-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
