/* ============================================
   PADENGHE HALF MARATHON 2026
   Colors: navy #1e3169 | red #c0292b | white #fff
   ============================================ */

:root {
  --navy: #1e3169;
  --navy-light: #2a4494;
  --red: #c0292b;
  --red-light: #e03032;
  --gold: #c9a84c;
  --white: #ffffff;
  --gray-100: #f5f6f8;
  --gray-200: #e8eaef;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --green-ita: #009246;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.section-title span { color: var(--red); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }
section:nth-child(even) { background: var(--gray-100); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 1rem 0;
}

#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.6rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-links a:hover { background: rgba(255,255,255,0.15); }

.nav-cta {
  background: var(--red) !important;
  border-radius: 6px !important;
}

.nav-cta:hover { background: var(--red-light) !important; }

.nav-lang { opacity: 0.75; font-size: 0.8rem !important; border: 1px solid rgba(255,255,255,0.35) !important; border-radius: 4px !important; }
.nav-lang:hover { opacity: 1; background: rgba(255,255,255,0.15) !important; }

/* location links */
.loc-link { color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(0,0,0,0.3); white-space: nowrap; }
.loc-link:hover { color: var(--navy); border-bottom-color: var(--navy); }

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

/* ── HERO BACKGROUND SLIDESHOW ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero-bg-slide.active { opacity: 1; }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14,25,64,0.85) 0%, rgba(13,31,74,0.78) 50%, rgba(26,10,10,0.85) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(192,41,43,0.12) 0%, transparent 60%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 1; }

.hero-edition {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: min(220px, 40vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hero-title span { color: var(--red); }

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255,255,255,0.75);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.hero-date {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-location {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.countdown-block {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  min-width: 80px;
  backdrop-filter: blur(10px);
}

.countdown-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 20px rgba(192,41,43,0.4);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,41,43,0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

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


/* ── IBAN COPY ── */
.iban-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.iban-copy-btn {
  background: var(--navy);
  color: white;
  border: none;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.iban-copy-btn:hover { background: var(--navy-light); }
.iban-copy-btn.copied { background: var(--green-ita); }

/* ── GARE CARDS ── */
.gare-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.gare-walk-row {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.gara-card.walk {
  max-width: 520px;
  width: 100%;
}

.gara-card.walk .gara-distance { font-size: 2.8rem; }
.gara-card.walk .gara-card-header { padding: 1.25rem 1.5rem; }
.gara-card.walk .gara-card-body { padding: 1rem 1.5rem; }
.gara-card.walk .gara-info-row { padding: 0.45rem 0; }

@media (max-width: 640px) {
  .gare-main { grid-template-columns: 1fr; }
  .gara-card.walk { max-width: 100%; }
}

.gara-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}

.gara-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gara-card-header {
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.gara-card-header::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.1;
  background: white;
}

.gara-card.km21 .gara-card-header { background: var(--red); }
.gara-card.km9  .gara-card-header { background: var(--green-ita); }
.gara-card.walk .gara-card-header { background: #4a6080; }

.gara-distance {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.gara-distance sup {
  font-size: 1.8rem;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.gara-type {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.gara-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

.gara-card-body { padding: 1.5rem; }

.gara-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}

.gara-info-row:last-child { border-bottom: none; }

.gara-info-row .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.gara-info-row strong { color: var(--navy); }

/* ── PROGRAMMA ── */
.programma-day {
  margin-bottom: 3rem;
}

.programma-day-title {
  font-size: 1.3rem;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: white;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.programma-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.programma-table tr { border-bottom: 1px solid var(--gray-200); }
.programma-table tr:last-child { border-bottom: none; }
.programma-table tr:hover { background: var(--gray-100); }

.programma-table td {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.programma-table .time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  width: 100px;
}

.programma-table .tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  margin-left: 0.5rem;
  letter-spacing: 0.06em;
}

.tag-21k { background: var(--navy); color: white; }
.tag-9k  { background: var(--red); color: white; }
.tag-all { background: var(--gray-600); color: white; }

/* ── ISCRIZIONI ── */
.iscrizioni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.quote-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.quote-card-header {
  background: var(--navy);
  color: white;
  padding: 1.25rem 1.5rem;
}

.quote-card.red .quote-card-header   { background: var(--red); }
.quote-card.red2 .quote-card-header  { background: white; border: 2px solid var(--red); border-bottom: 3px solid var(--red); border-radius: 12px 12px 0 0; }
.quote-card.red2 .quote-card-title   { color: var(--red); }
.quote-card.red2 .quote-card-sub     { color: var(--gray-600); }
.quote-card.red2                     { border: none; }
.quote-card.green .quote-card-header { background: var(--green-ita); }

.quote-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.quote-card-sub {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.15rem;
}

.quote-rows { padding: 0.5rem 0; }

.quote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}

.quote-row:last-child { border-bottom: none; }

.quote-row .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.quote-card.red .price   { color: var(--red); }
.quote-card.red2 .price  { color: var(--red); }
.quote-card.green .price { color: var(--green-ita); }

.how-to-register {
  margin-top: 3rem;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.how-to-register h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.register-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.register-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: 10px;
}

.register-method .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.register-method h4 {
  font-size: 0.9rem;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.2rem;
}

.register-method p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.iban-box {
  margin-top: 1.5rem;
  background: var(--gray-100);
  border-left: 4px solid var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

.iban-box strong { display: block; margin-bottom: 0.25rem; color: var(--navy); }
.iban-code { font-family: monospace; font-size: 1rem; letter-spacing: 0.05em; }

/* ── MONTEPREMI ── */
.premi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.premi-table-wrap {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.premi-table-header {
  background: var(--navy);
  color: white;
  padding: 1rem 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.premi-table {
  width: 100%;
  border-collapse: collapse;
}

.premi-table th {
  background: var(--gray-100);
  padding: 0.7rem 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  text-align: left;
}

.premi-table td {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-200);
}

.premi-table tr:last-child td { border-bottom: none; }

.premi-table .pos {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.premi-table .pos-1 { color: #d4af37; }
.premi-table .pos-2 { color: #9e9e9e; }
.premi-table .pos-3 { color: #cd7f32; }

.premi-table .amount {
  font-weight: 700;
  color: var(--gray-800);
}

.bonus-section {
  margin-top: 2rem;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.bonus-section h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bonus-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 1rem;
}

.bonus-card h4 {
  font-size: 0.85rem;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--navy);
}

.bonus-card ul {
  list-style: none;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.bonus-card ul li {
  display: flex;
  justify-content: space-between;
}

.bonus-card ul li span:last-child { font-weight: 700; }

/* ── PERCORSO ── */
#percorso { padding: 5rem 0; }

.percorso-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  position: relative;
}

.percorso-wrap img { width: 100%; display: block; }

.percorso-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ── INFO UTILI ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.info-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.info-card p, .info-card li {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.info-card ul { list-style: none; }
.info-card ul li::before { content: '→ '; color: var(--red); font-weight: 700; }

.hotel-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hotel-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.85rem;
}

.hotel-card strong { display: block; color: var(--navy); margin-bottom: 0.3rem; font-size: 0.95rem; }

/* ── SPONSOR ── */
#sponsor { padding: 4rem 0; }

.sponsor-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
  text-align: center;
  margin-bottom: 1rem;
}

.sponsor-featured {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.sponsor-featured .sponsor-item {
  height: 150px;
  border: 2px solid rgba(30, 49, 105, 0.12);
}

.sponsor-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0 0 2rem;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sponsor-item {
  background: white;
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: all 0.2s;
  height: 120px;
}

.sponsor-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.sponsor-item a { display: flex; align-items: center; justify-content: center; }

.sponsor-item img {
  max-height: 76px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(10%);
  transition: filter 0.2s;
}

.sponsor-item:hover img { filter: grayscale(0%); }

.sponsor-item:hover img { filter: grayscale(0%); }

@media (max-width: 700px) {
  .sponsor-featured { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .sponsor-extra { display: none; }
  .sponsor-extra.open { display: grid; }
  .sponsor-toggle-btn {
    display: block;
    margin: 1.25rem auto 0;
    padding: 0.65rem 1.75rem;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
  }
}
@media (min-width: 701px) { .sponsor-toggle-btn { display: none; } }

/* ── ACCORDION ── */
.accordion-toggle {
  width: 100%;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  margin-top: 1.5rem;
}

.accordion-toggle:hover { background: var(--gray-200); }

.accordion-arrow {
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-toggle.open .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
  display: none;
  margin-top: 0.5rem;
}

.accordion-body.open { display: block; }

/* ── CONTATTI ── */
#contatti { background: var(--navy); color: white; padding: 5rem 0; }

#contatti .section-title { color: white; }
#contatti .section-subtitle { color: rgba(255,255,255,0.6); }

.contatti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contatto-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}

.contatto-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }

.contatto-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contatto-card p, .contatto-card a {
  color: white;
  font-size: 0.95rem;
  word-break: break-all;
}

.contatto-card a:hover { color: var(--red); }

/* ── FOOTER ── */
footer {
  background: #0d1428;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
}

footer strong { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
/* navbar: hamburger anche su tablet (fino a 1200px) */
@media (max-width: 1200px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; padding: 0.75rem 2rem; }
  .nav-hamburger { display: flex; z-index: 1001; }
  #navbar { padding: 1.25rem 0; }
  #navbar.scrolled { padding: 0.9rem 0; }
  .nav-brand { font-size: 1.35rem; }
}

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

  .premi-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .hotel-cards { grid-template-columns: 1fr; }

  .countdown { gap: 0.5rem; }
  .countdown-block { min-width: 64px; padding: 0.75rem; }
}
