/* ==========================================================================
   KEVS BURGER'S - DESIGN SYSTEM & STYLESHEET
   Urban Industrial / Premium Street Food Aesthetic
   Colors: Dark Charcoal/Black, Orange, Mustard Yellow, White
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* --- Color Palette --- */
  --bg-dark: #0d0d0d;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;
  --primary: #ff6b00;        /* Bold Orange */
  --primary-hover: #e05e00;
  --secondary: #ffcc00;      /* Mustard Yellow */
  --secondary-hover: #e6b800;
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --text-dark: #121212;
  --border-color: #2a2a2a;
  --border-focus: #ff6b00;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.9);
  
  /* --- Fonts --- */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* --- Layout & Spacing --- */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button, input, textarea, select {
  font-family: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

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

.highlight-yellow {
  color: var(--secondary);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography Helpers --- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  gap: 8px;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--border-color);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn.full-width {
  width: 100%;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background-color: rgba(13, 13, 13, 0.98);
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary);
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
  height: 44px;
  width: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta-btn {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 0.45; /* Dark overlay effect built in */
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.9) 80%, rgba(13,13,13,1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 7.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 15px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 35px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==================== ABOUT SECTION ==================== */
.about {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.about-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.about-vision {
  background-color: var(--bg-card);
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-bottom: 30px;
}

.about-vision h3 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 800;
}

.about-vision p {
  color: var(--text-white);
  font-size: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.value-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 16px 8px;
  text-align: center;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

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

.value-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
}

.value-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.about-img-card:hover {
  transform: scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

.about-img-card.big {
  grid-column: span 2;
}

.about-img-card.big img {
  height: 300px;
}

/* ==================== MENU SECTION ==================== */
.menu-section {
  padding: 100px 0;
  background-color: #111111;
  border-bottom: 1px solid var(--border-color);
}

.menu-controls {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-bar-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 16px 50px 16px 50px;
  background-color: var(--bg-dark);
  border: 2px solid var(--border-color);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.2);
}

.search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--text-muted);
  display: none;
}

.search-clear:hover {
  color: var(--text-white);
}

.menu-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.menu-categories::-webkit-scrollbar {
  display: none; /* Safari & Chrome */
}

.cat-btn {
  flex-shrink: 0;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.cat-btn:hover {
  border-color: var(--primary);
  color: var(--text-white);
}

.cat-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.no-results {
  text-align: center;
  padding: 60px 0;
}

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

.no-results p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Menu Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.menu-category-label {
  grid-column: span 2;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--secondary);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 8px;
  margin-top: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-category-label:first-of-type {
  margin-top: 0;
}

.menu-note {
  grid-column: span 2;
  font-size: 0.9rem;
  color: var(--text-muted);
  background-color: rgba(255, 107, 0, 0.05);
  border-left: 3px solid var(--primary);
  padding: 12px 18px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin-top: -15px;
  margin-bottom: 10px;
}

.menu-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.4);
  background-color: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.menu-card.featured {
  border: 1px solid rgba(255, 204, 0, 0.3);
  background: linear-gradient(145deg, #161616 0%, #1e1b12 100%);
}

.menu-card.featured:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.15);
}

.menu-card-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
}

.menu-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.menu-badge.bestseller {
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.menu-badge.hot {
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.menu-badge.special {
  background-color: rgba(255, 107, 0, 0.2);
  color: #ff8533;
  border: 1px solid #ff8533;
}

.menu-badge.natural {
  background-color: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid #25d366;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.menu-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary);
}

.add-to-cart-btn {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 8px 18px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.add-to-cart-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Extras Cards inside Menu */
.menu-extras-card {
  grid-column: span 2;
  background-color: var(--bg-card);
  border: 1px dashed var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  margin-bottom: 10px;
}

.menu-extras-card h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.extras-grid span {
  font-size: 0.85rem;
  color: var(--text-muted);
  background-color: var(--bg-dark);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  background-color: #121212;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 107, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.zoom-icon, .play-icon {
  font-size: 2rem;
  color: var(--text-white);
  text-shadow: var(--shadow-sm);
}

.gallery-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item.video-item::after {
  content: '▶';
  position: absolute;
  bottom: 14px;
  right: 14px;
  background-color: rgba(13, 13, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  padding-left: 2px;
  pointer-events: none;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
  padding: 100px 0;
  background-color: #111111;
  border-bottom: 1px solid var(--border-color);
}

.review-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  max-width: 650px;
  margin: 0 auto 50px;
  box-shadow: var(--shadow-md);
}

.review-form-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--secondary);
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-input, .form-textarea {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  border-radius: var(--border-radius-sm);
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.1);
}

.form-input {
  flex-grow: 1;
}

.star-rating-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 0 16px;
  border-radius: var(--border-radius-sm);
}

.star-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars-input {
  display: flex;
  gap: 3px;
}

