/* ============================================
   FLAVOURS OF PUNJAB - Main Stylesheet
   Indian Punjabi Restaurant - Senigallia, Italy
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');

/* ============ CSS Variables ============ */
:root {
  --saffron: #EABE48;
  --saffron-light: #fae78b;
  --gold: #fae78b;
  --gold-light: #F0D060;
  --cream: #FFF8F0;
  --dark-bg: #1A0A00;
  --dark-card: #2D1500;
  --text-dark: #1A0A00;
  --text-medium: #4A2800;
  --text-light: #7A5500;
  --white: #FFFFFF;
  --nav-height: 80px;
  --border-gold: 1px solid rgba(212, 175, 55, 0.4);
  --shadow-warm: 0 8px 32px rgba(139, 0, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============ Scrollbar ============ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--saffron);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ============ Typography ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-bg);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--saffron);
}

.section-subtitle {
  text-align: center;
  color: #0D0500;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1rem auto 2.5rem;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider-ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider-ornament .ornament-icon {
  color: var(--saffron);
  font-size: 1.3rem;
}

/* ============ Utility ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 90px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #fae78b, #FFCB00) !important;
  color: #000 !important;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-bg);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* ============ Navbar ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  padding: 0 30px;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  /* width: 50px;
  height: 50px;
   background-image: url("../assets/images/logo.png");
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 3px 15px rgba(255,107,0,0.4); */
}

.logo-text h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 5px;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, #fae78b, #ffd632) !important;
  color: #000 !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, #ffd632, #fae78b) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ Mobile Menu ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  background: rgba(26, 10, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  flex-direction: column;
  gap: 5px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  display: block;
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.mobile-menu .nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--gold)) !important;
  color: white !important;
  text-align: center;
  margin-top: 10px;
  border-radius: 50px !important;
  padding: 12px 20px !important;
}

/* ============ Hero Carousel ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.carousel-slide.active img {
  transform: scale(1);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 10, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(26, 10, 0, 0.65) 100%);
  z-index: 1;
}

.carousel-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.slide-text {
  text-align: center;
  color: var(--white);
  max-width: 750px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
}

.slide-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.slide-text h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--saffron-light);
  margin-bottom: 0.5rem;
}

.slide-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
}

.slide-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.slide-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: scale(1.1);
}

/* ============ Announcement Bar ============ */
.announce-bar {
  background: linear-gradient(135deg, #D7AE3F) !important;
  color: #000 !important;
  color: var(--gold-light);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.announce-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  to {
    left: 150%;
  }
}

/* ============ Welcome Section ============ */
.welcome-section {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: '✦';
  position: absolute;
  font-size: 20rem;
  color: rgba(255, 107, 0, 0.03);
  top: -50px;
  right: -80px;
  font-family: serif;
  line-height: 1;
}

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

.welcome-img-container {
  position: relative;
}

.welcome-img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-warm);
}

.welcome-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-color: #030000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
  border: 3px solid #EABE48;
}

.welcome-img-badge strong {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  display: block;
  line-height: 1;
}

.welcome-text .eyebrow {
  font-family: 'Dancing Script', cursive;
  color: #EABE48;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.welcome-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark-bg);
  margin-bottom: 1rem;
}

.welcome-text p {
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
}

.feature-item i {
  color: var(--saffron);
  font-size: 1rem;
  width: 20px;
}

/* ============ Featured Menu Section ============ */
.featured-menu {
  background: var(--cream);
  padding: 90px 0;
  position: relative;
}

.featured-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--gold));
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  border: 2px solid #030000;
  background: transparent;
  color: #030000;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab.active,
.menu-tab:hover {
  background-color: #030000;
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

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

.menu-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: var(--border-gold);
  display: none;
}

