/* =============================================
   FUEGO RESTAURANT – style.css
   Design: Dark / Warm orange / Fire aesthetic
   Completely different from Luxora & Velora
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
  --fire: #e8621a;
  --fire-bright: #ff8c3a;
  --fire-dark: #b84200;
  --ember: #f5c518;
  --dark: #0f0700;
  --dark2: #1a0d00;
  --dark3: #2a1800;
  --warm: #3d2200;
  --cream: #fdf6ed;
  --text: #f0e6d3;
  --text-muted: #a09070;
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(232, 98, 26, 0.25);
}

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

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

body {
  font-family: 'Heebo', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* SECTION TAGS & TITLES */
.section-tag {
  display: inline-block;
  background: rgba(232, 98, 26, 0.15);
  color: var(--fire-bright);
  border: 1px solid rgba(232, 98, 26, 0.3);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.section-head {
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-title em {
  color: var(--fire-bright);
  font-style: italic;
}

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

/* FIRE PARTICLES */
.fire-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ember) 0%, var(--fire) 50%, transparent 100%);
  animation: riseUp linear infinite;
  opacity: 0.4;
}

@keyframes riseUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100vh) scale(0.1);
    opacity: 0;
  }
}

/* MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 560px;
  max-width: 95vw;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--dark2);
  border: 1px solid rgba(232, 98, 26, 0.3);
  border-radius: 24px;
  z-index: 900;
  padding: 48px 40px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 24px 80px rgba(232, 98, 26, 0.2);
}

.modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--text-muted);
  font-size: 1.3rem;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

[dir="rtl"] .modal-close {
  left: auto;
  right: 16px;
}

.modal-close:hover {
  background: rgba(232, 98, 26, 0.2);
  color: white;
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

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

.res-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.res-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.res-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.res-field input,
.res-field select,
.res-field textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(232, 98, 26, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.res-field input:focus,
.res-field select:focus,
.res-field textarea:focus {
  outline: none;
  border-color: var(--fire);
}

.res-field select option {
  background: var(--dark2);
}

.res-field textarea {
  resize: vertical;
  min-height: 80px;
}

.guests-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guests-counter button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 98, 26, 0.2);
  color: var(--fire-bright);
  font-size: 1.2rem;
  font-weight: 700;
  border: 1px solid rgba(232, 98, 26, 0.3);
  transition: all var(--transition);
}

.guests-counter button:hover {
  background: var(--fire);
  color: white;
}

.guests-counter span {
  font-size: 1.2rem;
  font-weight: 700;
}

.guests-counter>span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* BUTTONS */
.btn-fire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232, 98, 26, 0.3);
}

.btn-fire::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-fire:hover::after {
  transform: translateX(100%);
}

.btn-fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 98, 26, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--fire-bright);
  border: 2px solid rgba(232, 98, 26, 0.5);
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-ghost-dark:hover {
  background: rgba(232, 98, 26, 0.1);
  border-color: var(--fire);
  transform: translateY(-3px);
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  padding: 0 40px;
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(15, 7, 0, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  direction: ltr;
}

.logo-flame {
  font-size: 1.4rem;
}

.logo-flame.large {
  font-size: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--fire-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50px;
  padding: 4px;
}

.lang-toggle button {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}

.lang-toggle button.active {
  background: var(--fire);
  color: white;
}

.btn-reserve-nav {
  padding: 10px 24px;
  background: var(--fire);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.btn-reserve-nav:hover {
  background: var(--fire-bright);
  transform: scale(1.04);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: white;
  display: block;
  border-radius: 2px;
  transition: all var(--transition);
}

/* HERO */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroKen 20s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from {
    transform: scale(1.05) translateX(0)
  }

  to {
    transform: scale(1.1) translateX(-2%)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 7, 0, 0.88) 0%, rgba(26, 13, 0, 0.75) 50%, rgba(15, 7, 0, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 140px 60px 80px;
  margin: 0 auto;
  text-align: center;
}

.hero-pre {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--fire-bright);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.fire-text {
  background: linear-gradient(135deg, #ff8c3a, #e8621a, #f5c518);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fireFlicker 3s ease-in-out infinite;
}

@keyframes fireFlicker {

  0%,
  100% {
    filter: brightness(1)
  }

  50% {
    filter: brightness(1.15)
  }
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
}

.hero-badge>span:nth-child(2) {
  font-weight: 700;
  color: var(--fire-bright);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-ember {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fire-bright);
  animation: emberFloat 1.5s ease-in-out infinite;
}

@keyframes emberFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 1
  }

  50% {
    transform: translateY(12px) scale(0.7);
    opacity: 0.5
  }
}

/* REVEAL */
.reveal-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.8s ease;
}

