/* ========== GENERAL STYLES ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root color variables */
:root {
  --primary-dark: #1a1a1a;
  /* Black/Dark */
  --primary: #2a2a2a;
  /* Dark Gray */
  --secondary: #ffa500;
  /* Bright Orange-Gold */
  --accent: #ffb520;
  /* Accent Gold */
  --light-bg: #f5f5f5;
  /* Light Gray */
  --text-dark: #1a1a1a;
  /* Dark text */
  --text-light: #555555;
  /* Medium gray text */
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading styles */
h1,
h2,
h3 {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--primary-dark);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Link styles */
a {
  text-decoration: none;
  color: var(--primary-dark);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

/* ========== NAVIGATION BAR ========== */

.navbar {
  position: sticky;
  top: 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar-logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--light-bg);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.navbar-logo a:hover {
  color: var(--secondary);
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item .nav-link {
  color: var(--light-bg);
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-item .nav-link:hover::after,
.nav-item .nav-link.active::after {
  width: 100%;
}

.nav-item .nav-link.active {
  color: var(--secondary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background-color: var(--light-bg);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ========== RESPONSIVE HAMBURGER ========== */

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 10px 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
  }
}

/* ========== HERO SECTION ========== */

.hero {
  position: relative;
  height: 600px;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.64) 0%,
      rgba(20, 20, 20, 0.72) 100%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 180, 60, 0.14) 0%,
      transparent 60%
    );
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Georgia", serif;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light-bg);
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-style: italic;
}

.hero-kannada {
  font-size: 1.8rem;
  color: var(--secondary);
  margin: 15px 0;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--secondary);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(196, 168, 90, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: var(--accent);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(196, 168, 90, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== ABOUT SECTION ========== */

.about {
  padding: 80px 0;
  background-color: #f8f5ef;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-subtitle-kannada {
  text-align: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 30px;
  font-weight: 600;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

@media screen and (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

/* ========== FEATURED DISHES SECTION ========== */

.featured {
  padding: 80px 0;
  background-color: var(--white);
}

.highlights {
  padding: 80px 0;
  background-color: #fdf8f1;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
}

.highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.highlight-content {
  padding: 24px;
}

.highlight-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.highlight-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.dish-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.dish-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.dish-card:hover .dish-image img {
  transform: scale(1.1);
}

.dish-info {
  padding: 25px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.dish-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.dish-info p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.price {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

/* ========== CTA SECTION ========== */

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.cta-content p {
  color: var(--light-bg);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button-secondary {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--secondary);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(196, 168, 90, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button-secondary:hover {
  background-color: var(--accent);
  color: var(--text-dark);
  transform: scale(1.05);
}

/* ========== FOOTER ========== */

.footer {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: var(--light-bg);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--secondary);
  margin-bottom: 20px;
}

.footer-section p {
  color: var(--light-bg);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--light-bg);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  color: var(--light-bg);
  padding: 8px 15px;
  border: 2px solid var(--secondary);
  border-radius: 20px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-link:hover {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--light-bg);
}

/* ========== MENU PAGE STYLES ========== */

.menu-header {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  background-image:
    linear-gradient(
      135deg,
      rgba(93, 31, 38, 0.9) 0%,
      rgba(139, 58, 66, 0.9) 100%
    ),
    url("img/menu.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
}

.header-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
}

.menu-kannada {
  color: var(--secondary);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 10px 0;
}

.header-content p {
  color: var(--light-bg);
  font-size: 1.2rem;
}

.menu-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

/* MENU FILTER SECTION */
.menu-filter-section {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--secondary);
}

.filter-header {
  margin-bottom: 25px;
  text-align: center;
}

.filter-header h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin: 0;
}

.search-input {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 25px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: #f9f9f9;
}

.search-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
  background-color: var(--white);
}

.search-input::placeholder {
  color: #999;
}

/* Filter Buttons */
.filter-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--light-bg);
  color: var(--primary-dark);
  border: 2px solid transparent;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

/* Diet Filters */
.diet-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.diet-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  color: var(--primary-dark);
}

.diet-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--secondary);
}

.diet-checkbox span {
  user-select: none;
}

