/* ============================================
   BUNKER - Gusto Sotto Copertura
   Stylesheet principale
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Archivo+Black&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --color-brand: #03798d;
  --color-brand-light: #0499b3;
  --color-brand-dark: #025c6b;
  --color-dark: #222221;
  --color-darker: #1a1a19;
  --color-dark-soft: #2c2c2b;
  --color-white: #ffffff;
  --color-cream: #f5f0e8;
  --color-warm: #d4a853;
  --color-warm-dark: #b8922e;
  --color-orange: #e8742a;
  --color-orange-dark: #c1440e;
  --color-text: #e8e4dc;
  --color-text-muted: #a09a90;

  --font-primary: 'Lilita One', 'Impact', sans-serif;
  --font-secondary: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-darker);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Animazioni scroll --- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(26, 26, 25, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: background, box-shadow;
}

.navbar.scrolled {
  background: rgba(26, 26, 25, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo img {
  height: 38px;
  width: auto;
  transition: transform var(--transition);
}

.navbar__logo:hover img {
  transform: scale(1.05);
}

.navbar__links {
  display: flex;
  gap: 8px;
}

.navbar__links a {
  padding: 10px 20px;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-brand);
  transition: width var(--transition);
  border-radius: 1px;
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 60%;
}

.navbar__links a:hover {
  color: var(--color-brand-light);
}

.navbar__links a.active {
  color: var(--color-brand);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 25, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--color-white);
  transition: color var(--transition), transform var(--transition);
}

.mobile-menu a:hover {
  color: var(--color-brand);
  transform: scale(1.1);
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35);
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 25, 0.5) 0%,
    rgba(26, 26, 25, 0.2) 40%,
    rgba(26, 26, 25, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero__logo {
  width: 320px;
  max-width: 80vw;
  margin: 0 auto 20px;
  animation: fadeInDown 1s ease forwards;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero__subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero__cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease 0.9s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--color-brand-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 121, 141, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.btn--warm:hover {
  background: var(--color-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 116, 42, 0.4);
}

.btn--deliveroo {
  background: var(--color-white);
  color: var(--color-dark);
  border: 2px solid var(--color-white);
}

.btn--deliveroo:hover {
  background: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 121, 141, 0.4);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2;
  opacity: 0.6;
}

/* --- EVENTS BANNER --- */
.events-banner {
  background: var(--color-brand);
  padding: 14px 0;
}

.events-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.events-banner__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-white);
}

.events-banner p {
  color: var(--color-white);
  font-size: 0.95rem;
  margin: 0;
}

.events-banner strong {
  font-weight: 700;
}

/* --- SECTION TITLES --- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--color-dark);
}

.section--darker {
  background: var(--color-darker);
}

.section--brand {
  background: var(--color-brand);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-brand);
  margin-bottom: 12px;
}

.section--brand .section__tag {
  color: var(--color-warm);
}

.section__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--brand .section__subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Decorative line under titles */
.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-brand);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section--brand .section__title::after {
  background: var(--color-warm);
}

/* --- CHI SIAMO --- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform var(--transition-slow);
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, rgba(26, 26, 25, 0.5));
  border-radius: 16px;
}

.about__accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--color-brand);
  border-radius: 12px;
  z-index: -1;
}

.about__text h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.about__text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__text .highlight {
  color: var(--color-brand);
  font-weight: 600;
}

/* --- CATEGORIE (Birre, Burgers, Dolci) --- */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  transition: transform var(--transition);
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__bg {
  transform: scale(1.1);
}

/* Cards with SVG illustrations (birre, dolci) */
.category-card--illustrated .category-card__bg {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card--illustrated .category-card__bg svg {
  width: 120px;
  height: 120px;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.category-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: background var(--transition);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(3, 121, 141, 0.1) 0%,
    rgba(3, 121, 141, 0.6) 100%
  );
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
}

.category-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.category-card__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-brand);
  transition: fill var(--transition), transform var(--transition);
}

.category-card:hover .category-card__icon svg {
  fill: var(--color-white);
  transform: scale(1.1);
}

.category-card__title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.category-card__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* --- ORDINA / JUSTEAT --- */
.order-section {
  position: relative;
  overflow: hidden;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.order-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.order-gallery__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--transition);
}

.order-gallery__item:hover img {
  transform: scale(1.08);
}

.order-gallery:not(.order-gallery--quad) .order-gallery__item:first-child {
  grid-row: span 2;
}

.order-gallery:not(.order-gallery--quad) .order-gallery__item:first-child img {
  height: 100%;
}

.order-gallery--quad .order-gallery__item img {
  height: 180px;
}

.order-info h3 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.order-info p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.order-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.order-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-dark-soft);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-text);
}

.order-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--color-brand);
  flex-shrink: 0;
}

.order-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- DICONO DI NOI (Reviews) --- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--color-dark-soft);
  border-radius: 16px;
  padding: 30px;
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__avatar svg {
  width: 28px;
  height: 28px;
  fill: var(--color-text-muted);
}

.review-card__name {
  display: block;
  font-weight: 600;
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-warm);
}

.review-card__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- SEPARATORE --- */
.section-divider {
  background: var(--color-darker);
}

.divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0;
}

/* --- DOVE SIAMO --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.map-wrapper__link {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--color-brand);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-wrapper__link:hover {
  background: var(--color-brand-light);
  transform: translateY(-2px);
}

.map-wrapper__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hours {
  background: var(--color-dark-soft);
  border-radius: 16px;
  padding: 40px;
}

.hours__title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hours__subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.hours__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours__item:last-child {
  border-bottom: none;
}

.hours__day {
  font-weight: 500;
  color: var(--color-text);
}

.hours__time {
  font-weight: 600;
  color: var(--color-brand);
}

.hours__time--closed {
  color: var(--color-orange);
}

.hours__item--today {
  background: rgba(3, 121, 141, 0.1);
  margin: 0 -20px;
  padding: 14px 20px;
  border-radius: 8px;
  border-bottom-color: transparent;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__info h4 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-brand);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--color-brand);
}

.footer__social {
  text-align: right;
}

.footer__social h4 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__social-links {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark-soft);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--color-brand);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(3, 121, 141, 0.4);
}

.footer__social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--color-text);
  transition: fill var(--transition);
}

.footer__social-link:hover svg {
  fill: var(--color-white);
}

.footer__social-link--img {
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.footer__social-link--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform var(--transition);
}

.footer__social-link--img:hover {
  background: transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer__social-link--img:hover img {
  transform: scale(1.1);
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer__bottom .heart {
  color: var(--color-orange);
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 68px;
  height: 68px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 36px;
  height: 36px;
  fill: var(--color-white);
}

/* --- PAGINA MENU --- */
.page-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 40px;
  text-align: center;
  background: var(--color-dark);
}

.page-header__title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-header__subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Menu Carousel */
.menu-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.menu-carousel__track {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.menu-carousel__slides {
  display: flex;
  transition: transform 0.5s ease;
}

.menu-carousel__slide {
  min-width: 100%;
  position: relative;
}

.menu-carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 26, 25, 0.8);
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.menu-carousel__btn:hover {
  background: var(--color-brand);
  transform: translateY(-50%) scale(1.1);
}

.menu-carousel__btn--prev {
  left: -25px;
}

.menu-carousel__btn--next {
  right: -25px;
}

.menu-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.menu-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-dark-soft);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.menu-carousel__dot.active {
  background: var(--color-brand);
  transform: scale(1.2);
}

/* Menu Images Grid (fallback/alternative layout) */
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.menu-grid__item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: 700px;
  width: 100%;
}

.menu-grid__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.menu-grid__item img {
  width: 100%;
  height: auto;
}

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

.contact-info h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-brand);
}

.contact-detail__text strong {
  display: block;
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-detail__text span,
.contact-detail__text a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.contact-detail__text a:hover {
  color: var(--color-brand);
}

/* Form */
.contact-form {
  background: var(--color-dark-soft);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-dark);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(3, 121, 141, 0.15);
}

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

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

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

.form-message {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
  display: none;
}

.form-message--success {
  color: #25d366;
  display: block;
}

.form-message--error {
  color: var(--color-orange);
  display: block;
}

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 1024px) {
  .about {
    gap: 40px;
  }

  .categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-card {
    height: 300px;
  }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  .menu-carousel__btn--prev {
    left: 10px;
  }

  .menu-carousel__btn--next {
    right: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .navbar__links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 500px;
  }

  .hero__logo {
    width: 220px;
  }

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

  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__image img {
    height: 300px;
  }

  .about__accent {
    display: none;
  }

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

  .category-card {
    height: 280px;
  }

  .order-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .order-gallery:not(.order-gallery--quad) .order-gallery__item:first-child {
    grid-row: auto;
  }

  .order-gallery__item img {
    height: 150px;
  }

  .order-gallery:not(.order-gallery--quad) .order-gallery__item:first-child img {
    height: 150px;
  }

  .order-gallery--quad .order-gallery__item img {
    height: 140px;
  }

  .order-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .order-buttons .btn {
    justify-content: center;
  }

  .order-badges {
    flex-direction: column;
    gap: 10px;
  }

  .hero__subtitle {
    letter-spacing: 2px;
    font-size: clamp(0.85rem, 2.5vw, 1.2rem);
  }

  .events-banner p {
    font-size: 0.85rem;
    text-align: center;
  }

  .events-banner__content {
    flex-direction: column;
    gap: 8px;
  }

  .reviews {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 24px;
  }

  .hours {
    padding: 30px 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__info {
    text-align: center;
  }

  .footer__info h4 {
    text-align: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__social {
    text-align: center;
  }

  .footer__social-links {
    justify-content: center;
  }

  .whatsapp-btn {
    width: 62px;
    height: 62px;
    bottom: 32px;
    right: 20px;
  }

  .whatsapp-btn svg {
    width: 34px;
    height: 34px;
  }

  .contact-form {
    padding: 30px 20px;
  }

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

  .menu-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .menu-carousel__btn--prev {
    left: 8px;
  }

  .menu-carousel__btn--next {
    right: 8px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .about__text h3 {
    font-size: 1.6rem;
  }
}
