@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500&display=swap');

:root {
  --warm-white: #F5F2DC;    /* Beige */
  --soft-cream: #DDD0C8;    /* Light Beaver */
  --espresso: #8C0D1C;      /* Carmine */
  --olive: #D81522;         /* Fire Engine Red */
  --wood: #6A4941;          /* Liver */
  --terracotta: #A99183;    /* Beaver */
  --warm-beige: #C8B5A8;    /* Beaver border */
  --muted-gray: #9A7A73;    /* Muted Liver */
  --sand: #EDE9D6;          /* Alt Beige */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--espresso);
  background-color: var(--warm-white);
  background-image: url('../images/fondo pc.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245,242,220,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(140,13,28,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

.navbar-logo img { height: 50px; width: auto; object-fit: contain; }
.navbar-logo { text-decoration: none; display: flex; align-items: center; }

.navbar-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--olive);
  transition: width 0.3s;
}

.navbar-links a:hover,
.navbar-links a.active { color: var(--olive); }
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }

.navbar-right { display: flex; align-items: center; gap: 16px; }

.navbar-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--olive);
  text-decoration: none;
  transition: color 0.3s;
}
.navbar-whatsapp:hover { color: var(--wood); }
.navbar-whatsapp svg { width: 26px; height: 26px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(245,242,220,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px 28px;
  box-shadow: 0 8px 24px rgba(140,13,28,0.12);
  z-index: 999;
  border-top: 1px solid var(--warm-beige);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--warm-beige); }
.mobile-menu ul li:last-child { border-bottom: none; }
.mobile-menu ul a {
  display: block;
  padding: 14px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu ul a:hover { color: var(--olive); }
.mobile-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  color: var(--olive);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: rgba(140,13,28,0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 20px;
  text-align: center;
}

.footer-logo { height: 44px; margin: 0 auto 20px; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-social a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

.footer-phone {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.footer-phone a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-phone a:hover { color: #fff; }

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 16px auto;
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.55); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 20px;
  animation: fadeUp 0.8s ease-out both;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 36px;
  opacity: 0.92;
  letter-spacing: 0.04em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.btn-primary { background: var(--olive); color: #fff; }
.btn-primary:hover { background: var(--wood); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ── SECTION BASE ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-inner--narrow { max-width: 700px; }
.section-inner--med { max-width: 860px; }
.section-inner--sm { max-width: 600px; }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted-gray);
  line-height: 1.75;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--terracotta);
  margin: 20px auto 0;
}

/* ── CHI SIAMO ── */
.chi-siamo { background: rgba(245,242,220,0.80); }
.chi-siamo .section-inner { text-align: center; }
.chi-siamo p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--espresso);
  margin-top: 24px;
}

/* ── EVENTI ── */
.eventi { background: rgba(237,233,214,0.78); }
.eventi .section-inner { text-align: center; }

.eventi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
  text-align: left;
}

.evento-card {
  background: rgba(255,255,255,0.88);
  padding: 32px 28px;
  border-radius: 12px;
  border-left: 4px solid var(--olive);
  box-shadow: 0 4px 20px rgba(140,13,28,0.10);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.evento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  background: var(--soft-cream);
}

.evento-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.evento-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 10px;
}
.evento-card p { font-size: 15px; color: var(--muted-gray); line-height: 1.65; }

/* ── ORARI ── */
.orari { background: rgba(221,208,200,0.82); }
.orari .section-inner { text-align: center; }

.orari-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}
.orari-table tr { transition: background 0.2s; }
.orari-table tr:hover:not(.chiuso) { background: rgba(216,21,34,0.05); }
.orari-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--warm-beige);
  font-size: 16px;
  color: var(--espresso);
}
.orari-table tr:last-child td { border-bottom: none; }
.orari-table td:first-child { font-weight: 500; text-align: left; }
.orari-table td:last-child { text-align: right; }
.orari-table tr.chiuso td { background: #F0EEEB; color: var(--muted-gray); font-style: italic; }

/* ── NEWSLETTER ── */
.newsletter { background: rgba(245,242,220,0.80); }
.newsletter .section-inner { text-align: center; }

.newsletter-form { margin-top: 32px; }
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--warm-beige);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--espresso);
  background: #fff;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(216,21,34,0.15);
}
.newsletter-form .btn { width: 100%; }

