@font-face {
  font-family: "Softrock";
  src: url("./assets/fonts/Softrock.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "ComfortFont";
  src: url("./assets/fonts/font.otf") format("opentype");
  font-display: swap;
}

:root {
  --orange: #ff6b00;
  --orange-dark: #db5600;
  --orange-soft: #fff0e4;
  --blue: #073b7a;
  --blue-soft: #eaf2ff;
  --white: #ffffff;
  --text: #101820;
  --muted: #617083;
  --border: rgba(255, 107, 0, 0.22);
  --shadow: 0 22px 70px rgba(255, 107, 0, 0.16);
  --title-font: "Softrock", Impact, Arial Black, sans-serif;
  --accent-font: "ComfortFont", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--accent-font);
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: 0 12px 34px rgba(255, 107, 0, 0.12);
}

.brand,
.nav-link,
.kicker,
.stage,
.btn,
.panel-label,
.price-note,
.timeline-row strong,
.prize-grid span,
footer {
  font-family: var(--accent-font);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.nav-link {
  color: var(--orange-dark);
  font-weight: 900;
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 34px auto 0;
  min-height: 680px;
  padding: clamp(32px, 6vw, 74px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 12%, var(--blue-soft), transparent 260px),
    radial-gradient(circle at 6% 90%, var(--orange-soft), transparent 290px),
    var(--white);
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 34px solid var(--orange);
  border-radius: 50%;
  right: -150px;
  top: -140px;
  opacity: 0.16;
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 24px solid var(--blue);
  border-radius: 50%;
  left: -100px;
  bottom: -120px;
  opacity: 0.12;
}

.hero-text,
.hero-panel {
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--title-font);
  font-weight: 400;
}

h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(2.9rem, 7vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero h2 {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: clamp(1.25rem, 2.8vw, 2.15rem);
  line-height: 1.18;
}

.stage {
  display: inline-flex;
  margin: 28px 0 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-copy {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(255, 107, 0, 0.25);
}

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

.hero-panel {
  padding: 34px;
  border-radius: 32px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(255, 107, 0, 0.26);
}

.panel-label {
  margin: 0;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.price {
  margin-top: 28px;
  font-family: var(--title-font);
  font-size: clamp(4rem, 8vw, 5.8rem);
  line-height: 1;
}

.price-note {
  margin: 10px 0 0;
  font-weight: 900;
  opacity: 0.88;
}

.panel-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.panel-list span {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  font-weight: 900;
}

.section {
  width: min(1080px, calc(100% - 32px));
  margin: 86px auto 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 30px;
  border-radius: 28px;
  border: 2px solid var(--border);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(255, 107, 0, 0.08);
}

.card span {
  font-size: 1.55rem;
}

.card h3 {
  margin: 18px 0 8px;
  color: var(--orange);
  font-size: 1.55rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h2,
.signup-box h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  line-height: 1.08;
}

.program {
  padding: 46px;
  border-radius: 36px;
  background: var(--orange-soft);
  border: 2px solid var(--orange);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(255, 107, 0, 0.22);
}

.timeline-row strong {
  color: var(--blue);
  font-size: 1.3rem;
}

.timeline-row h3 {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 1.55rem;
}

.timeline-row p {
  margin: 0;
  color: var(--muted);
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.prize-grid article {
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prize-grid article.blue {
  background: var(--blue);
}

.prize-grid span {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prize-grid h3 {
  margin: 0;
  font-size: 1.55rem;
}

.prize-grid p {
  margin: 0;
  opacity: 0.88;
  font-weight: 900;
}

.signup {
  margin-bottom: 70px;
}

.signup-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 48px;
  border: 2px solid var(--orange);
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.signup-box p:not(.kicker) {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.btn.big {
  width: 100%;
  margin-top: 20px;
}

.signup-box small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue);
  font-weight: 900;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--orange-dark);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .cards,
  .prize-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .navbar {
    border-radius: 24px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    border-radius: 30px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .price {
    font-size: 3.05rem;
  }

  .cards,
  .prize-grid {
    grid-template-columns: 1fr;
  }

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

  .program,
  .signup-box {
    padding: 30px 22px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}


/* Fix font Softrock: dimensioni più equilibrate e niente accavallamenti */
h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 760px;
}

.hero h2 {
  margin-top: 24px;
  max-width: 620px;
}

.section-title h2,
.signup-box h2 {
  padding-bottom: 8px;
}

.card h3,
.timeline-row h3,
.prize-grid h3 {
  line-height: 1.12;
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.75rem;
    line-height: 1.08;
  }

  .hero h2 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .section-title h2,
  .signup-box h2 {
    font-size: 2.35rem;
    line-height: 1.12;
  }
}


/* Dynamic interactions */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar,
.hero,
.section,
footer {
  position: relative;
  z-index: 2;
}

.dynamic-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.circle-one {
  width: 310px;
  height: 310px;
  border: 32px solid var(--orange);
  right: -130px;
  top: -120px;
  opacity: 0.16;
  animation: floatOne 7s ease-in-out infinite;
}

.circle-two {
  width: 210px;
  height: 210px;
  border: 24px solid var(--blue);
  left: -90px;
  bottom: -105px;
  opacity: 0.12;
  animation: floatTwo 8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-right {
  transform: translateX(48px);
}

.slide-right.is-visible {
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.42s; }

.title-reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  filter: blur(8px);
  animation: titleIn 1s cubic-bezier(.2,.8,.2,1) 0.12s forwards;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 24px 60px rgba(255, 107, 0, 0.16);
}

.magnetic {
  will-change: transform;
}

.panel-list span,
.timeline-row {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.panel-list span:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.26);
}

.timeline-row:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 36px rgba(255, 107, 0, 0.12);
}

.brand-mark {
  animation: pulseLogo 2.8s ease-in-out infinite;
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes floatOne {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-18px,20px,0); }
}

@keyframes floatTwo {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(22px,-16px,0); }
}