.menu-card.visible {
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(139, 0, 0, 0.15);
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-veg {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-vegan {
  background: #e8f5e9;
  color: #1b5e20;
}

.badge-spicy {
  background: #fce4ec;
  color: #c62828;
}

.badge-fish {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-tandoori {
  background: #fff3e0;
  color: #e65100;
}

.menu-card-title {
  font-size: 1.1rem;
  color: var(--dark-bg);
  margin-bottom: 8px;
  font-weight: 700;
}

.menu-card-desc {
  font-size: 0.85rem;
  color: #0D0500;
  line-height: 1.6;
  flex: 1;
}

.menu-cta-row {
  text-align: center;
  margin-top: 3rem;
}

/* ============ Specialities Section ============ */
.specialities {
  background: var(--dark-bg);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.specialities::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.07) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

.specialities .section-title {
  color: var(--gold);
}

.specialities .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 1;
}

.spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.spec-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 107, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.spec-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.spec-card-body h3 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.spec-card-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============ About Preview ============ */
.about-preview {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff8f0 0%, #fff 60%, #fff8f0 100%);
  position: relative;
}

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

.about-imgs {
  position: relative;
  height: 450px;
}

.about-img-main {
  position: absolute;
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  top: 0;
  left: 0;
  box-shadow: var(--shadow-warm);
}

.about-img-secondary {
  position: absolute;
  width: 55%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  bottom: 0;
  right: 0;
  border: 4px solid white;
  box-shadow: var(--shadow-gold);
}

.about-text .eyebrow {
  font-family: 'Dancing Script', cursive;
  color: var(--saffron);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark-bg);
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0;
  text-align: center;
}

.stat-item {
  background: var(--cream);
  padding: 20px 10px;
  border-radius: 12px;
  border: var(--border-gold);
}

.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--saffron);
  display: block;
}

.stat-item .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============ Reservation Banner ============ */
.reservation-banner {
  background-color: #030000;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reservation-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.reservation-banner .container {
  position: relative;
  z-index: 1;
}

.reservation-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.reservation-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.reservation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.reservation-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.res-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.res-info-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============ Gallery Strip ============ */
.gallery-strip {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}

.gallery-strip-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8);
}

.gallery-strip-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* ============ Testimonials ============ */
.testimonials {
  background: var(--cream);
  padding: 90px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  border: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--dark-bg);
  font-size: 0.9rem;
}

.author-loc {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============ Contact Quick ============ */
.contact-quick {
  background: var(--dark-bg);
  padding: 60px 0;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.contact-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 107, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.contact-item i {
  font-size: 2rem;
  color: var(--saffron);
  margin-bottom: 1rem;
}

.contact-item h3 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.6;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--saffron-light);
}

/* ============ Footer ============ */
footer {
  background: #0D0500;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-text h1 {
  font-size: 1.6rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--saffron);
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-info-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.footer-info-item i {
  color: var(--saffron);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ============ Page Header ============ */
.page-header {
  background-color: #EABE48;
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header h1 span {
  color: #030000;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #030000;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  color: var(--saffron);
}

/* ============ About Page ============ */
.about-story {
  padding: 90px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.story-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.story-img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-warm);
}

.story-text .eyebrow {
  font-family: 'Dancing Script', cursive;
  color: var(--saffron);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark-bg);
  margin-bottom: 1.2rem;
}

.story-text p {
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

/* ============ Team Section ============ */
.team-section {
  background: var(--cream);
  padding: 90px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: var(--border-gold);
  transition: var(--transition);
  text-align: center;
}

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

.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-body {
  padding: 25px 20px;
}

.team-body h3 {
  color: var(--dark-bg);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-body .role {
  color: var(--saffron);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-body p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============ Values Section ============ */
.values-section {
  padding: 90px 0;
  background: var(--dark-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
}

.value-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  transition: var(--transition);
  background: #ffffff !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
  background: #ffffff !important;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  color: #030000;
  margin-bottom: 0.8rem;
}

.value-card p {
  color: #0D0500;
  font-size: 0.875rem;
  line-height: 1.7;
}

.spice-card {
  text-align: center;
  padding: 35px 25px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  background: #ffffff !important;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.spice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.dessert-card {
  background: #ffffff !important;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dessert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ============ Reservation Page ============ */
.reservation-page {
  padding: 80px 0;
  background: var(--cream);
}

.reservation-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.reservation-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-warm);
  border: var(--border-gold);
}

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

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

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8d5b7;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--saffron);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.reservation-info-panel {
  position: sticky;
  top: 100px;
}

.info-card {
  background: var(--dark-bg);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 20px;
}

.info-card h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hours-table tr td:last-child {
  text-align: right;
  color: var(--gold-light);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.reservation-note {
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.reservation-note i {
  color: var(--saffron);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============ Menu Page ============ */
.menu-page {
  padding: 80px 0;
  background: var(--cream);
}

.menu-category-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  position: sticky;
  top: var(--nav-height);
  background: var(--cream);
  padding: 20px 0;
  z-index: 10;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-cat-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 2px solid #030000;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}

.menu-cat-btn.active,
.menu-cat-btn:hover {
  background-color: #030000;
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

.menu-section {
  margin-bottom: 60px;
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.25);
}

.menu-section-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-section-header h2 {
  color: var(--dark-bg);
  font-size: 1.8rem;
}

.menu-section-header p {
  color: #0D0500;
  font-size: 0.875rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.menu-item-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  gap: 0;
  border: var(--border-gold);
  transition: var(--transition);
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.1);
}

.menu-item-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark-bg);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: #0D0500;
  line-height: 1.6;
}

.veg-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #2e7d32;
  background: #4caf50;
  display: inline-block;
  flex-shrink: 0;
}

