/* ============================================
   Ramona's Pizzería — Landing Page v3
   UX polished: responsive scale, card menu,
   stronger hero, legible typography, conversion focus
   Colors: Red (#C41E3A), Cream (#FFF8F0),
           Wood (#D4A574), Green (#22c55e),
           Dark (#1A0A0A)
   ============================================ */

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

/* Screen-reader only — hides visually but keeps in DOM for SEO/a11y */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(16px, 1.05vw, 18px);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1A0A0A;
  background: #FFF8F0;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1440px) {
  .container { max-width: 1280px; }
}

/* === SECTION === */
.section {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C41E3A;
  background: rgba(196, 30, 58, 0.08);
  padding: 0.4rem 1.3rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #1A0A0A;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: #555;
  font-size: clamp(1.05rem, 1.1vw, 1.25rem);
  max-width: 550px;
  margin: 0 auto;
}

/* === BUTTONS BASE === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

/* === HERO CTA BUTTONS === */
.btn-whatsapp-hero {
  background: #22c55e;
  color: #fff;
  font-size: clamp(1.15rem, 1.3vw, 1.4rem);
  padding: 1.1rem 2.5rem;
  border-radius: 14px;
  box-shadow: 0 6px 30px rgba(34, 197, 94, 0.45);
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.btn-whatsapp-hero:hover {
  background: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.55);
}

.btn-outline-hero {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  font-size: clamp(1.15rem, 1.3vw, 1.4rem);
  padding: 1.1rem 2.5rem;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}

.btn-outline-hero:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/* === CONTACT SECTION BUTTONS === */
.btn-whatsapp {
  background: #22c55e;
  color: #fff;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-phone {
  background: #1A0A0A;
  color: #fff;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  padding: 1rem 2.5rem;
  border-radius: 12px;
}

.btn-phone:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-maps {
  background: #fff;
  color: #1A0A0A;
  border: 2px solid #ddd;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
}

.btn-maps:hover {
  border-color: #C41E3A;
  color: #C41E3A;
  background: rgba(196, 30, 58, 0.04);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.35s ease;
  background: rgba(26, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.65rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(10);
  transition: filter 0.35s ease;
}

.navbar.scrolled .nav-logo-img {
  filter: none;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.6vw, 1.7rem);
  font-weight: 700;
  color: #fff;
}

.navbar.scrolled .nav-logo-text {
  color: #1A0A0A;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}

.navbar.scrolled .nav-links a {
  color: #555;
}

.nav-links a:hover {
  color: #fff;
}

.navbar.scrolled .nav-links a:hover {
  color: #C41E3A;
}

.btn-nav {
  background: #22c55e !important;
  color: #fff !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.btn-nav:hover {
  background: #16a34a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  color: #fff !important;
}

.navbar.scrolled .btn-nav {
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.25);
}

.navbar.scrolled .btn-nav:hover {
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
  background: #1A0A0A;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #0d0505;
  overflow: hidden;
}

/* Hero video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.78;
}

/* Dark vignette overlay for text legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.62) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 4rem 2rem 2rem;
}

.hero-logo {
  display: block;
  width: clamp(340px, 38vw, 520px);
  height: auto;
  margin: 0 auto 0.7rem;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,.6));
}

.hero-title.sr-only {
  /* H1 hidden visually, kept for SEO/a11y */
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  display: block;
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
}

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

/* === ABOUT === */
.about {
  background: #fff;
}

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

.about-image img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.about-text .section-tag {
  margin-bottom: 1rem;
}

.about-text p {
  color: #555;
  margin-bottom: 1.2rem;
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.7;
}

.about-text p strong {
  color: #1A0A0A;
}

.about-highlights {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFF8F0;
  padding: 0.65rem 1.2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
}

.highlight-icon {
  font-size: 1.2rem;
}

/* === MENU (card-based, not tables) === */
.menu {
  background: #FFF8F0;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category:last-of-type {
  margin-bottom: 2.5rem;
}

.menu-category-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #1A0A0A;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(196, 30, 58, 0.15);
}

/* Pizza cards grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 380px));
  gap: 1.5rem;
  justify-content: center;
}

.pizza-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pizza-card-header {
  margin-bottom: 1rem;
}

.pizza-card-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: #1A0A0A;
  margin-bottom: 0.3rem;
}

.pizza-card-header p {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: #777;
  line-height: 1.5;
}

/* Size pricing badges row */
.pizza-sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.pizza-size {
  flex: 1;
  min-width: 55px;
  text-align: center;
  background: rgba(196, 30, 58, 0.04);
  border-radius: 8px;
  padding: 0.55rem 0.3rem;
  transition: background 0.2s ease;
}

.pizza-size:hover {
  background: rgba(196, 30, 58, 0.1);
}

.pizza-size-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.pizza-size-price {
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 700;
  color: #C41E3A;
}

/* Simple item cards (promos, bebidas, espagueti) */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
  gap: 1rem;
  justify-content: center;
}

.item-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.item-card-info {
  flex: 1;
}

.item-card-info strong {
  display: block;
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  color: #1A0A0A;
  margin-bottom: 0.2rem;
}

.item-card-info span {
  display: block;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.4;
}