@media (max-width: 900px) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .title-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* V5 — layout più centrato e ridimensionato */
body {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 107, 0, 0.06), transparent 280px),
    radial-gradient(circle at 90% 18%, rgba(7, 59, 122, 0.05), transparent 260px),
    var(--white);
}

.navbar {
  width: min(1040px, calc(100% - 32px));
}

.hero {
  width: min(1040px, calc(100% - 32px));
  min-height: auto;
  padding: clamp(28px, 4.4vw, 54px);
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

h1 {
  font-size: clamp(2.55rem, 5.6vw, 4.85rem);
  line-height: 1.08;
  max-width: 620px;
}

.hero h2 {
  font-size: clamp(1.15rem, 2.1vw, 1.75rem);
  line-height: 1.25;
  margin-top: 18px;
}

.hero-copy {
  max-width: 540px;
  font-size: 1.02rem;
  line-height: 1.62;
}

.hero-panel {
  width: 100%;
  max-width: 340px;
  justify-self: center;
  padding: 28px;
  border-radius: 28px;
}

.price {
  font-size: clamp(3.1rem, 5.4vw, 4.4rem);
}

.panel-list {
  margin-top: 26px;
}

.panel-list span {
  padding: 13px 14px;
  font-size: 0.95rem;
}

.section {
  width: min(980px, calc(100% - 32px));
  margin-top: 64px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
  text-align: center;
}

.card h3 {
  font-size: 1.32rem;
}

.program {
  padding: clamp(26px, 4vw, 38px);
}

.section-title {
  margin-bottom: 22px;
}

.section-title h2,
.signup-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.timeline-row {
  grid-template-columns: 96px 1fr;
  padding: 20px;
}

.timeline-row h3 {
  font-size: 1.35rem;
}

.signup-box {
  max-width: 760px;
  padding: clamp(30px, 4vw, 42px);
}

footer {
  width: min(980px, calc(100% - 32px));
}

.prizes {
  display: none !important;
}

.dynamic-circle.circle-one {
  width: 250px;
  height: 250px;
  right: -120px;
  top: -110px;
}

.dynamic-circle.circle-two {
  width: 170px;
  height: 170px;
  left: -80px;
  bottom: -90px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  h1,
  .hero h2,
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }

  .hero-panel {
    max-width: 460px;
  }
}

