/* ═══════════════════════════════════════════════════════════════
   Ambiente Pizzeria – Custom Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --accent:        #e63946;
  --accent-dark:   #c1121f;
  --accent-light:  #ff6b6b;
  --dark:          #1a1a2e;
  --dark-card:     #16213e;
  --text-primary:  #1a1a2e;
  --text-muted:    #6c757d;
  --bg-warm:       #fdf8f3;
  --bg-dark:       #0f0f1a;
  --border-light:  rgba(0,0,0,.08);
  --shadow-sm:     0 2px 12px rgba(0,0,0,.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.18);
  --radius:        16px;
  --radius-sm:     10px;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.65;
}

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

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }

/* ─── Typography ─────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230,57,70,.1);
  padding: .35em .9em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-tag.light {
  color: #fff;
  background: rgba(255,255,255,.18);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}

.text-accent { color: var(--accent) !important; }
.text-white-75 { color: rgba(255,255,255,.75); }

.lead-text { font-size: 1.1rem; color: #444; margin-bottom: .75rem; }
.body-text  { color: #555; }

/* ─── Utility ────────────────────────────────────────────────── */
.section-padding { padding: 90px 0; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: .65em 1.6em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,.4);
}

/* ─── Navbar ──────────────────────────────────────────────────── */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#mainNav.scrolled {
  background: rgba(15,15,26,.96);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.navbar-nav .nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.85) !important;
  padding: .5rem .75rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.1);
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero-section { position: relative; height: 100dvh; min-height: 600px; }
.hero-slider, .hero-slider .swiper-wrapper { height: 100%; }
.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  max-width: 800px;
}
.hero-tagline {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: .5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}

.swiper-button-prev, .swiper-button-next {
  color: #fff !important;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1.1rem !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,.5) !important; }
.swiper-pagination-bullet-active { background: var(--accent) !important; }

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
}
.stats-bar {
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.2rem .5rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .3rem;
}

/* ─── About ────────────────────────────────────────────────────── */
.bg-light-warm { background: var(--bg-warm); }

.about-images {
  position: relative;
  padding-bottom: 3rem;
}
.about-main-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 420px;
}
.about-small-img {
  position: absolute;
  bottom: 0; right: -1.5rem;
  width: 200px; height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem; left: -1rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 5;
}
.badge-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }

.features-list { display: flex; flex-direction: column; gap: .65rem; }
.feature-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem; color: #444;
}
.feature-item i { font-size: 1.1rem; flex-shrink: 0; }

