*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --saffron: #ff6b00;
  --saffron-light: #ff8c42;
  --crimson: #c0392b;
  --turmeric: #f39c12;
  --cream: #fff8f0;
  --charcoal: #1a1209;
  --dark-bg: #0f0a05;
  --card-bg: #1e1208;
  --smoke: #2a1a0a;
  --muted: #a08060;
  --gold: #e8a020;
  --whatsapp: #25d366;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark-bg);
  color: var(--cream);
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
}

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

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: rgba(15, 10, 5, 0);
  backdrop-filter: blur(0px);
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(15, 10, 5, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}
.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--saffron);
  letter-spacing: 3px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 248, 240, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--saffron);
}
.nav-cta {
  background: var(--saffron);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--saffron-light);
  transform: scale(1.05);
}

/* ===================== HERO ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-bg);
  padding: 140px 20px 220px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  to {
    background-position: 60px 60px;
  }
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  max-width: 150vw;
  max-height: 150vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.15) 0%,
    transparent 70%
  );
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Floating food items */
.floating-item {
  position: absolute;
  font-size: 60px;
  animation: floatRotate 8s ease-in-out infinite;
  opacity: 0.15;
  filter: grayscale(0.3);
  pointer-events: none;
}
.fi-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  font-size: 80px;
}
.fi-2 {
  top: 20%;
  right: 10%;
  animation-delay: -2s;
  font-size: 55px;
}
.fi-3 {
  bottom: 20%;
  left: 12%;
  animation-delay: -4s;
  font-size: 70px;
}
.fi-4 {
  bottom: 25%;
  right: 8%;
  animation-delay: -1s;
  font-size: 50px;
}
.fi-5 {
  top: 50%;
  left: 3%;
  animation-delay: -3s;
  font-size: 45px;
}
.fi-6 {
  top: 40%;
  right: 4%;
  animation-delay: -5s;
  font-size: 65px;
}
@keyframes floatRotate {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}
.hero-tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--saffron);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 12vw, 160px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: 4px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title span {
  color: var(--saffron);
}
.hero-sub {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 26px);
  color: var(--muted);
  margin: 24px 0 40px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary,
.btn-secondary,
.btn-whatsapp {
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.4);
}
.btn-primary:hover {
  background: var(--saffron-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 50px rgba(255, 107, 0, 0.6);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #2ee577;
  transform: translateY(-3px);
  box-shadow: 0 8px 50px rgba(37, 211, 102, 0.55);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 248, 240, 0.3);
}
.btn-secondary:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
  padding: 0 16px;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: var(--saffron);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 248, 240, 0.15);
  align-self: stretch;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounceDown 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--saffron), transparent);
}
@keyframes bounceDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===================== SECTIONS COMMON ===================== */
section {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--cream);
  word-break: break-word;
}
.section-title span {
  color: var(--saffron);
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ===================== ABOUT / VIBE ===================== */
#about {
  background: var(--smoke);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
  height: 500px;
  perspective: 1000px;
}
.about-card-3d {
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.1s;
  cursor: default;
}
.about-card-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 107, 0, 0.12),
    transparent 60%
  );
}
.cafe-illustration {
  font-size: 120px;
  position: relative;
  z-index: 2;
  animation: bobble 3s ease-in-out infinite;
}
@keyframes bobble {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.about-badge {
  position: absolute;
  background: var(--saffron);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 12px 20px;
  border-radius: 14px;
  z-index: 3;
}
.badge-veg {
  bottom: 30px;
  left: 30px;
  background: rgba(0, 180, 80, 0.9);
}
.badge-delivery {
  top: 30px;
  right: 30px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

.about-text .section-title {
  margin-bottom: 24px;
}
.about-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-highlight {
  color: var(--cream);
  font-weight: 700;
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}
.pill:hover {
  background: rgba(255, 107, 0, 0.25);
  border-color: var(--saffron);
}

/* ===================== MENU ===================== */
#menu {
  background: var(--dark-bg);
  padding: 120px 0;
}
.menu-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.menu-header {
  margin-bottom: 80px;
  text-align: center;
}
.menu-marquee-wrapper {
  overflow: hidden;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}
.menu-marquee {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.menu-marquee:hover {
  animation-play-state: paused;
}
.marquee-item {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: rgba(255, 248, 240, 0.4);
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.menu-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 107, 0, 0.12);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 107, 0, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.menu-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 30px 60px rgba(255, 107, 0, 0.15);
}
.menu-card:hover::after {
  opacity: 1;
}
.menu-card:hover .menu-emoji {
  transform: scale(1.2) rotate(10deg);
}
.menu-emoji {
  font-size: 56px;
  display: block;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(255, 107, 0, 0.3));
}
.menu-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 8px;
}
.menu-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.menu-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.2),
    rgba(192, 57, 43, 0.15)
  );
  border-color: rgba(255, 107, 0, 0.4);
}
.menu-card.highlight .menu-name {
  color: var(--saffron);
}