.item-card-price {
  font-size: clamp(1.2rem, 1.3vw, 1.35rem);
  font-weight: 700;
  color: #C41E3A;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Menu CTA */
.menu-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* === PROMOTIONS FEATURED SECTION === */
.promos {
  background: #fff;
}

.promo-card {
  background: linear-gradient(135deg, #fff 0%, #FFF8F0 100%);
  border: 2px solid rgba(196, 30, 58, 0.15);
  border-radius: 18px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.promo-card:last-child {
  margin-bottom: 0;
}

.promo-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  color: #1A0A0A;
  margin-bottom: 0.35rem;
}

.promo-card-info p {
  color: #666;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.promo-card-price {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #C41E3A;
  white-space: nowrap;
}

.promo-card-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

/* === GALLERY === */
.gallery {
  background: #fff;
  padding-top: 9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 38px rgba(0,0,0,0.13);
  z-index: 2;
}

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

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

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
  color: #555;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
}

.gallery-cta a {
  color: #C41E3A;
  font-weight: 600;
  text-decoration: underline;
}

/* === REVIEWS === */
.reviews {
  background: #FFF8F0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(196,30,58,.08);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform .2s, box-shadow .2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.review-stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: #333;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  color: #777;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-author strong {
  color: #1A0A0A;
  font-weight: 600;
}

.review-reply {
  color: #C41E3A;
  font-style: italic;
  font-size: 0.85em;
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(196,30,58,.12);
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews-cta .btn-outline {
  border: 2px solid #C41E3A;
  color: #C41E3A;
  background: transparent;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-cta .btn-outline:hover {
  background: #C41E3A;
  color: #fff;
}

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

/* === LOCATION === */
.location {
  background: #FFF8F0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.08);
  color: #C41E3A;
  border-radius: 12px;
}

.info-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  color: #1A0A0A;
  margin-bottom: 0.3rem;
}

.info-text p {
  color: #555;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
}

.info-text a {
  color: #C41E3A;
  font-weight: 600;
}

/* Location action buttons */
.location-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* === HOURS GRID === */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.3rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  gap: 1rem;
}

.hours-day {
  font-weight: 500;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  color: #444;
  white-space: nowrap;
}

.hours-time {
  font-weight: 600;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  color: #1A0A0A;
  text-align: right;
}

.hours-row-closed .hours-day,
.hours-row-closed .hours-time {
  color: #C41E3A;
  font-weight: 700;
}

.hours-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
}

/* === MAP CARD === */
.location-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  min-height: 520px;
}

.map-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #f5ead5;
}

/* === CONTACT === */
.contact {
  background: linear-gradient(135deg, #1A0A0A, #2d1510);
}

.contact-card {
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
}

.contact-card .section-title {
  color: #fff;
  margin-bottom: 0.75rem;
}

.contact-card > p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1.15rem, 1.3vw, 1.35rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-alt {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.contact-alt p {
  color: rgba(255,255,255,0.55);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  margin-bottom: 0.75rem;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-links a {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  transition: color 0.2s;
}

.contact-links a:hover {
  color: #fff;
}

.contact-links a i {
  margin-right: 0.35rem;
  font-size: 0.9rem;
  width: 1.2em;
  text-align: center;
}

/* === FOOTER === */
.footer {
  background: #120808;
  color: rgba(255,255,255,0.6);
  padding: 6rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.5rem, 1.7vw, 1.7rem);
  margin-bottom: 0.6rem;
}

.footer-logo-img {
  display: block;
  width: clamp(120px, 10vw, 160px);
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-style: italic;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.footer h4 {
  color: #fff;
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.55);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #D4A574;
}

.footer-contact li {
  font-size: clamp(0.9rem, 0.95vw, 1rem);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #D4A574;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.social-link:hover {
  color: #fff;
  background: #D4A574;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: clamp(0.9rem, 0.95vw, 0.95rem);
  color: rgba(255,255,255,0.4);
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.55);
  color: #fff;
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 4px 36px rgba(34, 197, 94, 0.7); }
}

.whatsapp-float {
  animation: float-pulse 2.5s ease-in-out infinite;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

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

@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .location-grid { gap: 2rem; }

  .hero-content { padding: 3.5rem 1.5rem 1.5rem; }
  .hero-logo { width: clamp(300px, 42vw, 460px); }
  .nav-logo-img { height: 42px; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #1A0A0A;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
  }

  .nav-links a:hover { color: #D4A574; }

  .btn-nav {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .nav-toggle { display: flex; }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-logo-img { height: 38px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-card { min-height: 350px; }
  .location-map { min-height: 350px; }

  .hero-content { padding: 3rem 1.2rem 1.2rem; }
  .hero-logo { width: clamp(240px, 58vw, 380px); }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .menu-list {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .promo-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
  }

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

  .hours-row { font-size: 0.9rem; }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }

  .nav-logo-img { height: 32px; }

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

  .btn-whatsapp-hero,
  .btn-outline-hero {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

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

  .btn {
    justify-content: center;
  }

  .btn-whatsapp,
  .btn-phone {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .container { padding: 0 1rem; }

  .menu-grid,
  .menu-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .pizza-sizes { gap: 0.3rem; }
  .pizza-size { min-width: 48px; padding: 0.35rem 0.15rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-content { padding: 2.5rem 1rem 0.8rem; }
  .hero-logo { width: clamp(200px, 65vw, 320px); }
  .hero-desc { font-size: 1rem; }

  .about-highlights {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-card {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .hours-time { text-align: left; }

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

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

  .promo-card {
    padding: 1.25rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.3rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
