@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Caveat:wght@400;600;700&family=Patrick+Hand:wght@400&display=swap');

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

:root {
  --orange: #FF6600;
  --orange-dark: #CC4F00;
  --orange-light: #FF9944;
  --paper: #FFF9F0;
  --paper-dark: #F5EDD8;
  --ink: #1E1208;
  --ink-light: #4A3728;
  --border: #2C1810;
  --shadow: rgba(44, 24, 16, 0.85);
  --yellow: #FFD166;
  --cream: #FFFBF3;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(180, 130, 80, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 130, 80, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: 'Permanent Marker', 'Comic Sans MS', cursive;
  color: var(--ink);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== NAV ===== */
nav {
  background: var(--orange);
  border-bottom: 4px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 0 var(--shadow);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
}

.nav-logo { flex: 1; }

.nav-platform-btns { flex: 1; justify-content: flex-end; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 58px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(3px 3px 0 rgba(44,24,16,0.45));
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a:not(.btn-platform) {
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  color: white;
  padding: 6px 16px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  transition: all 0.15s;
  letter-spacing: 0.5px;
}

.nav-links a:not(.btn-platform):hover,
.nav-links a:not(.btn-platform).active {
  background: white;
  color: var(--orange);
  border-color: white;
  transform: rotate(-1deg) translateY(-2px);
}

.nav-order-btn {
  font-family: 'Permanent Marker', cursive;
  font-size: 15px;
  background: white;
  color: var(--orange);
  border: 3px solid var(--border);
  box-shadow: 3px 3px 0 var(--border);
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.1s;
  display: inline-block;
}

.nav-order-btn:hover {
  transform: rotate(1deg) translateY(-2px);
  box-shadow: 5px 5px 0 var(--border);
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Permanent Marker', cursive;
  display: inline-block;
  padding: 14px 32px;
  border: 3px solid var(--border);
  box-shadow: 5px 5px 0 var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.1s ease;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 0 var(--border);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 var(--border);
}

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

.btn-secondary {
  background: white;
  color: var(--orange);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 15px;
  box-shadow: 4px 4px 0 var(--border);
}

/* ===== HERO ===== */
.hero {
  background: var(--orange);
  border-bottom: 4px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: white;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 var(--border);
  line-height: 1.1;
}

.hero-text p {
  font-size: 22px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  font-family: 'Patrick Hand', 'Caveat', cursive;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.badge {
  background: white;
  color: var(--orange);
  font-family: 'Permanent Marker', cursive;
  font-size: 13px;
  padding: 6px 14px;
  border: 2px solid var(--border);
  box-shadow: 3px 3px 0 var(--border);
  border-radius: 3px;
  transform: rotate(-1.5deg);
  display: inline-block;
}

.badge:nth-child(2) { transform: rotate(1deg); }
.badge:nth-child(3) { transform: rotate(-0.5deg); }

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero-btns .order-btns {
  display: none;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  background: white;
  border: 4px solid var(--border);
  box-shadow: 8px 8px 0 var(--border);
  border-radius: 50%;
  padding: 28px;
  transform: rotate(3deg);
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-logo-wrap img {
  width: 270px;
  height: auto;
}

/* ===== RATING STRIP ===== */
.rating-strip {
  background: var(--yellow);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.rating-item {
  text-align: center;
  font-family: 'Permanent Marker', cursive;
}

.rating-item .number {
  font-size: 32px;
  color: var(--orange);
  text-shadow: 2px 2px 0 var(--border);
  display: block;
}

.rating-item .label {
  font-size: 13px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 52px);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  height: 5px;
  background: var(--orange);
  border-radius: 3px;
  margin-top: 6px;
  transform: rotate(-1deg);
}

.section-title p {
  font-size: 19px;
  color: var(--ink-light);
  margin-top: 12px;
  font-family: 'Patrick Hand', cursive;
}

/* ===== MENU CATEGORIES ===== */
.menu-section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== MENU CAROUSEL ===== */

/* Hidden on desktop — all 3 cards visible, tabs not needed */
.carousel-tabs { display: none; }

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.cuisine-card {
  background: white;
  border: 3px solid var(--border);
  box-shadow: 7px 7px 0 var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.15s;
}

.cuisine-card:nth-child(1) { transform: rotate(-0.8deg); }
.cuisine-card:nth-child(2) { transform: rotate(0.5deg); }
.cuisine-card:nth-child(3) { transform: rotate(-0.4deg); }

.cuisine-card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 10px 10px 0 var(--border);
}

.cuisine-card-header {
  background: var(--orange);
  padding: 24px 20px 16px;
  border-bottom: 3px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.cuisine-icon {
  font-size: 40px;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.3));
}

.cuisine-card-header h3 {
  font-size: 26px;
  color: white;
  text-shadow: 2px 2px 0 var(--border);
}

.cuisine-card-body {
  padding: 20px;
}

.cuisine-card-body p {
  font-size: 17px;
  color: var(--ink-light);
  font-family: 'Patrick Hand', cursive;
  margin-bottom: 16px;
}

.menu-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--paper-dark);
}