/* MENU CATEGORY */
.menu-category {
  margin-bottom: 70px;
  animation: fadeInUp 0.6s ease-out;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.98),
    rgba(31, 31, 31, 0.98)
  );
  border-left: 6px solid var(--secondary);
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.category-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.08), transparent);
  pointer-events: none;
}

.category-image {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid var(--secondary);
  box-shadow: 0 10px 28px rgba(255, 165, 0, 0.18);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.category-image:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 16px 36px rgba(255, 165, 0, 0.25);
}

.category-title {
  text-align: left;
  font-size: 2rem;
  color: var(--primary-dark);
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: 700;
  z-index: 1;
  letter-spacing: 0.5px;
}

.category-header .category-title {
  color: var(--white);
}

.menu-category > .category-title {
  display: inline-block;
  margin: 35px 0 18px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  color: var(--primary-dark);
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* MENU TABLE STYLES */
.menu-table {
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  padding: 12px;
}

.menu-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 12px 16px;
  font-size: 0.95rem;
}

.menu-table thead,
.menu-table th {
  display: none;
}

.menu-table tbody {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-table td {
  padding: 0;
  border: none;
  color: var(--white);
}

.menu-table tbody tr {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border-left: 5px solid var(--secondary);
  border-radius: 14px;
  padding: 22px 26px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.menu-table tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 165, 0, 0.05),
    rgba(255, 181, 32, 0.03)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.menu-table tbody tr:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 165, 0, 0.15);
  background: linear-gradient(135deg, #333333, #242424);
  border-left-color: var(--accent);
}

.menu-table tbody tr:hover::before {
  opacity: 1;
}

.menu-table tbody tr td:nth-child(1) {
  grid-column: 1;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  z-index: 1;
}

.menu-table tbody tr td:nth-child(2) {
  grid-column: 1;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  z-index: 1;
}

.menu-table tbody tr td:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: end;
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  z-index: 1;
}

.menu-table tbody tr td {
  padding: 0;
}

/* MENU ITEMS GRID */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* MENU ITEM CARD */
.menu-item {
  background: var(--white);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.item-photo {
  width: 100%;
  height: 145px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
  display: block;
  border: 2px solid #f7f2e8;
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 165, 0, 0.15);
  border-left-color: var(--secondary);
}

/* Item Badge */
/* Item Badge */
.item-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  line-height: 1;
}

.item-badge.vegetarian {
  background-color: #4caf50;
  color: #fff;
}

.item-badge.non-vegetarian {
  background-color: #ff6b6b;
  color: #fff;
}

.item-badge.restaurant-special {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #333;
}

/* Item Header */
.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 15px;
  padding-right: 105px;
  /* space reserved for badge */
}

.item-name-section {
  flex: 1;
  min-width: 0;
}

.item-name-section h3 {
  margin: 0 0 6px;
}

.item-kannada {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  margin: 0;
}