.newsletter-success {
  display: none;
  color: var(--wood);
  font-size: 16px;
  padding: 14px;
  background: rgba(106,73,65,0.1);
  border-radius: 6px;
  margin-top: 12px;
  font-weight: 500;
}

/* ── MENU PAGE ── */
.menu-intro { background: rgba(245,242,220,0.80); }
.menu-intro .section-inner { padding-bottom: 0; text-align: center; }

.category-selector {
  background: rgba(221,208,200,0.94);
  padding: 28px 20px;
  text-align: center;
  position: sticky;
  top: 70px;
  z-index: 100;
  border-bottom: 1px solid var(--warm-beige);
}

.category-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.pill {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--espresso);
  background: transparent;
  color: var(--espresso);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
}
.pill:hover { border-color: var(--wood); color: var(--wood); }
.pill.active { background: var(--olive); border-color: var(--olive); color: #fff; }

.menu-content { background: rgba(245,242,220,0.78); }
.menu-content .section-inner { max-width: 1000px; }

.category-panel { display: none; }
.category-panel.active { display: block; animation: fadeUp 0.4s ease-out; }

/* ── TEXT MENU ITEMS ── */
.menu-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--espresso);
  margin: 44px 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--olive);
  letter-spacing: 0.02em;
}
.menu-section-title:first-child { margin-top: 0; }

.menu-section-price-note {
  font-size: 13px;
  color: var(--muted-gray);
  font-style: italic;
  margin-bottom: 20px;
}

.menu-list { list-style: none; }

.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--warm-beige);
  transition: background 0.15s;
}
.menu-list-item:last-child { border-bottom: none; }
.menu-list-item:hover { background: rgba(140,13,28,0.03); margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: 4px; }

.menu-item-text { flex: 1; }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.2;
}
.menu-item-desc {
  font-size: 13px;
  color: var(--muted-gray);
  font-style: italic;
  margin-top: 3px;
  line-height: 1.5;
}
.menu-item-allergeni {
  font-size: 11px;
  color: var(--terracotta);
  margin-top: 2px;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-dots {
  border-bottom: 1px dotted var(--warm-beige);
  flex: 1;
  min-width: 20px;
  margin: 0 8px;
  position: relative;
  top: -4px;
}

@media (max-width: 600px) {
  .menu-dots { display: none; }
  .menu-list-item { flex-wrap: wrap; }
  .menu-item-price { margin-top: 4px; font-size: 16px; }
}

/* ── GALLERIA PAGE ── */
.gallery-intro { background: rgba(245,242,220,0.80); }
.gallery-intro .section-inner { text-align: center; padding-bottom: 0; }

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(245,242,220,0.70);
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-masonry .gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.3s, box-shadow 0.3s;
}

.gallery-masonry .gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
  box-shadow: 0 10px 36px rgba(0,0,0,0.18);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 6px; object-fit: contain; }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  font-size: 38px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── PRENOTA PAGE ── */

.prenota-hero {
  height: 40vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.prenota-hero .hero-bg { background-attachment: fixed; }
.prenota-hero .hero-overlay { background: rgba(0,0,0,0.5); }
.prenota-hero .hero-content h1 { font-size: 52px; }
.prenota-hero .hero-content p { font-size: 18px; }

.prenota-main { background: rgba(245,242,220,0.78); }
.prenota-main .section-inner { max-width: 1200px; }

.prenota-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.form-container {
  background: rgba(245,242,220,0.94);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--warm-beige);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: #c0392b; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--warm-beige);
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--espresso);
  background: #fff;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8178' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(216,21,34,0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e57373; box-shadow: none; }

.form-error {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
}
.form-error.show { display: block; }

.form-note { font-size: 12px; color: var(--muted-gray); margin-top: 5px; line-height: 1.5; }
.char-count { font-size: 12px; color: var(--muted-gray); text-align: right; margin-top: 4px; }

