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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #faf5ec;
  color: #1a1a1a;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Londrina Solid', cursive;
  color: #e82429;
  line-height: 1.2;
}

a {
  color: #e82429;
  text-decoration: none;
}

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

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #faf5ec;
  border-bottom: 2px solid #e82429;
  z-index: 100;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 45px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Londrina Solid', cursive;
  font-size: 1.3rem;
  color: #e82429;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.2s;
}

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

.nav-cta {
  background: #e82429;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #c91e22;
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #e82429;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero-logo {
  width: 180px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: #e82429;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #c91e22;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #e82429;
  border: 2px solid #e82429;
}

.btn-outline:hover {
  background: #e82429;
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #f3ede2;
}

.section h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.section p {
  margin-bottom: 16px;
}

/* ===== GOALS GRID ===== */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.goal-card {
  background: #faf5ec;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
}

.goal-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.goal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.goal-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0;
}

/* ===== EVENT ===== */
.event-date {
  font-family: 'Londrina Solid', cursive;
  font-size: 1.8rem;
  color: #e82429;
  margin-bottom: 32px;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.option-card {
  background: #f3ede2;
  border: 2px solid #e82429;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.option-badge {
  display: inline-block;
  background: #e82429;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.option-card h3 {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.option-card p {
  margin-bottom: 0;
  color: #555;
}

.ritrovo {
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ===== REALTÀ ===== */
.realta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.realta-card {
  background: #f3ede2;
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid #e82429;
}

.realta-card h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.realta-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0;
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #e82429;
  color: #fff;
  font-family: 'Londrina Solid', cursive;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.step-content p {
  margin-bottom: 12px;
}

.iban-box {
  background: #faf5ec;
  border: 2px dashed #e82429;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.iban-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.iban-label {
  font-weight: 700;
  color: #e82429;
  font-size: 0.8rem;
  text-transform: uppercase;
  min-width: 90px;
  flex-shrink: 0;
}

.iban-value {
  font-family: monospace;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-instagram a {
  color: #fff;
  text-decoration: underline;
}

.info-muted {
  color: #888;
  font-style: italic;
  font-size: 0.95rem;
}

/* ===== DEADLINE ===== */
.deadline-box {
  border: 2px dashed #e82429;
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-top: 40px;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  background: #f3ede2;
  border-left: 4px solid #e82429;
  border-radius: 8px;
  padding: 24px 28px;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #444;
}

/* ===== RITIRO BOX ===== */
.ritiro-box {
  background: #faf5ec;
  border: 2px dashed #e82429;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ritiro-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===== MAGLIA FOTO ===== */
.maglia-section {
  padding: 48px 0;
}

.maglia-foto {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: #e82429;
  color: #fff;
  text-align: center;
  padding: 48px 0;
}

.footer-logo {
  width: 60px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-title {
  font-family: 'Londrina Solid', cursive;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer p {
  opacity: 0.85;
  font-size: 0.95rem;
}

.footer-email {
  margin-top: 16px;
}

.footer-email a {
  color: #fff;
  text-decoration: underline;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #faf5ec;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 2px solid #e82429;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-logo {
    width: 130px;
  }

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

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

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

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .section h2 {
    font-size: 2rem;
  }

  .iban-box {
    flex-direction: column;
  }
  .iban-row {
    flex-direction: column;
    gap: 2px;
  }
}