/* ============================================
   CSS VARIABLES
============================================= */
:root {
  --primary: #9c0000;
  --primary-dark: #7a0000;
  --primary-light: #c4302b;
  --secondary: #f7e79f;
  --secondary-light: #faf3cf;
  --cream: #FDF8F3;
  --warm-white: #F5E6D3;
  --dark-coffee: #2C1810;
  --medium-brown: #4e73a1;
  --card-white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.16);
  --shadow-xl: 0 20px 60px rgba(44, 24, 16, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Fredoka', 'Playfair Display', Georgia, sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --font-accent: 'Dancing Script', cursive;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

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

ul {
  list-style: none;
}

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

/* ============================================
   SHARED COMPONENTS
============================================= */

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

.section-tag {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.section-tag.light {
  color: var(--secondary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--dark-coffee);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--cream);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--secondary));
}

.section-divider::after {
  background: linear-gradient(to left, transparent, var(--secondary));
}

.section-divider.light::before {
  background: linear-gradient(to right, transparent, var(--secondary-light));
}

.section-divider.light::after {
  background: linear-gradient(to left, transparent, var(--secondary-light));
}

.section-divider.left {
  justify-content: flex-start;
}

.divider-icon {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(156, 0, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.nav-logo-img {
  height: 55px;
  width: auto;
}

.hero-logo-img {
  height: clamp(100px, 22vw, 200px);
  width: auto;
  aspect-ratio: 470 / 200;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.footer-logo-img {
  height: 55px;
  width: auto;
}

.logo-subtitle {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--secondary);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  position: relative;
  transition: all var(--transition);
}

.nav-link:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: all var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:not(.nav-btn):hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link.active {
  color: #fff;
}

.nav-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px;
  margin-left: 8px;
}

.nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(156, 0, 0, 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================
   HERO
============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 24, 16, 0.55) 0%,
    rgba(44, 24, 16, 0.65) 50%,
    rgba(44, 24, 16, 0.8) 100%
  );
}

/* Steam Effect */
.steam-container {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.steam {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  filter: blur(6px);
  animation: steamRise 3s ease-in infinite;
}

.steam-1 { left: -20px; animation-delay: 0s; }
.steam-2 { left: 0;     animation-delay: 0.8s; }
.steam-3 { left: 20px;  animation-delay: 1.6s; }
.steam-4 { left: 5px;   animation-delay: 2.2s; }

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  30% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(2.5) translateX(15px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-greeting {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--secondary);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  animation: scrollBounce 2s infinite;
  transition: color var(--transition);
}

.scroll-indicator:hover {
  color: var(--secondary);
}

.scroll-text {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero CSS Animations (replaces GSAP) */
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero.hero-loaded .hero-greeting {
  animation: heroFadeUp 0.8s ease-out 0.3s forwards;
}

.hero.hero-loaded .hero-title {
  animation: heroFadeUp 1s ease-out 0.5s forwards;
}

.hero.hero-loaded .hero-buttons {
  animation: heroFadeUp 0.8s ease-out 0.8s forwards;
}

.hero.hero-loaded .scroll-indicator {
  animation: heroFadeUp 0.6s ease-out 1s forwards;
}

/* Scroll Reveal (replaces AOS) */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MENU SECTION
============================================= */
.menu-section {
  padding: 100px 0;
  background: var(--cream);
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 50px;
  position: relative;
}

.menu-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--card-white);
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--medium-brown);
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--secondary);
  color: var(--dark-coffee);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.menu-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(156, 0, 0, 0.3);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* Menu Card */
.menu-card {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

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

.menu-card.hidden {
  display: none;
}

.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  aspect-ratio: 2 / 1;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.menu-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-badge.popular {
  background: var(--primary);
  color: #fff;
}

.menu-badge.new {
  background: var(--secondary);
  color: var(--dark-coffee);
}

.menu-card-info {
  padding: 20px;
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-coffee);
}

.menu-card-desc {
  font-size: 0.85rem;
  color: var(--medium-brown);
  line-height: 1.5;
  margin-bottom: 16px;
}

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

.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.menu-card-add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.85rem;
}

.menu-card-add:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}

/* ============================================
   ABOUT SECTION
============================================= */
.about-section {
  padding: 100px 0;
  background: var(--warm-white);
}

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

.about-media {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--medium-brown);
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--primary);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 0.8rem;
  color: var(--medium-brown);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ============================================
   REWARDS SECTION
============================================= */
.rewards-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-coffee) 0%, var(--medium-brown) 100%);
  color: white;
}

.rewards-section .section-tag {
  color: var(--secondary);
}

.rewards-section .section-title {
  color: white;
}

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

.reward-step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.reward-step:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.reward-step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.reward-step h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.reward-step p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}

.rewards-cta {
  text-align: center;
  margin-top: 40px;
}

.rewards-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(156, 0, 0, 0.4);
}

.rewards-cta-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(156, 0, 0, 0.5);
}

.rewards-cta-hint {
  margin-top: 12px;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .rewards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .reward-step {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .reward-step-icon {
    margin: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .reward-step h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .reward-step p {
    font-size: 0.8rem;
  }

  .rewards-section {
    padding: 60px 0;
  }
}

/* ============================================
   CONTACT SECTION
============================================= */
.contact-section {
  padding: 40px 0;
  background: var(--warm-white);
}

.contact-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.contact-info {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.contact-socials {
  grid-column: 1 / -1;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(156, 0, 0, 0.3);
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

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

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-white);
  color: var(--dark-coffee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(156, 0, 0, 0.3);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--dark-coffee);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(92, 61, 46, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-coffee);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

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

.form-group label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--medium-brown);
  pointer-events: none;
  transition: all var(--transition);
  background: transparent;
  padding: 0 4px;
  opacity: 0;
}

.form-group textarea ~ label {
  top: 14px;
  transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 14px;
  font-size: 0.75rem;
  color: var(--primary);
  opacity: 1;
  background: var(--card-white);
}

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

.contact-form .btn {
  margin-top: 8px;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
============================================= */
.footer {
  background: var(--dark-coffee);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-accent);
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-hours h4,
.footer-social h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer-links li,
.footer-hours li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  transition: all var(--transition);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-links a:hover::after {
  width: 100%;
}

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

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
}

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

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

.footer-bottom i {
  color: var(--primary);
}


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

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

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

/* Mobile / Tablet Small */
@media (max-width: 768px) {
  /* Navbar Mobile */
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-coffee);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 4px;
    transition: right var(--transition-slow);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

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

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link:not(.nav-btn)::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-btn {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }

  /* Hero Mobile */
  .hero {
    min-height: 100svh;
  }

  .hero-video {
    display: none;
  }

  .hero-video-wrap {
    background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=800&q=70&auto=format') center/cover no-repeat;
  }

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

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .steam-container {
    display: none;
  }

  /* Menu Grid Mobile */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .menu-tab i {
    display: none;
  }

  /* About Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-video {
    height: 300px;
  }

  .about-img-accent {
    display: none;
  }

  .about-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  /* Contact Mobile */
  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }

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

  .contact-item {
    margin-bottom: 16px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-social-links {
    justify-content: center;
  }

}

/* Small phones */
@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

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

/* Large screens */
@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