/* ===================== SPECIALS SCROLL SECTION ===================== */
#specials {
  background: var(--smoke);
  padding: 120px 0;
  overflow: hidden;
}
.specials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.specials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 20px;
}
.specials-follow {
  color: var(--saffron);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.specials-scroll {
  display: flex;
  gap: 24px;
  padding-bottom: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--saffron) transparent;
}
.special-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 24px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.special-card:hover {
  transform: scale(1.03);
  border-color: rgba(255, 107, 0, 0.5);
}
.special-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 100px;
  color: rgba(255, 107, 0, 0.06);
  line-height: 1;
  pointer-events: none;
}
.special-emoji {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
}
.special-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 10px;
}
.special-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.special-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--saffron);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* ===================== PARALLAX BANNER ===================== */
.parallax-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-bg);
  padding: 60px 20px;
}
.parallax-bg-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(80px, 20vw, 200px);
  font-weight: 400;
  letter-spacing: 20px;
  color: rgba(255, 107, 0, 0.06);
  white-space: nowrap;
  position: absolute;
  transform: translateX(var(--parallax-x, 0));
  transition: transform 0.1s;
  user-select: none;
}
.parallax-center {
  position: relative;
  z-index: 2;
  text-align: center;
}
.parallax-center h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(26px, 4vw, 56px);
  color: var(--cream);
  max-width: 700px;
  line-height: 1.3;
}
.parallax-center h2 em {
  font-style: normal;
  color: var(--saffron);
}
.parallax-divider {
  width: 60px;
  height: 3px;
  background: var(--saffron);
  margin: 24px auto;
  border-radius: 2px;
}
.parallax-handle {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===================== INFO / CONTACT ===================== */
#info {
  background: var(--dark-bg);
  padding: 120px 60px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.info-left .section-title {
  margin-bottom: 40px;
}
.info-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s;
}
.info-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateX(8px);
}
.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.info-detail h4 {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 6px;
}
.info-detail p {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.6;
}
.info-detail a {
  color: var(--cream);
  text-decoration: none;
}
.info-detail a:hover {
  color: var(--saffron);
}

.ratings-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.ratings-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.rating-box {
  background: var(--card-bg);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
}
.rating-box:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
}
.rating-score {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  color: var(--saffron);
  line-height: 1;
}
.rating-stars {
  color: var(--gold);
  font-size: 16px;
  margin: 6px 0;
}
.rating-platform {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.rating-count {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ===================== HOURS NOTE ===================== */
.hours-note {
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.hours-note strong {
  color: var(--saffron);
}

/* ===================== QUOTE & DELIVERY CARDS ===================== */
.quote-card {
  margin-top: 48px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 20px;
  padding: 32px;
}
.quote-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 16px;
}
.quote-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
}

.delivery-card {
  margin-top: 24px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.delivery-icon {
  font-size: 40px;
}
.delivery-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.delivery-sub {
  font-size: 14px;
  color: var(--muted);
}
.delivery-link {
  color: var(--saffron);
  text-decoration: none;
  font-weight: 700;
}

/* ===================== CONTACT ACTION BUTTONS ===================== */
.contact-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.action-call {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.25);
}
.action-call:hover {
  background: var(--saffron-light);
  transform: translateY(-3px);
}
.action-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}
.action-whatsapp:hover {
  background: #2ee577;
  transform: translateY(-3px);
}