.btn-submit {
  width: 100%;
  padding: 16px 20px;
  background: var(--olive);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-submit:hover:not(:disabled) { background: var(--wood); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-submit:active:not(:disabled) { box-shadow: inset 0 2px 6px rgba(0,0,0,0.18); transform: none; }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.prenota-info { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  background: rgba(255,255,255,0.88);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.info-card-icon { font-size: 26px; margin-bottom: 10px; }
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 12px;
}
.info-card p { font-size: 14px; color: var(--muted-gray); line-height: 1.7; }
.info-card a { color: var(--olive); text-decoration: none; display: inline-block; font-weight: 500; }
.info-card a:hover { color: var(--wood); }

.orari-mini { width: 100%; border-collapse: collapse; }
.orari-mini td { padding: 6px 0; font-size: 13px; color: var(--espresso); border-bottom: 1px solid var(--warm-beige); }
.orari-mini tr:last-child td { border-bottom: none; }
.orari-mini td:last-child { text-align: right; }
.orari-mini tr.chiuso td { color: var(--muted-gray); font-style: italic; }

.booking-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 4px;
}
.booking-wa-btn:hover { background: #1da853; transform: translateY(-1px); }
.booking-wa-btn svg { width: 20px; height: 20px; }

/* Success modal */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.success-modal.open { display: flex; }
.success-modal-box {
  background: #fff;
  padding: 48px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  animation: fadeUp 0.4s ease-out;
}
.success-icon { font-size: 52px; margin-bottom: 16px; }
.success-modal-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--olive);
  margin-bottom: 12px;
}
.success-modal-box p { color: var(--muted-gray); font-size: 16px; line-height: 1.65; }
.success-modal-box .btn { margin-top: 24px; }

/* ── CONTATTI PAGE ── */
.contatti-page-hero {
  background: rgba(237,233,214,0.82);
  padding: 80px 40px;
  text-align: center;
}
.contatti-page-hero .section-title { color: var(--espresso); }

.contatti-main { background: rgba(245,242,220,0.78); }
.contatti-main .section-inner { max-width: 1200px; }

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contatti-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.contatti-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--espresso);
  margin: 28px 0 10px;
}
.contatti-info h3:first-child { margin-top: 0; }
.contatti-info p { font-size: 15px; color: var(--muted-gray); line-height: 1.75; }
.contatti-info a { color: var(--olive); text-decoration: none; }
.contatti-info a:hover { color: var(--wood); }

.contact-link-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--muted-gray);
  margin-bottom: 8px;
}
.contact-link-row svg { width: 18px; height: 18px; color: var(--olive); flex-shrink: 0; }
.contact-link-row a { color: var(--olive); text-decoration: none; }
.contact-link-row a:hover { color: var(--wood); }

.orari-table-full { margin-top: 12px; }

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.social-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid var(--warm-beige);
  font-size: 14px;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  transition: all 0.3s;
}
.social-chip:hover { background: var(--olive); color: #fff; border-color: var(--olive); }
.social-chip svg { width: 16px; height: 16px; }

.reviews-section { background: rgba(237,233,214,0.80); }
.reviews-section .section-inner { text-align: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255,255,255,0.88);
  padding: 30px 26px;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.1); }

.review-stars { color: #F4B942; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--muted-gray); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.review-author { font-size: 14px; font-weight: 500; color: var(--espresso); }
.review-date { font-size: 12px; color: var(--muted-gray); margin-top: 2px; }

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.google-logo { font-size: 22px; }
.google-rating-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: var(--espresso); }
.google-rating-stars { color: #F4B942; font-size: 18px; }
.google-rating-count { font-size: 13px; color: var(--muted-gray); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .eventi-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .prenota-layout { grid-template-columns: 1fr; }
  .contatti-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Switch to portrait marble background on mobile */
  body {
    background-image: url('../images/fondo cel.png');
    background-attachment: scroll;
    background-position: center top;
  }

  .navbar { padding: 0 20px; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .section-inner { padding: 60px 20px; }
  .section-title { font-size: 32px; }

  .hero-content h1 { font-size: 44px; }
  .hero-content p { font-size: 17px; }

  .eventi-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; padding: 20px; }

  .prenota-hero .hero-content h1 { font-size: 36px; }
  .form-container { padding: 28px 20px; }

  .contatti-page-hero { padding: 60px 20px; }
  .orari-table td { padding: 12px 12px; font-size: 14px; }
}

@media (max-width: 480px) {
  .category-pills { gap: 8px; }
  .pill { padding: 8px 18px; font-size: 13px; }
}