.item-header .price {
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.35rem;
  white-space: nowrap;
  padding: 8px 14px;
  background-color: rgba(255, 165, 0, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
  line-height: 1;
}

/* Item Meta */
.item-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.spice-level {
  font-size: 1rem;
  font-weight: 600;
}

.prep-time {
  font-size: 0.85rem;
  color: #666;
  white-space: nowrap;
}

/* Hidden state for filtering */
.menu-item.hidden {
  display: none;
}

/* ========== CONTACT PAGE STYLES ========== */

.contact-header {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  background-image:
    linear-gradient(
      135deg,
      rgba(93, 31, 38, 0.9) 0%,
      rgba(139, 58, 66, 0.9) 100%
    ),
    url("img/contact.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
}

.contact-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.info-box {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.info-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.info-box h3 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.info-box p {
  color: var(--text-light);
  line-height: 1.8;
}

.info-box a {
  color: var(--primary-dark);
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.info-box a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.social-links-contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.info-box a.social-link-contact {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--primary-dark);
  color: var(--light-bg);
  border-radius: 20px;
  transition: var(--transition);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: none;
}

.info-box a.social-link-contact:hover {
  background-color: var(--secondary);
  color: var(--text-dark);
  transform: scale(1.05);
}

/* Contact Form */
.contact-form-wrapper h2 {
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0d5c7;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--light-bg);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 168, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(93, 31, 38, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(93, 31, 38, 0.4);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--white);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Reservation CTA */
.reservation-cta {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.reservation-cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.reservation-cta p {
  color: var(--light-bg);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 25px;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .cta-button,
  .cta-buttons .cta-button-secondary {
    width: 100%;
  }
}

/* ========== RESPONSIVE DESIGN ========== */

@media screen and (max-width: 1024px) {
  .menu-items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .category-title {
    font-size: 1.8rem;
  }

  .dish-grid,
  .menu-items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media screen and (max-width: 768px) {
  /* General */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    height: 400px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Menu Filter Section */
  .menu-filter-section {
    padding: 20px;
    margin-bottom: 35px;
  }

  .filter-header h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .filter-buttons-wrapper {
    gap: 10px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .diet-filters {
    gap: 15px;
    font-size: 0.9rem;
  }

  .search-input {
    font-size: 1rem;
    /* Prevents zoom on iOS */
    padding: 14px;
  }

  /* Menu Items Grid */
  .menu-items {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .item-header .price {
    align-self: flex-start;
    font-size: 1.2rem;
    padding: 8px 12px;
  }

  .item-name {
    font-size: 1.1rem;
  }

  .item-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .item-meta {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
  }

  .category-title {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  /* Sections */
  .about,
  .featured,
  .menu-section,
  .contact-section {
    padding: 50px 0;
  }

  /* Dishes Grid */
  .dishes-grid,
  .menu-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Contact Form */
  .contact-form {
    padding: 20px;
  }

  /* Menu Header */
  .menu-header,
  .contact-header {
    padding: 60px 20px;
  }

  .header-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .header-content p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 15px;
  }

  /* Nav Bar */
  .navbar-container {
    height: 60px;
  }

  .navbar-logo a {
    font-size: 1.3rem;
  }

  /* Hero */
  .hero {
    height: 300px;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .cta-button,
  .cta-button-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  /* Menu Filter Styles for Small Phones */
  .menu-filter-section {
    padding: 15px;
    gap: 15px;
  }

  .filter-header {
    margin-bottom: 15px;
  }

  .filter-header h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .search-input {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
    margin-bottom: 15px;
  }

  .filter-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
  }

  .diet-filters {
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
  }

  .diet-filters label {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Menu Items Grid - Single Column */
  .menu-items {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-item {
    background: var(--white);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 12px;
  }

  .item-name-section {
    flex: 1;
    min-width: 0;
  }

  .item-name-section h3 {
    margin: 0 0 6px;
  }

  .item-kannada {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 0;
  }

  .item-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
  }

  .item-header .price {
    display: inline-block;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.35rem;
    white-space: nowrap;
    padding: 8px 14px;
    background-color: rgba(255, 165, 0, 0.12);
    border-radius: 10px;
    line-height: 1;
  }

  .item-badge.vegetarian {
    background-color: #4caf50;
    color: white;
  }

  .item-badge {
    position: static;
    /* 🔥 THIS FIXES EVERYTHING */
    margin-left: 8px;
  }

  .item-header {
    padding-right: 70px;
    /* 🔥 create space for badge */
  }

  .item-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .spice-level,
  .prep-time {
    padding: 4px 8px;
  }

  .category-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  /* Sections */
  .about,
  .featured,
  .menu-section,
  .contact-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  /* Cards */
  .dish-card,
  .menu-item,
  .info-box {
    padding: 15px;
  }

  .dish-image {
    height: 180px;
  }

  /* Contact Form */
  .contact-form {
    padding: 15px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* Footer */
  .footer {
    padding: 40px 0 15px;
  }

  .social-links,
  .social-links-contact {
    flex-direction: column;
  }

  .social-link,
  .social-link-contact {
    width: 100%;
    text-align: center;
  }

  .about-content {
    gap: 20px;
  }

  /* Contact Wrapper */
  .contact-wrapper {
    gap: 30px;
  }
}

/* Additional smooth transitions */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

/* Print styles */
@media print {
  .navbar,
  .cta-section,
  .footer {
    display: none;
  }

  body {
    color: var(--text-dark);
    background-color: var(--white);
  }
}
