/* ============================================================
   HomeKitchen Passion by Bistro ThaMe 35
   Main Stylesheet — Dark Red/White Theme, Mobile-First
   ============================================================ */

/* ---------- 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=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary:      #0a0a0a;
  --bg-secondary:    #141414;
  --bg-card:         #1c1c1c;
  --bg-card-hover:   #222222;
  --accent-red:      #c0392b;
  --accent-red-light:#e74c3c;
  --accent-red-glow: rgba(192, 57, 43, 0.25);
  --accent-gold:     #d4a853;
  --text-primary:    #f5f5f5;
  --text-secondary:  #cccccc;
  --text-muted:      #888888;
  --border-subtle:   rgba(255,255,255,0.07);
  --border-red:      rgba(192,57,43,0.4);
  --glass-bg:        rgba(255,255,255,0.04);
  --glass-border:    rgba(255,255,255,0.08);
  --shadow-card:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-red:      0 4px 24px rgba(192,57,43,0.3);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       22px;
  --radius-pill:     999px;
  --nav-height:      70px;
  --font-heading:    'Playfair Display', Georgia, serif;
  --font-body:       'Inter', system-ui, sans-serif;
  --transition:      0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- 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);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-red); border-radius: 3px; }

/* ---------- Typography ---------- */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
}
.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red-light);
  margin-bottom: 0.75rem;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--accent-red-light);
  color: var(--accent-red-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-red { background: var(--accent-red); color: #fff; }
.badge-gold { background: var(--accent-gold); color: #0a0a0a; }
.badge-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.nav-logo .logo-sub {
  font-size: 0.68rem;
  color: var(--accent-red-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--glass-bg);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent-red);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0.9rem; right: 0.9rem;
}
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav-phone:hover { color: #fff; }
.nav-phone svg { width: 16px; height: 16px; }

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open 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;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text-primary); background: var(--glass-bg); }
.mobile-menu .mobile-cta { margin-top: 1rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.9) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(192,57,43,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding-top: var(--nav-height);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-red-light);
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--accent-red-light);
  display: block;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--accent-red-light); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-style: italic;
  font-family: var(--font-heading);
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-value span { color: var(--accent-red-light); }
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: bounce 2s infinite;
}
.hero-scroll-indicator span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
}
.about-image-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-red-light);
  line-height: 1;
}
.about-image-badge .badge-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.about-content { }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content > p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.cooking-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.cooking-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}
.cooking-card:hover {
  border-color: var(--border-red);
  background: var(--bg-card);
  transform: translateY(-2px);
}
.cooking-icon { font-size: 1.5rem; }
.cooking-name { font-size: 0.9rem; font-weight: 600; }
.cooking-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.no-microwave-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192,57,43,0.12);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-red-light);
  margin-top: 1.5rem;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
