/* ============================================
   Restaurant Website Template — style.css
   Developed by AymanInfotech
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #d4a762;
  --primary-dark: #b8893f;
  --primary-light: #f0d9a8;
  --accent: #e74c3c;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --text-muted: #95a5a6;
  --bg-light: #faf8f5;
  --bg-section: #f5f0ea;
  --white: #ffffff;
  --black: #000000;
  --overlay: rgba(26, 26, 46, 0.85);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }

/* ---------- Utility Classes ---------- */
.section-padding { padding: 100px 0; }
.bg-dark   { background: var(--dark); color: var(--text-light); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--text-light); }
.bg-section { background: var(--bg-section); }
.text-primary { color: var(--primary) !important; }
.text-center { text-align: center; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin: 0 auto 20px;
  border-radius: 2px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,167,98,0.4);
  color: var(--white);
}
.btn-primary-custom:hover::before { opacity: 1; }

.btn-outline-custom {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,167,98,0.3);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader {
  width: 50px; height: 50px;
  border: 4px solid rgba(212,167,98,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar-custom {
  padding: 18px 0;
  transition: all var(--transition);
  background: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar-custom.scrolled {
  background: rgba(26, 26, 46, 0.96);
  padding: 10px 0;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.navbar-custom .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
}
.navbar-custom .navbar-brand span { color: var(--primary); }
.navbar-custom .nav-link {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 18px !important;
  transition: color var(--transition);
  position: relative;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: calc(100% - 36px);
}
.navbar-custom .navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  padding: 4px 8px;
}
.navbar-custom .navbar-toggler:focus { box-shadow: none; }
.navbar-custom .nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  padding: 8px 24px !important;
  margin-left: 10px;
}
.navbar-custom .nav-cta::after { display: none; }
.navbar-custom .nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content .subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  opacity: 0.9;
}
.page-header-content {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}
.page-header .breadcrumb {
  background: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.page-header .breadcrumb-item a { color: var(--primary); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ============================================
   FEATURED DISHES / MENU ITEMS
   ============================================ */
.dish-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.dish-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-card-img img { transform: scale(1.1); }
.dish-card-img .badge-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
}
.dish-card-img .badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dish-card-body {
  padding: 24px;
}
.dish-card-body h4 {
  margin-bottom: 8px;
  transition: color var(--transition);
}
.dish-card:hover .dish-card-body h4 { color: var(--primary); }
.dish-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Menu filter buttons */
.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}
.menu-filters .filter-btn {
  padding: 10px 28px;
  border: 2px solid #e0d6c8;
  border-radius: var(--radius-xl);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.menu-filters .filter-btn:hover,
.menu-filters .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212,167,98,0.3);
}

/* Menu list style */
.menu-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px dashed #e0d6c8;
  transition: all var(--transition);
}
.menu-list-item:hover { background: rgba(212,167,98,0.05); }
.menu-list-item img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.menu-list-item .item-info { flex: 1; }
.menu-list-item .item-info h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.menu-list-item .item-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.menu-list-item .item-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-img-wrapper {
  position: relative;
}
.about-img-wrapper img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about-img-wrapper .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.experience-badge .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.about-content .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-feature-item i {
  font-size: 1.2rem;
  color: var(--primary);
  width: 40px;
  height: 40px;
  background: rgba(212,167,98,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-item span { font-weight: 500; font-size: 0.95rem; }

/* ============================================
   SPECIAL OFFERS / CTA
   ============================================ */
.special-offer {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.special-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.special-offer-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.special-offer-content h2 { color: var(--white); margin-bottom: 16px; }
.special-offer-content p {
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}
.offer-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.timer-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  min-width: 90px;
}
.timer-box .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.timer-box .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.4;
}
.testimonial-card p {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-card .author img {
  width: 55px; height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}
.testimonial-card .author-info h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 2px;
}
.testimonial-card .author-info span {
  font-size: 0.82rem;
  color: var(--primary);
}
.testimonial-stars {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ============================================
   STATISTICS
   ============================================ */
.stats-section {
  background: var(--dark);
  padding: 80px 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-item .stat-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 300px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i {
  font-size: 2rem;
  color: var(--white);
  width: 60px; height: 60px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.gallery-item .overlay i:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox .close-lightbox {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.lightbox .close-lightbox:hover { background: rgba(255,255,255,0.1); }
.lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.lightbox .lightbox-nav:hover { background: rgba(255,255,255,0.1); }
.lightbox .lightbox-prev { left: 20px; }
.lightbox .lightbox-next { right: 20px; }

/* ============================================
   RESERVATION FORM
   ============================================ */
.reservation-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
}
.reservation-form-wrapper h3 {
  margin-bottom: 8px;
}
.reservation-form-wrapper .form-subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.form-floating label { font-family: var(--font-body); }
.form-control-custom {
  padding: 14px 18px;
  border: 2px solid #e8e2d9;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
  background: var(--bg-light);
}
.form-control-custom:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,167,98,0.15);
}
.form-label-custom {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

.reservation-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reservation-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.reservation-info-item i {
  font-size: 1.3rem;
  color: var(--primary);
  width: 50px; height: 50px;
  background: rgba(212,167,98,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reservation-info-item h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
}
.reservation-info-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.contact-card i {
  font-size: 1.8rem;
  color: var(--primary);
  width: 70px; height: 70px;
  background: rgba(212,167,98,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-card h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}
.contact-card a { color: var(--primary); }
.contact-card a:hover { text-decoration: underline; }

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 0;
}
.newsletter-section h3 { color: var(--white); margin-bottom: 12px; }
.newsletter-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--primary-dark); }

/* ============================================
   CHEF / TEAM
   ============================================ */
.chef-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.chef-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.chef-card-img {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.chef-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.chef-card:hover .chef-card-img img { transform: scale(1.05); }
.chef-card-body {
  padding: 24px;
}
.chef-card-body h4 {
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.chef-card-body .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.chef-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 24px 24px;
}
.chef-card .social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #e0d6c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.chef-card .social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ============================================
   VALUES / FEATURES
   ============================================ */
.value-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.value-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.value-card h4 { margin-bottom: 12px; }
.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer h5 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
}
.footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer .footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}
.footer .footer-brand span { color: var(--primary); }
.footer-links { padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-contact li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-contact li span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}
.footer-hours li span:first-child { color: rgba(255,255,255,0.6); }
.footer-hours li span:last-child { color: var(--primary); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 50px;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.back-to-top.active { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .section-padding { padding: 70px 0; }
  .navbar-custom .navbar-collapse {
    background: rgba(26,26,46,0.98);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 15px;
  }
  .navbar-custom .nav-cta { margin-left: 0; margin-top: 10px; display: inline-block; }
  .hero { min-height: 90vh; }
  .about-features { grid-template-columns: 1fr; }
  .about-img-wrapper { margin-bottom: 40px; }
  .about-img-wrapper .experience-badge { right: 10px; bottom: -10px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}

@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-content h1 { font-size: 2rem; }
  .offer-timer { gap: 10px; }
  .timer-box { min-width: 70px; padding: 14px 16px; }
  .timer-box .number { font-size: 1.6rem; }
  .stat-item .stat-number { font-size: 2.2rem; }
  .reservation-form-wrapper { padding: 30px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input {
    border-radius: var(--radius-xl);
    border-right: 2px solid rgba(255,255,255,0.15);
  }
  .newsletter-form button { border-radius: var(--radius-xl); }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item { height: 220px; }
  .menu-list-item { flex-wrap: wrap; }
  .page-header { padding: 130px 0 60px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-custom { width: 100%; text-align: center; }
}