.star-inp {
  font-size: 1.3rem;
  color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.star-inp:hover, .star-inp.active {
  color: var(--secondary);
}

.form-textarea {
  resize: vertical;
}

/* Reviews List */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.review-stars {
  color: var(--secondary);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.review-comment {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 12px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--border-color);
  text-align: right;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service-card.highlight-card {
  border-color: var(--primary);
  background: linear-gradient(145deg, #1a1510 0%, #161616 100%);
  position: relative;
  overflow: hidden;
}

.service-card.highlight-card::before {
  content: 'POPULAR';
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-btn {
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.service-btn:hover {
  background-color: var(--primary-hover);
  transform: scale(1.03);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: 100px 0;
  background-color: #111111;
  border-bottom: 1px solid var(--border-color);
}

.contact-grid {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--primary);
}

.contact-icon {
  font-size: 2.2rem;
  background-color: var(--bg-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-buttons .btn {
  padding: 12px 14px;
  font-size: 0.85rem;
}

.social-links-contact {
  text-align: center;
  margin-top: 15px;
}

.social-links-contact h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
}

.social-icon-link.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: white;
  border-color: transparent;
}

.social-icon-link.facebook:hover {
  background-color: #3b5998;
  color: white;
  border-color: transparent;
}

.social-icon-link.tiktok:hover {
  background-color: #010101;
  color: white;
  border-color: #00f2fe;
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: #060606;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

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

.footer-logo {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  background-color: #121212;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-seo {
  font-size: 0.75rem !important;
  color: #333333 !important;
  margin-top: 6px;
}

/* ==================== FLOATING INTERACTION ELEMENTS ==================== */

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1) rotate(5deg);
}

.wa-tooltip {
  position: absolute;
  right: 76px;
  background-color: #1c1c1c;
  color: white;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Floating Cart Button */
.cart-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  background-color: var(--primary);
  color: var(--text-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 999;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.cart-float:hover {
  background-color: var(--primary-hover);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--secondary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

/* Cart Modal */
.cart-modal {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--bg-card);
  border-left: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.cart-modal.active {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.modal-close {
  font-size: 1.2rem;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--text-white);
  background-color: var(--border-color);
}

.cart-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.cart-empty {
  text-align: center;
  margin: auto;
}

.cart-empty span {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 15px;
}

.cart-empty p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* Cart Items List */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-info {
  flex-grow: 1;
  padding-right: 12px;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.cart-item-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cart-item-price {
  font-weight: 800;
  color: var(--secondary);
  font-size: 0.95rem;
  margin-top: 4px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.qty-btn:hover {
  background-color: var(--border-color);
}

.qty-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.remove-item-btn {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 8px;
}

.remove-item-btn:hover {
  color: #ff3333;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-dark);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total span:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.cart-total-amount {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--secondary);
}

/* Order / Checkout Modal */
.order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 500px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.order-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.order-body {
  padding: 24px;
  max-height: 75vh;
  overflow-y: auto;
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.order-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.order-type-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-type-btn {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.order-type-btn:hover {
  border-color: var(--primary);
  color: var(--text-white);
}

.order-type-btn.active {
  background-color: rgba(255, 107, 0, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}

.order-type-icon {
  font-size: 1.6rem;
}

/* Delivery Info & Alerts */
.delivery-info {
  border-top: 1px dashed var(--border-color);
  padding-top: 20px;
  margin-top: 10px;
}

.delivery-notice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.notice-card {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  align-items: center;
}

.notice-card span {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.notice-card p {
  font-size: 0.85rem;
  line-height: 1.4;
}

.orange-notice {
  background-color: rgba(255, 107, 0, 0.1);
  border-left: 4px solid var(--primary);
  color: #ff944d;
}

.yellow-notice {
  background-color: rgba(255, 204, 0, 0.08);
  border-left: 4px solid var(--secondary);
  color: #ffd633;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
  color: white;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background-color: var(--primary);
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.lightbox-content img, .lightbox-content video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

/* ==================== RESPONSIVE LAYOUTS ==================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
  }
  .about-grid {
    gap: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  /* Navigation */
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: #0d0d0d;
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 20px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    padding: 12px 0;
  }
  
  .nav-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  
  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Hero */
  .hero-title {
    font-size: 4rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    padding: 0 40px;
  }
  
  /* About */
  .about {
    padding: 60px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Menu */
  .menu-section {
    padding: 60px 0;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .menu-category-label, .menu-note, .menu-extras-card {
    grid-column: span 1;
  }
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Gallery */
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Reviews */
  .reviews-section {
    padding: 60px 0;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  /* Services */
  .services-section {
    padding: 60px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Contact */
  .contact-section {
    padding: 60px 0;
  }
  .contact-buttons {
    grid-template-columns: 1fr;
  }
  .social-icons-row {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .extras-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
  }
  .star-rating-input {
    padding: 12px;
  }
  .whatsapp-float, .cart-float {
    width: 50px;
    height: 50px;
  }
  .cart-float {
    bottom: 86px;
  }
}