@media (max-width: 720px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    margin-top: 48px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 28px 20px;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.13;
  }

  .hero h2 {
    font-size: 1.18rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .section-title h2,
  .signup-box h2 {
    font-size: 2.05rem;
  }

  .price {
    font-size: 3.3rem;
  }
}


/* V6 — sfondo radial gradient arancione, niente box pesanti */
body {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 107, 0, 0.34) 0%, rgba(255, 107, 0, 0.18) 22%, rgba(255, 107, 0, 0.07) 42%, rgba(255, 255, 255, 0) 68%),
    var(--white);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -18%;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 107, 0, 0.28), rgba(255, 255, 255, 0) 58%);
  filter: blur(72px);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(7, 59, 122, 0.08), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(7, 59, 122, 0.06), transparent 26%);
  z-index: 0;
}

.navbar {
  border: 0;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.hero {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: clamp(34px, 6vw, 74px);
  padding-bottom: clamp(34px, 6vw, 74px);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.38);
  color: var(--text);
  border: 1px solid rgba(255, 107, 0, 0.28);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.hero-panel .panel-label,
.hero-panel .price,
.hero-panel .price-note {
  color: var(--orange);
}

.panel-list span {
  background: rgba(255, 255, 255, 0.46);
  color: var(--blue);
  border: 1px solid rgba(255, 107, 0, 0.16);
}

.panel-list span:hover {
  background: rgba(255, 255, 255, 0.68);
}

.card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 12px 18px;
}

.card span {
  font-size: 2.3rem;
}

.card h3 {
  color: var(--orange);
}

.program {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.program::before {
  display: none;
}

.timeline-row {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 107, 0, 0.18);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.timeline-row:hover {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.62);
}

.signup-box {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-left: clamp(20px, 4vw, 42px);
  padding-right: clamp(20px, 4vw, 42px);
}

.signup-box::before {
  display: none;
}

.btn.primary {
  box-shadow: 0 16px 44px rgba(255, 107, 0, 0.22);
}

.btn.outline {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}

.cursor-glow {
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18), transparent 68%);
}

.circle-one {
  border-color: var(--orange);
  opacity: 0.11;
}

.circle-two {
  border-color: var(--blue);
  opacity: 0.08;
}

.section-title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: transparent;
}


/* V7 — icone outline bianche al posto delle emoji */
.cards {
  align-items: start;
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.card > span {
  display: none !important;
}

.icon-outline {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 6px;
}

.icon-outline svg {
  width: 52px;
  height: 52px;
  stroke: #ffffff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  filter: drop-shadow(0 8px 20px rgba(255, 107, 0, 0.22));
}

.card h3 {
  margin-top: 0;
}

@media (max-width: 720px) {
  .icon-outline {
    width: 64px;
    height: 64px;
  }

  .icon-outline svg {
    width: 46px;
    height: 46px;
  }
}


/* V8 — icona padel più simile al reference, bianca e snella */
.icon-outline.padel-icon svg {
  width: 58px;
  height: 58px;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.10));
}

.icon-outline.padel-icon {
  margin-bottom: 8px;
}

@media (max-width: 720px) {
  .icon-outline.padel-icon svg {
    width: 52px;
    height: 52px;
  }
}


/* V9 — form iscrizione al posto del bottone Google Form */
.signup-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.form-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 18px auto 34px;
}

.event-form {
  width: min(620px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 10px;
  text-align: left;
  font-family: var(--accent-font);
}

.form-field span {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.form-field input {
  width: 100%;
  height: 64px;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px);
  color: var(--blue);
  font-family: var(--accent-font);
  font-size: 1rem;
  font-weight: 800;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.form-field input::placeholder {
  color: rgba(7, 59, 122, 0.48);
}

.form-field input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.74);
  transform: translateY(-2px);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 620px) {
  .form-field input {
    height: 58px;
    border-radius: 28px;
  }
}


/* V10 — form aggiornato */
.signup-form-wrap h2 {
  color: var(--orange);
  text-transform: uppercase;
}

.event-form {
  gap: 20px;
}


/* Refined sport icon: slimmer white padel racket based on reference */
.icon-outline.padel-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}

.icon-outline.padel-icon svg {
  width: 62px;
  height: 62px;
  overflow: visible;
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.08));
}

