/* ============================================
   Southern Spice - Indian Cuisine
   Main Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #C41E3A;
  --primary-dark: #8B1A1A;
  --primary-light: #E8485C;
  --secondary: #1B5E20;
  --secondary-light: #2E7D32;
  --gold: #D4A017;
  --gold-light: #F0C94B;
  --brown: #5D3A1A;
  --brown-light: #8B6914;
  --dark: #1a1210;
  --dark-overlay: rgba(26, 18, 16, 0.85);
  --cream: #FFF8F0;
  --off-white: #FAF5F0;
  --light-gray: #f5f0eb;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --header-height: 90px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header & Navigation (Bheema's Style - Single Bar) ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-main {
  padding: 0;
}

.nav-main .container {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.hours-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.5;
  border-left: 1px solid #e0d6cc;
  padding-left: 14px;
}

.hours-badge span {
  white-space: nowrap;
}

/* ---------- Open Now Ribbon (Bheema's Style) ---------- */
.open-now-ribbon {
  position: absolute;
  top: 100%;
  right: 40px;
  z-index: 100;
  width: 140px;
  text-align: center;
}

.open-now-ribbon .ribbon-body {
  background: linear-gradient(180deg, #d32f2f, #b71c1c);
  color: var(--white);
  padding: 12px 16px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
  position: relative;
}

.open-now-ribbon .ribbon-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #7f1010;
}

.open-now-ribbon .ribbon-body::after {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #7f1010;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Hero Section (Text on Right, Bheema's Style) ---------- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(26, 18, 16, 0.1) 0%,
    rgba(26, 18, 16, 0.25) 40%,
    rgba(26, 18, 16, 0.75) 70%,
    rgba(26, 18, 16, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 500px;
  padding: 40px;
  margin-left: auto;
  margin-right: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
  line-height: 1.15;
  font-style: italic;
  font-weight: 700;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.92;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ---------- Section Styles ---------- */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin: 16px auto 0;
  border-radius: 3px;
}

/* Inner pages - first section after header (no banner) */
.inner-page-section {
  margin-top: var(--header-height);
  padding-top: 50px;
}

/* ---------- Welcome Section ---------- */
.welcome {
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.welcome-text .highlight {
  color: var(--primary);
}

.welcome-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.welcome-text .signature {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 24px;
}

.welcome-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.welcome-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.welcome-image:hover img {
  transform: scale(1.05);
}

.welcome-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ---------- Features Section ---------- */
.features {
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.25);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- Popular Dishes Section ---------- */
.popular-dishes {
  background: var(--white);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dish-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.dish-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
}

.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-card-image img {
  transform: scale(1.1);
}

.dish-card-image .dish-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dish-card-body {
  padding: 20px;
}

.dish-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.dish-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.dish-card-body .dish-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* ---------- CTA / Parallax Section ---------- */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.cta-section .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.9), rgba(93, 58, 26, 0.85));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.cta-content .btn-primary:hover {
  background: var(--gold-light);
}

/* ---------- Gallery Section ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* ---------- About Page ---------- */
.about-content {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-values {
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ---------- Menu Page (Sidebar Layout - Bheema's Style) ---------- */
.menu-section {
  background: var(--white);
  padding-bottom: 60px;
}

.menu-page-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Left Sidebar */
.menu-sidebar {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.menu-sidebar .menu-search {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.menu-sidebar .menu-search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 2px solid #e0d6cc;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.menu-sidebar .menu-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.menu-sidebar .menu-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.menu-sidebar .clear-filter-btn {
  width: 100%;
  padding: 8px 14px;
  border: 1px solid #e0d6cc;
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.menu-sidebar .clear-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-btn {
  padding: 10px 16px;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
  white-space: nowrap;
  text-align: left;
}

.category-btn:hover {
  background: var(--off-white);
  border-left-color: var(--primary-light);
  color: var(--primary);
}

.category-btn.active {
  background: #fef2f2;
  border-left-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

/* Right Menu Content */
.menu-content {
  flex: 1;
  min-width: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-item-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.menu-item-image {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-image img {
  transform: scale(1.08);
}

.menu-item-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}

.badge-veg {
  width: 22px;
  height: 22px;
  border: 2px solid #2E7D32;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.badge-veg::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2E7D32;
}

.badge-nonveg {
  width: 22px;
  height: 22px;
  border: 2px solid #C41E3A;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.badge-nonveg::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C41E3A;
}

.menu-item-category {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(26, 18, 16, 0.75);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.menu-item-info {
  padding: 14px 16px;
}

.menu-item-info h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.menu-item-info .item-description {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.menu-item-tag {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

.tag-popular {
  background: #FFF3E0;
  color: #E65100;
}

.tag-spicy {
  background: #FFEBEE;
  color: #C62828;
}

.tag-chef {
  background: #F3E5F5;
  color: #6A1B9A;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.no-results p {
  font-size: 1.1rem;
}

/* ---------- Contact Page ---------- */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0d6cc;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  width: 100%;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-info > p {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-hours {
  background: var(--off-white);
  padding: 25px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.contact-hours h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-hours p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-about .footer-logo {
  height: 55px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  :root {
    --header-height: 75px;
  }

  .hero {
    height: 70vh;
  }

  .nav-main .container {
    height: var(--header-height);
  }

  .logo img {
    height: 55px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 30px 30px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    gap: 5px;
    z-index: 999;
    margin-left: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-right {
    gap: 10px;
  }

  .hours-badge,
  .social-links {
    display: none;
  }

  .open-now-ribbon {
    right: 15px;
    width: 110px;
  }

  .open-now-ribbon .ribbon-body {
    padding: 8px 12px 10px;
    font-size: 0.78rem;
  }

  .hero-content {
    margin-right: 0;
    padding: 30px 20px;
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-overlay {
    background: rgba(26, 18, 16, 0.55);
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .welcome-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .welcome-image img,
  .about-image img {
    height: 300px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item {
    height: 160px;
  }

  /* Menu sidebar becomes top bar on mobile */
  .menu-page-layout {
    flex-direction: column;
  }

  .menu-sidebar {
    width: 100%;
    position: static;
  }

  .menu-categories {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .category-btn {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 8px 16px;
    white-space: nowrap;
    font-size: 0.8rem;
  }

  .category-btn.active {
    border-left-color: transparent;
    border-bottom-color: var(--primary);
  }

  .category-btn:hover {
    border-left-color: transparent;
    border-bottom-color: var(--primary-light);
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .contact-form {
    padding: 25px;
  }

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

  .cta-section {
    background-attachment: scroll;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Mobile Nav Overlay ---------- */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
