/* Variables */
:root {
  --primary-green: #2e7d32;
  --dark-green: #1b5e20;
  --brand-yellow: #fbc531;
  --light-bg: #fffde7;
  --white: #ffffff;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", "Noto Sans Kannada", sans-serif;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--dark-green);
}
a {
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background: var(--dark-green);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  color: var(--brand-yellow);
  font-size: 1.5rem;
  font-weight: bold;
}
.logo span {
  color: white;
  font-family: "Playfair Display", serif;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links a {
  color: white;
  font-weight: bold;
  transition: 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-yellow);
}
.hamburger {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Home Hero Section */
.hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  color: var(--brand-yellow);
  font-size: 3rem;
  margin-bottom: 1rem;
}
.kannada-font {
  font-family: "Noto Sans Kannada", sans-serif;
  font-size: 0.6em;
  color: #fff;
}
.btn-primary {
  background: var(--brand-yellow);
  color: var(--dark-green);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
}

/* NEW: Menu Page Hero Banner */
.menu-hero-bg {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1596797038530-2c107229654b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
}

.menu-hero-bg h1 {
  color: var(--brand-yellow);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}
.kannada-font-large {
  font-family: "Noto Sans Kannada", sans-serif;
  font-size: 1.5rem;
  color: white;
}

/* Home Page Preview Grid */
.section {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.menu-item-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.card-info {
  padding: 1.5rem;
}
.kan-sm {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-weight: normal;
  font-family: "Noto Sans Kannada", sans-serif;
}
.price {
  display: block;
  margin-top: 10px;
  color: var(--dark-green);
  font-weight: bold;
  font-size: 1.2rem;
}
.btn-large {
  background: var(--dark-green);
  color: var(--brand-yellow);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}
.btn-large:hover {
  background: #154518;
  transform: translateY(-3px);
}
/* ===============================
   GLOBAL STYLING FOR MENU PAGE
   =============================== */

/* :root {
  --brand-green: #5b442b;
  --brand-gold: #f48444;
  --brand-cream: #fff7e6;
  --soft-border: rgba(0, 0, 0, 0.08);
} */
/* :root {
  --brand-green: #1b5e20;
  --brand-gold: #f4b233;
  --brand-cream: #fff7e6;
  --soft-border: rgba(0, 0, 0, 0.08);
} */
:root {
  --brand-green: #1b5e20; /* Deep premium green */
  --brand-light-green: #2f8f3e; /* Hover green */
  --brand-gold: #f4b233; /* Accent */
  --brand-cream: #fff7e6; /* Background */
  --card-shadow: rgba(0, 0, 0, 0.15);
  --glow: rgba(46, 204, 113, 0.35);
}
/* :root {
  --brand-green: #008000;
  --brand-dark: #5b442b;
  --brand-orange: #f48444;
  --brand-cream: #fff8ed;
  --soft-shadow: rgba(0,0,0,0.12);
  --white: #ffffff;
} */

/* Wrapper */
.menu-wrapper {
  padding: 3rem 0;
}

/* ===============================
   CATEGORY CARD
   =============================== */

.menu-category {
  background: var(--brand-cream);
  border-radius: 16px;
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 170, 50, 0.3);
}

/* ==========================================
   MODERN CATEGORY BANNER (LEFT TITLE + RIGHT IMAGE)
   ========================================== */

/* =====================================================
   EXTRAORDINARY PREMIUM CATEGORY BANNER (WAVE + GLASS)
   ===================================================== */

.cat-banner-pro {
  position: relative;
  background: linear-gradient(135deg, #008000, #0a9f4a);
  padding: 3rem 2.5rem;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* LEFT TEXT SECTION */
.cat-banner-content {
  z-index: 2;
}

.cat-banner-content h3 {
  color: white;
  font-size: 2.6rem;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

/* GOLD LINE */
.gold-line {
  width: 120px;
  height: 4px;
  background: var(--brand-orange);
  margin-top: 12px;
  border-radius: 3px;
}

/* RIGHT IMAGE: FLOATING GLASS CARD */
.cat-banner-photo {
  width: 200px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 3;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: 0.4s ease;
}

.cat-banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Hover Zoom */
.cat-banner-photo:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* WAVE SHAPE BACKGROUND */
.wave-shape {
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 350px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .cat-banner-pro {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .cat-banner-photo {
    margin-top: 1.5rem;
    width: 100%;
    height: 180px;
  }

  .cat-banner-content h3 {
    font-size: 2rem;
  }

  .gold-line {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===============================
   PREMIUM DARK-GREEN MENU ITEMS
   =============================== */

/* Menu Grid */
.menu-grid-list {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  gap: 22px 40px;
}

/* Each Item */
.m-item {
  background: var(--brand-green);
  padding: 16px 18px;
  border-left: 4px solid white;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

/* Premium Hover Effect */
.m-item:hover {
  background: white;
  color: white !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-left-color: var(--brand-gold);
}

/* Title */
.m-item h4 {
  margin: 0;
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

/* Kannada text */
.m-item .kan {
  font-family: "Noto Sans Kannada", sans-serif;
  font-size: 0.95rem;
  margin-top: 4px;
  color: var(--brand-gold);
  transition: 0.3s;
}
.m-item small {
  font-family: "Noto Sans Kannada", sans-serif;
  font-size: 0.95rem;
  margin-top: 4px;
  color: var(--brand-gold);
  transition: 0.3s;
}

/* Price */
.m-item strong {
  position: absolute;
  right: 18px;
  top: 20px;
  color: var(--brand-gold);
  font-size: 1.25rem;
  font-weight: 700;
  transition: 0.3s;
}

/* Hover → Text turns white */
.m-item:hover h4,
.m-item:hover strong,
.m-item:hover small,
.m-item:hover .kan {
  color: var(--brand-green) !important;
}

/* Contact Page */
.contact-wrapper {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}
.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  text-align: left;
}
.info-row i {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
}
.map-container {
  margin-top: 2rem;
  border: 2px solid #ccc;
}

/* Footer */
footer {
  background: var(--dark-green);
  color: white;
  padding: 2rem;
  text-align: center;
  margin-top: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: var(--dark-green);
    padding: 20px;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .menu-grid-list {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .menu-hero-bg h1 {
    font-size: 2.5rem;
  }
}