.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade.delay-1 {
  transition-delay: 0.15s;
}

.reveal-fade.delay-2 {
  transition-delay: 0.3s;
}

.reveal-fade.delay-3 {
  transition-delay: 0.45s;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 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;
}

/* MARQUEE */
.fuego-marquee {
  background: var(--fire);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-inner {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: fMarquee 30s linear infinite;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: white;
}

@keyframes fMarquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* MENU */
#menu {
  background: var(--dark2);
}

.menu-tabs {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 98, 26, 0.2);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 48px;
}

.menu-tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--fire);
  color: white;
}

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

.menu-card {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.menu-card:hover {
  border-color: rgba(232, 98, 26, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.menu-card-img {
  width: 130px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--dark3);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-icon-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

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

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu-card-top h3 {
  font-size: 1rem;
  font-weight: 700;
}

.menu-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fire-bright);
  white-space: nowrap;
}

.menu-card-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.menu-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-tags span {
  font-size: 0.72rem;
  background: rgba(232, 98, 26, 0.12);
  color: var(--fire-bright);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(232, 98, 26, 0.2);
}

/* GALLERY */
.gallery-section {
  background: var(--dark);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 7, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

/* ABOUT */
.about-section {
  background: var(--dark2);
}

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

.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about-stat-box {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--fire);
  color: white;
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(232, 98, 26, 0.4);
}

[dir="rtl"] .about-stat-box {
  left: auto;
  right: -20px;
}

.about-stat-box strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.about-stat-box span {
  font-size: 0.75rem;
  opacity: 0.85;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin: 32px 0;
}

.astat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--fire-bright);
}

.astat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA SECTION */
.cta-section-fuego {
  background: linear-gradient(135deg, var(--dark3), var(--warm));
  padding: 80px 0;
}

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

.cta-left p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.chef-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.chef-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.chef-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.chef-card>div>span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.chef-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-style: italic;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 98, 26, 0.12);
  border: 1px solid rgba(232, 98, 26, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-card div strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-card div p {
  font-size: 0.95rem;
  font-weight: 600;
}

.info-card div a {
  color: var(--fire-bright);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  gap: 16px;
  align-items: center;
}

.action-card:hover {
  border-color: rgba(232, 98, 26, 0.4);
  background: rgba(232, 98, 26, 0.06);
  transform: translateX(-4px);
}

[dir="ltr"] .action-card:hover {
  transform: translateX(4px);
}

.action-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.action-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.action-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.action-link {
  font-size: 0.85rem;
  color: var(--fire-bright);
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

/* FOOTER */
.fuego-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 0;
}

.footer-inner-f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-f {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand-f strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: white;
}

.footer-brand-f p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links-f {
  display: flex;
  gap: 32px;
}

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

.footer-links-f a:hover {
  color: var(--fire-bright);
}

.footer-social-f {
  display: flex;
  gap: 16px;
  font-size: 1.4rem;
}

.footer-bottom-f {
  padding: 20px 40px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.back-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--dark3);
  border: 1px solid rgba(232, 98, 26, 0.3);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 500;
  transition: all var(--transition);
}

.back-btn:hover {
  background: var(--fire);
  color: white;
  border-color: var(--fire);
}

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .about-grid,
  .cta-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  #navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width:600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    flex-direction: column;
  }

  .menu-card-img {
    width: 100%;
    height: 180px;
  }

  .res-row {
    grid-template-columns: 1fr;
  }
}