 :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%;
}

/* HERO */
.rice-hero {
  height: 100vh;
  width: 100%;

  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('assets/ricebg.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
    height: calc(100vh - 70px);
}

.rice-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: linear-gradient(to bottom, transparent, var(--bg-cream));
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
}

/* optional line under tag */
.section-tag::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 6px auto 0;
}

/* TITLE */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

/* GOLD ACCENT WORD */
.section-title em {
  color: var(--crimson);
  font-style: normal;
}
.rice-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
}

.rice-hero em {
  color: var(--gold);
}
.rice {
   padding: 80px 8%;
  margin-top: 0;
}
/* HEADER */
.rice-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}
.rice-hero-content {
  max-width: 800px;
}

.rice-hero .hero-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.rice-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
}

.rice-hero p {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 12px;
}
.rice-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* GRID */
.rice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* CARD */
.rice-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26,10,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}
.rice-img{
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease;
}

.rice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(26,10,0,0.15);
}

.rice-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}

/* BADGE */
.rice-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--crimson);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 2;
}

.rice-badge.gold {
  background: var(--gold);
  color: #2B1A12;
}

/* BODY */
.rice-body {
  padding: 22px 24px;
}

/* TYPE */
.rice-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

/* NAME */
.rice-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

/* DESC */
.rice-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* META TAGS */
.rice-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rice-meta span {
  background: var(--cream);
  padding: 5px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 2px;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

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; }
  }

 