.nonveg-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #c62828;
  background: #f44336;
  display: inline-block;
  flex-shrink: 0;
}

/* ============ Specialities Page ============ */
.specialities-page {
  padding: 80px 0;
  background: var(--cream);
}

.spec-feature-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: var(--border-gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.spec-feature-card.reverse {
  direction: rtl;
}

.spec-feature-card.reverse>* {
  direction: ltr;
}

.spec-feature-img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.spec-feature-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.spec-feature-body h2 {
  font-size: 1.8rem;
  color: var(--dark-bg);
  margin-bottom: 1rem;
}

.spec-feature-body p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.spec-feature-body .btn {
  margin-top: 1rem;
  width: fit-content;
}

/* ============ History Page ============ */
.history-page {
  padding: 80px 0;
  background: var(--cream);
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--saffron), var(--gold), var(--gold));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-content {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  border: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.timeline-content h3 {
  color: var(--dark-bg);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
}

.timeline-item:nth-child(even) .timeline-content:first-child {
  order: 3;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  margin: 0 auto;
  flex-shrink: 0;
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron);
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

.timeline-placeholder {
  height: 100%;
  min-height: 10px;
}

/* ============ Contact Page ============ */
.contact-page {
  padding: 80px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

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

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  border: var(--border-gold);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-warm);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-body h3 {
  color: var(--dark-bg);
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-info-body p,
.contact-info-body a {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.contact-info-body a:hover {
  color: var(--saffron);
}

.social-section {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  border: var(--border-gold);
  margin-top: 0;
}

.social-section h3 {
  color: var(--dark-bg);
  margin-bottom: 1.2rem;
}

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

.social-link-large {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  flex: 1;
  justify-content: center;
}

.social-link-large.instagram {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--dark-bg);
}

.social-link-large.facebook {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark-bg);
}

.social-link-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-warm);
  border: var(--border-gold);
}

.contact-form-card h3 {
  color: var(--dark-bg);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.map-section {
  margin-top: 60px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: var(--border-gold);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ============ Success/Error Messages ============ */
.alert {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  display: none;
}

.alert.show {
  display: flex;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.alert-error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-in {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .reservation-info-panel {
    position: static;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
  }

  .timeline-item:nth-child(even) .timeline-content:first-child {
    order: unset;
  }

  .timeline-dot {
    margin: 0;
  }

  .timeline-placeholder {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo-icon img {
    width: 45px;
    height: 45px;
  }

  .logo-text h1 {
    font-size: 1.5rem;
  }

  /* .logo-text p { display: none; } */

  .section-pad {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

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

  .story-grid.reverse {
    direction: ltr;
  }

  .about-imgs {
    height: 300px;
  }

  .about-img-main {
    width: 80%;
    height: 270px;
  }

  .about-img-secondary {
    width: 55%;
    height: 190px;
  }

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

  .spec-feature-card {
    grid-template-columns: 1fr;
  }

  .spec-feature-card.reverse {
    direction: ltr;
  }

  .spec-feature-img {
    min-height: 250px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .social-links-large {
    flex-direction: column;
  }

  .reservation-info {
    gap: 20px;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .slide-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .stats-row {
    grid-template-columns: 1fr;
  }
}