#menu { background: var(--bg-primary); }
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: var(--shadow-card), var(--shadow-red);
}
.menu-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.06); }
.menu-card-img-wrap { overflow: hidden; position: relative; }
.menu-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}
.menu-card-body { padding: 1.25rem; }
.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}
.menu-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}
.menu-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap;
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card-category {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.menu-card.hidden { display: none; }

/* ============================================================
   OFFERS SECTION
   ============================================================ */
#offers { background: var(--bg-secondary); }
.offers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.loyalty-tiers { display: flex; flex-direction: column; gap: 1rem; }
.loyalty-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.loyalty-card:hover {
  border-color: var(--border-red);
  background: var(--bg-card);
}
.loyalty-icon { font-size: 2rem; line-height: 1; }
.loyalty-tier-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.loyalty-visits {
  font-size: 0.78rem;
  color: var(--accent-red-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.loyalty-perks { list-style: none; }
.loyalty-perks li {
  font-size: 0.83rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.loyalty-perks li::before { content: '✓'; color: var(--accent-red-light); font-weight: 700; }

.preorder-cards { display: flex; flex-direction: column; gap: 1rem; }
.preorder-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.preorder-card:hover { border-color: var(--border-red); background: var(--bg-card); }
.preorder-icon { font-size: 1.5rem; line-height: 1; }
.preorder-rule { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.preorder-detail { font-size: 0.83rem; color: var(--text-muted); }

.active-offers-strip {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.offer-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(192,57,43,0.08) 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent-red), var(--accent-gold));
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-red); }
.offer-badge { margin-bottom: 0.75rem; }
.offer-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.offer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PROOF OF INGREDIENTS SECTION
   ============================================================ */
#ingredients { background: var(--bg-primary); }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.ingredient-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.ingredient-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.ingredient-date {
  font-size: 0.75rem;
  color: var(--accent-red-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: #4caf50;
  font-weight: 600;
}
.ingredient-card-body { padding: 1.25rem 1.5rem; }
.ingredient-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.ingredient-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.ingredient-items { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ingredient-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
#testimonials { background: var(--bg-secondary); overflow: hidden; }
.testimonials-carousel-wrap { position: relative; }
.testimonials-track-outer { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--border-red); }
.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-red);
  opacity: 0.3;
  font-family: serif;
  line-height: 0.8;
  margin-bottom: 0.75rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-stars { color: var(--accent-gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-meta { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-dish {
  font-size: 0.72rem;
  color: var(--accent-red-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--accent-red);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--bg-primary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info { }
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-method:hover { border-color: var(--border-red); background: var(--bg-card); }
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 2px; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-method-value { font-weight: 600; font-size: 1rem; }
.contact-hours {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.contact-hours-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; }
.contact-hours-text { font-size: 0.85rem; color: var(--text-muted); }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-form-wrap p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px var(--accent-red-glow);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit-wrap { margin-top: 0.5rem; }
.form-status { margin-top: 1rem; font-size: 0.88rem; padding: 0.75rem 1rem; border-radius: var(--radius-sm); display: none; }
.form-status.success { background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.3); color: #81c784; display: block; }
.form-status.error { background: rgba(192,57,43,0.1); border: 1px solid var(--border-red); color: var(--accent-red-light); display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.footer-brand .logo-sub { font-size: 0.75rem; color: var(--accent-red-light); margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-bottom: 1rem; }
.footer-links h4 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 1rem; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a { font-size: 0.88rem; color: var(--text-secondary); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--accent-red-light); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-made { font-size: 0.8rem; color: var(--text-muted); }
.footer-made span { color: var(--accent-red-light); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-glow 2.5s infinite;
}
.float-call:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(192,57,43,0.7);
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(192,57,43,0.5); }
  50% { box-shadow: 0 4px 35px rgba(192,57,43,0.8), 0 0 0 8px rgba(192,57,43,0.1); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap img { height: 320px; }
  .offers-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .menu-grid { grid-template-columns: 1fr; }
  .cooking-methods { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card { flex: 0 0 calc(100% - 0); }
  .float-call .call-label { display: none; }
  .float-call { padding: 1rem; border-radius: 50%; }
  .active-offers-strip { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADMIN PANEL STYLES (used in admin.html)
   ============================================================ */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar-logo { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid var(--border-subtle); margin-bottom: 1rem; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--text-primary);
  background: var(--glass-bg);
  border-right: 2px solid var(--accent-red);
}
.admin-main { padding: 2.5rem; background: var(--bg-primary); }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section h2 { margin-bottom: 1.5rem; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.admin-table th, .admin-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.admin-table th {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.admin-table td img { width: 56px; height: 42px; object-fit: cover; border-radius: 6px; }
.admin-form {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.admin-form h3 { margin-bottom: 1.25rem; font-family: var(--font-heading); font-size: 1.2rem; }
.admin-actions { display: flex; gap: 0.75rem; align-items: center; }
.btn-danger {
  background: rgba(192,57,43,0.15);
  border: 1px solid var(--border-red);
  color: var(--accent-red-light);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-danger:hover { background: var(--accent-red); color: #fff; }
.btn-edit {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-edit:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
}
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.login-card h2 { font-family: var(--font-heading); margin-bottom: 0.5rem; }
.login-card p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.9rem; }
.login-error { color: var(--accent-red-light); font-size: 0.85rem; margin-top: 0.75rem; display: none; }