.menu-items-list::-webkit-scrollbar {
  width: 6px;
}

.menu-items-list::-webkit-scrollbar-track {
  background: var(--paper-dark);
  border-radius: 3px;
}

.menu-items-list::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}


.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 2px dashed rgba(44,24,16,0.15);
  font-size: 17px;
  gap: 8px;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-weight: 600;
  flex: 1;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(44,24,16,0.2);
  margin: 0 8px;
  height: 14px;
}

.menu-item-price {
  font-family: 'Permanent Marker', cursive;
  color: var(--orange);
  white-space: nowrap;
  font-size: 16px;
}

a.menu-item-order {
  text-decoration: none;
  cursor: pointer;
}

a.menu-item-order:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.menu-cta {
  text-align: center;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--paper-dark);
  border-top: 4px solid var(--border);
  border-bottom: 4px solid var(--border);
  padding: 80px 24px;
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.gallery-item {
  border: 3px solid var(--border);
  box-shadow: 6px 6px 0 var(--border);
  overflow: hidden;
  background: white;
  transition: all 0.15s;
}

.gallery-item:nth-child(1) { transform: rotate(-1.5deg); }
.gallery-item:nth-child(2) { transform: rotate(1deg); }

.gallery-item:hover {
  transform: rotate(0) scale(1.02);
  box-shadow: 10px 10px 0 var(--border);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 12px 16px;
  font-family: 'Permanent Marker', cursive;
  font-size: 17px;
  background: var(--paper);
  border-top: 2px solid var(--border);
}

/* ===== INFO ROW ===== */
.info-row {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.info-card {
  background: white;
  border: 3px solid var(--border);
  box-shadow: 6px 6px 0 var(--border);
  padding: 28px 24px;
  border-radius: 4px;
}

.info-card:nth-child(1) { transform: rotate(-0.6deg); }
.info-card:nth-child(2) { transform: rotate(0.4deg); }
.info-card:nth-child(3) { transform: rotate(-0.3deg); }

.info-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 3px 3px 0 var(--border);
}

.info-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--orange);
  text-shadow: 1px 1px 0 var(--border);
}

.info-card p, .info-card a:not(.btn) {
  font-size: 17px;
  color: var(--ink-light);
  font-family: 'Patrick Hand', cursive;
  line-height: 1.6;
}

.info-card a:not(.btn):hover { color: var(--orange); text-decoration: underline; }

/* ===== SPEECH BUBBLE ===== */
.speech-bubble {
  background: var(--yellow);
  border: 3px solid var(--border);
  box-shadow: 5px 5px 0 var(--border);
  padding: 20px 28px;
  border-radius: 18px;
  position: relative;
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-size: 20px;
  color: var(--ink);
  transform: rotate(-1deg);
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 30px;
  border: 10px solid transparent;
  border-top-color: var(--border);
}

.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 32px;
  border: 9px solid transparent;
  border-top-color: var(--yellow);
  z-index: 1;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--orange);
  border-bottom: 4px solid var(--border);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  background: url('../images/logo-bw.png') center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.07;
  pointer-events: none;
}

.about-hero > * { position: relative; z-index: 1; }

.about-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  color: white;
  text-shadow: 3px 3px 0 var(--border);
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Patrick Hand', cursive;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.about-block {
  background: white;
  border: 3px solid var(--border);
  box-shadow: 7px 7px 0 var(--border);
  padding: 36px 40px;
  margin-bottom: 36px;
  border-radius: 4px;
}

.about-block:nth-child(odd) { transform: rotate(-0.5deg); }
.about-block:nth-child(even) { transform: rotate(0.4deg); }

.about-block h2 {
  font-size: 30px;
  color: var(--orange);
  text-shadow: 2px 2px 0 var(--border);
  margin-bottom: 16px;
}