/* ─── Menu ──────────────────────────────────────────────────────── */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  border: none;
}
.menu-tab {
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .55em 1.4em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.menu-tab:hover { background: #e8e8e8; color: var(--text-primary); }
.menu-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  height: 100%;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.menu-img-wrap {
  height: 200px;
  overflow: hidden;
}
.menu-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-img-wrap img { transform: scale(1.05); }
.menu-info { padding: 1.1rem 1.2rem 1.2rem; }
.menu-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: .3rem;
}
.menu-desc { font-size: .88rem; color: var(--text-muted); margin-bottom: .5rem; }
.menu-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.menu-tag {
  display: inline-block;
  font-size: .72rem;
  padding: .2em .7em;
  border-radius: 999px;
  background: rgba(40,167,69,.12);
  color: #228b22;
  font-weight: 600;
}
.menu-tag-hot { background: rgba(230,57,70,.12); color: var(--accent); }
.menu-tag-popular { background: rgba(255,193,7,.18); color: #a07c00; }

.menu-card.horizontal .menu-img-wrap { display: none; }
.menu-card.horizontal .menu-info { padding: 1rem 1.2rem; }

/* ─── Gallery ─────────────────────────────────────────────────── */
.bg-dark-section { background: var(--bg-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(230,57,70,.0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; gap: .4rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i { font-size: 2rem; }
.gallery-overlay span { font-size: .9rem; font-weight: 600; letter-spacing: .05em; }
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0,0,0,.55);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; height: 240px; }
  .gallery-item:nth-child(4) { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}

/* ─── Rabattaktion ─────────────────────────────────────────────── */
.promo-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.promo-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.promo-main { border-color: var(--accent); }

.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4em 1em;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.promo-text { color: rgba(255,255,255,.75); line-height: 1.7; }
.promo-highlight {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: .7rem 1.2rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-top: 1rem;
}

/* Countdown */
.countdown-wrap { }
.countdown-label { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: .8rem; }
.countdown {
  display: flex; align-items: center; gap: .5rem;
}
.countdown-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  text-align: center;
  min-width: 70px;
}
.countdown-item span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.countdown-item label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin: .3rem 0 0;
  display: block;
}
.countdown-sep { font-size: 1.6rem; font-weight: 700; color: var(--accent); align-self: flex-start; padding-top: .5rem; }

/* Side promos */
.promo-side {
  flex: 1;
  display: flex; align-items: flex-start; gap: 1rem;
}
.promo-side:hover { background: rgba(255,255,255,.08); }
.promo-side-icon { font-size: 2.2rem; flex-shrink: 0; }
.promo-side-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.promo-side-text { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: .6rem; }
.promo-link { font-size: .88rem; color: var(--accent); font-weight: 600; }
.promo-link:hover { color: var(--accent-light); }

.promo-side-accent { border-color: rgba(230,57,70,.4); }

/* Newsletter form */
.newsletter-form .form-control {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,.15); border-color: var(--accent); box-shadow: none; color: #fff; }

/* ─── Testimonials ─────────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin: .5rem;
  height: auto;
}
.stars { font-size: 1.2rem; margin-bottom: .8rem; }
.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-pagination .swiper-pagination-bullet { background: var(--accent) !important; }

/* ─── News ─────────────────────────────────────────────────────── */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-img {
  position: relative;
  height: 210px; overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-category {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: .3em .8em; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .07em;
}
.news-body { padding: 1.4rem; }
.news-date { font-size: .82rem; color: var(--text-muted); margin-bottom: .6rem; display: flex; align-items: center; gap: .4rem; }
.news-title { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.3; margin-bottom: .6rem; }
.news-excerpt { font-size: .9rem; color: #555; line-height: 1.65; margin-bottom: 1rem; }
.news-link { font-size: .88rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: .3rem; }
.news-link:hover { gap: .6rem; }

/* ─── Reservation ──────────────────────────────────────────────── */
.reservation-section {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 40%, #16213e 100%);
  position: relative;
}
.reservation-section::after {
  content: '';
  position: absolute; bottom: -2px; right: 0;
  width: 50%;
  height: 300px;
  background: radial-gradient(ellipse at right bottom, rgba(230,57,70,.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  color: rgba(255,255,255,.85);
}
.contact-info-item i { font-size: 1.3rem; color: var(--accent); flex-shrink: 0; margin-top: .1rem; }
.contact-info-item strong { display: block; margin-bottom: .2rem; color: #fff; }

.reservation-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.reservation-form-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.form-control, .form-select {
  border-radius: var(--radius-sm) !important;
  border-color: #e0e0e0;
  padding: .65rem .9rem;
  font-size: .93rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,70,.12);
}
.form-label { font-size: .87rem; font-weight: 600; color: #444; margin-bottom: .35rem; }

/* ─── Map / Location ────────────────────────────────────────────── */
.location-section { position: relative; }
.location-info {
  background: var(--bg-warm);
  display: flex; align-items: center;
}
.location-info-inner { padding: 3rem 2.5rem; }
.location-details { display: flex; flex-direction: column; gap: 1.4rem; }
.location-detail-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.location-detail-item i { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.location-detail-item strong { display: block; margin-bottom: .3rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: #555; }
.location-detail-item p { margin: 0; color: #444; font-size: .93rem; }
.map-container { height: 500px; }
.map-container iframe { display: block; }

/* ─── Contact ─────────────────────────────────────────────────── */
.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card-icon {
  width: 52px; height: 52px;
  background: rgba(230,57,70,.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto .8rem;
}
.contact-card h5 { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .4rem; color: #555; }
.contact-card a { color: var(--text-primary); font-weight: 500; }
.contact-card a:hover { color: var(--accent); }
.contact-card p { color: #555; font-size: .9rem; }

.social-links { display: flex; gap: .6rem; justify-content: center; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(230,57,70,.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 70px 0 50px; }
.footer-brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.footer-about { font-size: .9rem; line-height: 1.7; }
.footer-social { display: flex; gap: .6rem; }
.footer-social .social-icon { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
.footer-social .social-icon:hover { background: var(--accent); color: #fff; }

.footer-heading {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: .3rem; }

.opening-hours-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.opening-hours-table td { padding: .35rem 0; color: rgba(255,255,255,.65); }
.opening-hours-table td:last-child { text-align: right; }
.footer-note { font-size: .78rem; color: rgba(255,255,255,.4); }

.footer-address p { font-size: .88rem; display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.65); margin-bottom: .4rem; }
.footer-address a { color: rgba(255,255,255,.65); }
.footer-address a:hover { color: var(--accent); }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 1.2rem 0;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { color: rgba(255,255,255,.45); font-size: .84rem; }
.footer-legal-links a:hover { color: var(--accent); }

/* ─── Back to top ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--accent);
  color: #fff; border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(230,57,70,.5);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ─── Responsive Fixes ────────────────────────────────────────── */
@media (max-width: 991px) {
  .about-small-img { display: none; }
  .about-badge { right: 1rem; }
  .section-padding { padding: 70px 0; }
  .location-info-inner { padding: 2.5rem 1.5rem; }
  .map-container { height: 350px; }
}

@media (max-width: 767px) {
  .hero-stats .stat-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .promo-card { padding: 1.8rem; }
  .reservation-form-card { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .contact-card-grid { grid-template-columns: 1fr 1fr; }
  .countdown { flex-wrap: wrap; gap: .4rem; }
  .countdown-sep { display: none; }
  .countdown-item { min-width: 60px; padding: .5rem .7rem; }
  .countdown-item span { font-size: 1.6rem; }
}

@media (max-width: 575px) {
  .hero-title { font-size: 2.5rem; }
  .contact-card-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}

/* ─── Animations ──────────────────────────────────────────────── */
@keyframes pulse-accent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,.4); }
  50% { box-shadow: 0 0 0 10px rgba(230,57,70,0); }
}
.btn-accent.pulse { animation: pulse-accent 2s infinite; }

/* ─── Print ────────────────────────────────────────────────────── */
@media print {
  #mainNav, .hero-slider .swiper-button-prev, .hero-slider .swiper-button-next,
  .back-to-top, .site-footer { display: none !important; }
}