/* ===================== INSTAGRAM STRIP ===================== */
#social {
  background: var(--smoke);
  padding: 100px 0;
  overflow: hidden;
}
.social-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  margin-bottom: 60px;
}
.social-sub {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 100%;
  overflow: hidden;
}
.insta-cell {
  aspect-ratio: 1;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.insta-cell:hover {
  transform: scale(0.95);
  z-index: 2;
}
.insta-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 0, 0);
  transition: background 0.3s;
}
.insta-cell:hover::after {
  background: rgba(255, 107, 0, 0.3);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.insta-cell:hover .insta-overlay {
  opacity: 1;
}
.insta-at {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 20px;
}
.insta-cta {
  text-align: center;
  margin-top: 40px;
}
.insta-handle-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.insta-handle-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(253, 29, 29, 0.4);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--charcoal);
  padding: 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
}
.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: var(--saffron);
  letter-spacing: 6px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--saffron);
}
.footer-copy {
  font-size: 13px;
  color: rgba(160, 128, 96, 0.5);
}
.footer-note {
  font-size: 12px;
  color: rgba(160, 128, 96, 0.4);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.footer-note-italic {
  margin-top: 8px;
  font-style: italic;
}

/* ===================== 3D TILT EFFECT ===================== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s;
}

/* ===================== CURSOR GLOW ===================== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ===================== FLOATING ACTION BUTTONS ===================== */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2000;
}
.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.fab:hover {
  transform: scale(1.08);
}
.fab-whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: fabPulseWA 2.4s ease-in-out infinite;
}
.fab-call {
  background: var(--saffron);
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.45);
}
@keyframes fabPulseWA {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 6px 24px rgba(37, 211, 102, 0.45),
      0 0 0 10px rgba(37, 211, 102, 0.15);
  }
}

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

/* Tablet */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  section {
    padding: 100px 40px;
  }
  #info {
    padding: 100px 40px;
  }
  .about-grid {
    gap: 50px;
  }
}

/* Tablet / small desktop nav collapse */
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 80px 24px;
  }
  #info {
    padding: 80px 24px;
  }
  .about-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 360px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .stat-number {
    font-size: 36px;
  }
  .ratings-row {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 40px 24px;
  }
  .footer-links {
    gap: 18px;
  }
  .menu-inner,
  .specials-inner,
  .social-inner {
    padding: 0 24px;
  }
  #menu,
  #specials,
  #social {
    padding: 80px 0;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .nav-logo {
    font-size: 26px;
  }
  .nav-cta {
    padding: 8px 16px;
    font-size: 11px;
  }
  #hero {
    padding: 110px 16px 200px;
  }
  .hero-title {
    letter-spacing: 2px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    justify-content: center;
    width: 100%;
    padding: 16px 28px;
  }
  .hero-stats {
    bottom: 30px;
    gap: 18px;
  }
  .stat-number {
    font-size: 28px;
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .floating-item {
    display: none;
  }
  .cursor-glow {
    display: none;
  }

  .about-visual {
    height: 280px;
  }
  .cafe-illustration {
    font-size: 80px;
  }
  .about-badge {
    font-size: 14px;
    padding: 8px 14px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .menu-card {
    padding: 22px 14px;
  }
  .menu-emoji {
    font-size: 42px;
  }
  .menu-name {
    font-size: 18px;
  }
  .menu-desc {
    font-size: 12px;
  }

  .special-card {
    flex: 0 0 78vw;
    padding: 28px 22px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-actions {
    flex-direction: column;
  }

  .parallax-banner {
    min-height: 240px;
  }

  .fab-container {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }
  .fab {
    width: 52px;
    height: 52px;
  }

  section {
    padding: 60px 18px;
  }
  #info {
    padding: 60px 18px;
  }
  #menu,
  #specials,
  #social {
    padding: 60px 0;
  }
  .menu-inner,
  .specials-inner,
  .social-inner {
    padding: 0 18px;
  }
  .menu-header {
    margin-bottom: 50px;
  }

  .info-card {
    padding: 20px 18px;
    gap: 14px;
  }
  .info-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  footer {
    padding: 40px 18px;
  }
  .footer-logo {
    font-size: 36px;
    letter-spacing: 4px;
  }
  .footer-links {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    flex-direction: column;
    gap: 14px;
  }
  .stat-divider {
    display: none;
  }
  .marquee-item {
    font-size: 18px;
  }
}