.about-block p {
  font-family: 'Patrick Hand', cursive;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.highlight-list {
  list-style: none;
  margin-top: 12px;
}

.highlight-list li {
  font-family: 'Patrick Hand', cursive;
  font-size: 18px;
  padding: 8px 0 8px 36px;
  position: relative;
  color: var(--ink-light);
  border-bottom: 2px dashed rgba(44,24,16,0.12);
}

.highlight-list li::before {
  content: '★';
  position: absolute;
  left: 8px;
  color: var(--orange);
  font-size: 18px;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--orange);
  border-bottom: 4px solid var(--border);
  padding: 80px 24px 60px;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  color: white;
  text-shadow: 3px 3px 0 var(--border);
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  font-family: 'Patrick Hand', cursive;
}

.contact-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: white;
  border: 3px solid var(--border);
  box-shadow: 8px 8px 0 var(--border);
  padding: 36px 32px;
  border-radius: 4px;
  transform: rotate(-0.5deg);
}

.contact-form-wrap h2 {
  font-size: 28px;
  color: var(--orange);
  text-shadow: 2px 2px 0 var(--border);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 3px solid var(--border);
  background: var(--paper);
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--ink);
  border-radius: 3px;
  outline: none;
  transition: box-shadow 0.1s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow: 4px 4px 0 var(--orange);
  border-color: var(--orange);
}

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

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: start;
}

.contact-info-card {
  background: white;
  border: 3px solid var(--border);
  box-shadow: 5px 5px 0 var(--border);
  padding: 22px 18px;
  border-radius: 4px;
  transition: all 0.15s;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0 var(--border);
}

.contact-info-card .icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 3px 3px 0 var(--border);
}

.contact-info-card .icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h3 {
  font-size: 18px;
  color: var(--orange);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.15);
  margin-bottom: 8px;
}

.contact-info-card p, .contact-info-card a:not(.btn) {
  font-family: 'Patrick Hand', cursive;
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.5;
}

.contact-info-card a:not(.btn):hover { color: var(--orange); }

.contact-info-card .btn {
  margin-top: 12px;
  font-size: 13px;
  padding: 8px 16px;
  box-shadow: 3px 3px 0 var(--border);
}

.map-wrap {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 3px solid var(--border);
  box-shadow: 8px 8px 0 var(--border);
  display: block;
  transform: rotate(-0.3deg);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: white;
  border-top: 4px solid var(--border);
  padding: 48px 24px 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 18px;
  color: var(--orange-light);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: var(--orange-light); }

.footer-col p {
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 2px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--ink);
  color: white;
  font-family: 'Permanent Marker', cursive;
  font-size: 15px;
  padding: 10px 18px;
  border: 2px solid var(--orange);
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===== ORDER PLATFORM BUTTONS ===== */
.order-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Permanent Marker', cursive;
  font-size: 15px;
  padding: 11px 20px;
  border: 3px solid var(--border);
  box-shadow: 4px 4px 0 var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.1s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-platform:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0 var(--border);
}

.btn-platform:active {
  transform: translateY(2px);
  box-shadow: 1px 1px 0 var(--border);
}

.btn-zomato {
  background: #E23744;
  color: white;
}

.btn-swiggy {
  background: #FC8019;
  color: white;
}

.swiggy-word {
  font-family: 'Permanent Marker', cursive;
  font-size: 15px;
  line-height: 1;
  color: white;
}

/* Platform icon (Swiggy S emblem) */
.platform-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

/* Platform wordmark (Zomato text logo) */
.platform-wordmark {
  height: 22px;
  width: 70px;
  flex-shrink: 0;
  display: block;
}

/* Nav platform btn (compact) */
.nav-platform-btns {
  display: flex;
  gap: 8px;
}

.nav-platform-btns .btn-platform {
  font-size: 13px;
  padding: 8px 14px;
  box-shadow: 3px 3px 0 var(--border);
}


/* Mobile-only order buttons inside nav drawer */
.nav-mobile-order-item {
  display: none;
}