.icon-outline.padel-icon .p-head,
.icon-outline.padel-icon .p-neck,
.icon-outline.padel-icon .p-handle-1,
.icon-outline.padel-icon .p-handle-2 {
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-outline.padel-icon .p-ball {
  stroke: #ffffff;
  stroke-width: 1.8;
  fill: none;
}

.icon-outline.padel-icon .p-dot {
  fill: #ffffff;
  stroke: none;
}

@media (max-width: 720px) {
  .icon-outline.padel-icon {
    width: 72px;
    height: 72px;
  }

  .icon-outline.padel-icon svg {
    width: 56px;
    height: 56px;
  }
}


/* Exact padel image icon based on uploaded reference */
.icon-outline.padel-photo-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}

.icon-outline.padel-photo-icon img {
  width: 48px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.08));
}

@media (max-width: 720px) {
  .icon-outline.padel-photo-icon {
    width: 58px;
    height: 58px;
  }

  .icon-outline.padel-photo-icon img {
    width: 43px;
  }
}


/* V11 — nota privacy sotto il form */
.privacy-note {
  width: min(620px, 100%);
  margin: 18px auto 0;
  color: rgba(7, 59, 122, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: left;
}

@media (max-width: 620px) {
  .privacy-note {
    font-size: 0.8rem;
  }
}


/* V12 — privacy note smaller, centered, like reference */
.privacy-note {
  width: min(760px, 100%);
  margin: 16px auto 0;
  color: rgba(7, 59, 122, 0.52);
  font-size: 0.74rem;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0;
  font-weight: 500;
}

@media (max-width: 620px) {
  .privacy-note {
    width: min(100%, 320px);
    font-size: 0.68rem;
    line-height: 1.7;
  }
}


/* V13 — sezione collaborazioni */
.partners {
  text-align: center;
  margin-top: 54px;
  margin-bottom: 10px;
}

.partners-label {
  margin: 0 0 18px;
  color: rgba(7, 59, 122, 0.62);
  font-family: var(--accent-font);
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.partners-logos img {
  display: block;
  height: auto;
  object-fit: contain;
}

.partners-logos img:first-child {
  width: 146px;
}

.partners-logos img:last-child {
  width: 168px;
}

@media (max-width: 620px) {
  .partners {
    margin-top: 42px;
  }

  .partners-logos {
    gap: 24px;
  }

  .partners-logos img:first-child {
    width: 118px;
  }

  .partners-logos img:last-child {
    width: 138px;
  }
}



/* V14 — compact footer with exact uploaded logos */
.footer-compact {
  width: min(920px, calc(100% - 32px));
  margin: 42px auto 22px;
  padding: 10px 8px 0;
  display: block;
  text-align: center;
}

.footer-collab-label {
  margin: 0 0 12px;
  color: rgba(7, 59, 122, 0.55);
  font-family: var(--accent-font);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-logos img {
  display: block;
  height: auto;
  object-fit: contain;
}

.footer-logos img:first-child {
  width: 84px;
}

.footer-logos img:last-child {
  width: 84px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(7, 59, 122, 0.70);
  font-family: var(--accent-font);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  padding-top: 2px;
}

.footer-meta a {
  color: var(--orange-dark);
  font-weight: 800;
}

@media (max-width: 620px) {
  .footer-compact {
    width: min(100%, calc(100% - 24px));
    margin: 34px auto 18px;
    padding-top: 6px;
  }

  .footer-collab-label,
  .footer-meta {
    font-size: 0.66rem;
  }

  .footer-logos {
    gap: 16px;
    margin-bottom: 10px;
  }

  .footer-logos img:first-child {
    width: 72px;
  }

  .footer-logos img:last-child {
    width: 72px;
  }
}


/* V15 — Netlify Forms setup */
.hidden {
  display: none !important;
}

.event-form button[type="submit"] {
  cursor: pointer;
}


/* Success page */
.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  position: relative;
  z-index: 2;
}

.success-box {
  width: min(720px, 100%);
  text-align: center;
  padding: clamp(34px, 6vw, 70px);
}

.success-box h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
}

.success-box p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 22px auto 30px;
  max-width: 560px;
}