/* ===== HERO BADGES (redesigned) ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 14px;
  border: 2px solid var(--border);
  box-shadow: 3px 3px 0 var(--border);
  border-radius: 4px;
}

.hero-badge:nth-child(1) { transform: rotate(-1.5deg); }
.hero-badge:nth-child(2) { transform: rotate(1deg); }
.hero-badge:nth-child(3) { transform: rotate(-0.5deg); }

.badge-icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}

.badge-content strong {
  display: block;
  font-family: 'Permanent Marker', cursive;
  font-size: 14px;
  color: var(--orange);
  line-height: 1.2;
}

.badge-content span {
  display: block;
  font-family: 'Patrick Hand', cursive;
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.1;
}

/* ===== HERO ENTRANCE ANIMATIONS ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroScaleIn {
  from { opacity: 0; transform: rotate(3deg) scale(0.82); }
  to   { opacity: 1; transform: rotate(3deg) scale(1); }
}

.hero-text h1      { animation: heroFadeUp 0.65s ease 0.05s both; }
.hero-text > p     { animation: heroFadeUp 0.65s ease 0.2s  both; }
.hero-badges       { animation: heroFadeUp 0.55s ease 0.35s both; }
.hero-btns         { animation: heroFadeUp 0.55s ease 0.5s  both; }
.hero-logo-wrap    { animation: heroScaleIn 0.7s ease 0.25s both; }

/* Rating strip items */
.rating-item:nth-child(1) { animation: heroFadeUp 0.5s ease 0.1s both; }
.rating-item:nth-child(2) { animation: heroFadeUp 0.5s ease 0.22s both; }
.rating-item:nth-child(3) { animation: heroFadeUp 0.5s ease 0.34s both; }
.rating-item:nth-child(4) { animation: heroFadeUp 0.5s ease 0.46s both; }

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity  0.55s ease var(--stagger, 0s),
    transform 0.55s ease var(--stagger, 0s);
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Cards keep their tilt after reveal */
.cuisine-card.in-view:nth-child(1) { transform: rotate(-0.8deg); }
.cuisine-card.in-view:nth-child(2) { transform: rotate(0.5deg); }
.cuisine-card.in-view:nth-child(3) { transform: rotate(-0.4deg); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  padding: 6px;
  box-shadow: 3px 3px 0 var(--border);
  transition: box-shadow 0.1s;
}

.hamburger:hover { box-shadow: 5px 5px 0 var(--border); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--border);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 20px 32px;
    gap: 0;
  }

  /* Hide logo circle on mobile — clips badly and takes up space */
  .hero-image { display: none; }

  /* Compact badges — all 3 in one row */
  .hero-badges {
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-badge {
    padding: 6px 10px;
    gap: 6px;
    transform: none !important;
  }

  .badge-icon {
    width: 16px;
    height: 16px;
  }

  .badge-content strong { font-size: 11px; }
  .badge-content span   { font-size: 10px; }

  .order-btns { justify-content: center; }

  /* Hero buttons: platform row + See Menu below */
  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .hero-btns .order-btns {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .hero-btns .btn-yellow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-logo-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  .hero-logo-wrap img { width: 155px; }

  /* Hamburger visible */
  .hamburger { display: flex; }

  /* Nav links: slide down drawer */
  .nav-links {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--orange-dark);
    border-bottom: 3px solid var(--border);
    padding: 12px 16px 16px;
    gap: 6px;
    box-shadow: 0 6px 0 var(--border);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 99;
  }

  .nav-links.nav-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 12px 16px;
    border-color: rgba(255,255,255,0.4);
    text-align: center;
  }

  /* Mobile order buttons in drawer */
  .nav-mobile-order-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin-top: 4px;
  }

  .nav-mobile-order-item .btn-platform {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 12px 20px;
  }

  /* Hide desktop order btn */
  .nav-order-btn { display: none; }

  .contact-content     { grid-template-columns: 1fr; }
  .contact-info-grid   { grid-template-columns: 1fr 1fr; }
  .rating-strip        { gap: 24px; }

  /* Show cuisine tabs on mobile only */
  .carousel-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .carousel-tab {
    font-family: 'Permanent Marker', cursive;
    font-size: 13px;
    padding: 7px 0;
    flex: 1;
    text-align: center;
    background: white;
    color: var(--ink);
    border: 3px solid var(--border);
    box-shadow: 3px 3px 0 var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.1s;
    white-space: nowrap;
  }

  .carousel-tab.active {
    background: var(--orange);
    color: white;
  }

  /* Carousel scroll-snap track on mobile */
  .cuisine-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 8px 20px 12px;
    margin-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .cuisine-grid::-webkit-scrollbar { display: none; }

  .cuisine-card {
    flex: 0 0 calc(100vw - 64px);
    scroll-snap-align: center;
    transform: none !important;
  }

  .cuisine-card:hover { transform: none !important; }

  .nav-platform-btns { display: none; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 16px; }
  .hero-text h1 { font-size: 36px; margin-bottom: 12px; }
  .hero-text p  { font-size: 17px; margin-bottom: 24px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .btn-platform { font-size: 14px; }
}

/* ===== BACK TO TOP BUTTON ===== */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: white;
  border: 3px solid var(--border);
  box-shadow: 4px 4px 0 var(--border);
  border-radius: 4px;
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.1s ease;
  pointer-events: none;
  z-index: 1000;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0 var(--border);
}

#back-to-top:active {
  transform: translateY(2px);
  box-shadow: 1px 1px 0 var(--border);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  #back-to-top { transition: none; }
}
