@font-face {
  font-family: "Aller";
  src: url("../fonts/Aller-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aller";
  src: url("../fonts/Aller-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Minion Pro";
  src: url("../fonts/MinionPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arimo";
  src: url("../fonts/Arimo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #1d4346;
  --lime: #bfd98c;
  --white: #ffffff;
  --footer-bar: #4f4c4d;
  --footer-text: #3a3a3a;
  --max: 1920px;
}

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

html {
  scroll-behavior: smooth;
  font-synthesis: none;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: "Aller", sans-serif;
  line-height: 1.35;
}

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

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

.dark-stage {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 100vh;
}

.side-decorations {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.dark-stage > *:not(.side-decorations) {
  position: relative;
  z-index: 1;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 72.5%;
  padding: 24px 0 8px;
  margin: 0 auto;
}

.partners {
  display: flex;
  align-items: center;
  gap: 37px;
  width: 269px;
  height: 42px;
  flex: 0 0 auto;
  transform: translateY(9px);
}

.partner-logo {
  display: block;
  height: auto;
  flex: 0 0 auto;
  width: 90px;
}



.logo-link {
  flex: 0 0 auto;
  transform: translate(15px, -4px);
}

.logo-maggiore {
  width: min(200px, 22vw);
  height: auto;
  margin-left:30px;
}

.wave-section {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  min-height: 900px;
}

.wave {
  position: absolute;
  left: 50%;
  top: -10%;
  width: 150%;
  height: 110%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 6%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.wave-section > *:not(.wave) {
  position: relative;
  z-index: 1;
}

.flex{
  display: flex;
  align-items: center;

}
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--white);
  border-radius: 999px;
  padding: 6px 28px !important;
  font-family: "Aller", sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.top-bar > .btn-pill {
  transform: translate(49px, 9px);
  padding-block: 3px;
}

.btn-pill.lime {
  color: var(--lime);
  border-color: var(--white);
}

.btn-pill.lime:hover,
.btn-pill.white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-pill.white {
  color: var(--white);
  font-size: 22px;
  padding: 14px 48px;
}

.hero {
  width: 72.5%;
  text-align: left;
  padding: 8px 0 0;
  margin: 0 auto;
}

.season {
  margin: 0 0 12px;
  color: var(--lime);
  font-family: "Aller", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.title {
  margin: 0;
  width: 90%;
}

.title img {
  width: 100%;
  height: auto;
}

.subtitle {
  margin: 13px 0 0;
  font-family: "Minion Pro", serif;
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--lime);
}

.discover {
  text-align: center;
  padding: 18px 20px 36px;
}

.discover h2 {
  margin-top: 60;
  color: var(--lime);
  font-family: "Aller", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: 0.18em;
}

.discover-arrow {
  display: block;
  margin: 6px auto 0;
  width: 44px;
  height: 44px;
  color: var(--white);
}

.shows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(140px, auto);
  column-gap: clamp(20px, 6vw, 120px);
  row-gap: 20px;
  /* Sotto i 1400px lascia 5vw per lato (laptop); sul desktop resta 1400px. */
  width: min(1400px, calc(100% - 10vw));
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 0 48px;
}

.show {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 16px 18px;
  align-items: stretch;
  min-height: 140px;
  height: 100%;
}

.show-photo {
  position: relative;
  height: 0;
  min-height: 100%;
}

.show-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.show-body {
  min-width: 0;
}

.show-date {
  margin: 0 0 6px;
  color: var(--lime);
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.2;
  min-height: 36px;
}

.show-day {
  font-family: "Aller", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.show-month {
  font-size: 25px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}

.show-title {
  margin: 0px 0 0;
  font-family: "Aller", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.12;
  text-transform: uppercase;
}
.show-subtitle{
  margin: 2px 0 0;
  font-family: "Aller", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.12;
}

.show-cast {
  margin: 0px 0 0;
  color: var(--lime);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.show-cast-multiple-name {
  margin: 4px 0 0;
  color: var(--lime);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.show-time {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 8px;
  color: var(--white);
  font-size: 16px;
  padding-top: 2px;
  white-space: nowrap;
}

.show-time svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-wrap {
  display: flex;
  justify-content: center;
  padding: 36px 20px 48px;
}

.btn-buy{
  font-size: 25px !important;
  padding: 15px 55px !important;
}
.contact-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 8vw 20px;
}

.social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.social img {
  width: 36px;
  height: 36px;
  display: block;
}

.ticketone-block {
  text-align: right;
  color: var(--white);
  font-family: "Ubuntu", sans-serif;
  padding-top: 8px;
}

.ticketone-logo {
  margin: 0 0 10px;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ticketone-logo sup {
  font-size: 0.55em;
  top: -0.55em;
}

.ticketone-block p {
  margin: 0;
  font-size: 18px;
}

.ticketone-block a:hover {
  color: var(--lime);
}

.construction {
  padding: 280px 8vw 90px;
  max-width: 1100px;
}

.construction-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 8px;
}

.construction-kicker svg {
  width: 42px;
  height: 28px;
  flex-shrink: 0;
}

.construction h2 {
  margin: 0;
  font-family: "Aller", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: 0.04em;
}

.construction p {
  margin: 8px 0 22px;
  color: var(--lime);
  font-size: clamp(18px, 1.8vw, 26px);
}

.ticket-info {
  background: var(--lime);
  color: var(--dark);
  padding: 72px 10vw 80px;
}

.ticket-info h2 {
  margin: 0 0 36px;
  text-align: center;
  font-family: "Aller", sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: 0.12em;
}

.ticket-copy {
  margin: 30px auto;
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.45;
}

.ticket-copy strong {
  font-weight: 500;
}

.ticket-copy p {
  margin: 40px 0 28px;
}

.ticket-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: var(--white);
  color: var(--footer-text);
  padding: 56px 6vw 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.1fr 1.2fr 1.2fr auto;
  gap: 28px 24px;
  max-width: 1500px;
  margin: 0 auto;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-nav a:hover,
.footer-col a:hover {
  color: var(--dark);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col strong {
  font-weight: 500;
}

.footer-brands {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.footer-brands img {
  width: 168px;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.footer-social img {
  width: 32px;
  height: 32px;
  display: block;
}

.legal {
  background: var(--footer-bar);
  color: #d7d7d7;
  text-align: center;
  padding: 18px 20px 22px;
  font-family: "Ubuntu", sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.legal a {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .shows {
    width: 100%;
    padding: 10px 5vw 40px;
    column-gap: 32px;
  }

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

@media (min-width: 761px) and (max-width: 1100px) {
  .wave-section {
    min-height: 560px;
  }

  .wave {
    top: 110px;
    width: 190%;
    height: 400px;
    object-fit: cover;
    object-position: 46% 32%;
  }
}

@media (max-width: 760px) {
  .side-decorations {
    display: none;
  }

  .top-bar {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: calc(100% - 32px);
    padding: 16px 0 8px;
    text-align: center;
  }

  .partners,
  .logo-link,
  .top-bar > .btn-pill {
    transform: none;
  }

  .partners {
    width: 100%;
    height: auto;
    justify-content: center;
    gap: 14px;
  }

  .partner-logo {
    width: 70px;
  }

  .flex {
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
  }

  .logo-maggiore {
    width: 150px;
    margin-left: 0;
  }

  .hero {
    width: calc(100% - 32px);
    text-align: center;
    padding-top: 12px;
  }

  .season {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .title {
    width: 100%;
  }

  .subtitle {
    font-size: 15px;
  }

  .discover {
    padding: 12px 16px 24px;
  }

  .discover h2 {
    font-size: 18px;
    letter-spacing: 0.12em;
    margin-top: 12px;
  }

  .shows {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 8px 16px 28px;
    row-gap: 22px;
    column-gap: 0;
  }

  /* Prima la colonna sinistra del desktop, poi la destra. */
  .show:nth-child(odd) {
    order: 1;
  }

  .show:nth-child(even) {
    order: 2;
  }

  .show {
    grid-template-columns: 140px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0 14px;
    min-height: 0;
    height: auto;
    align-items: start;
  }

  .show-photo {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .show-photo img {
    object-fit: contain;
    object-position: center top;
  }

  .show-body {
    grid-column: 2;
    grid-row: 1;
    padding-top: 24px;
  }

  .show-date {
    min-height: 0;
    margin-bottom: 4px;
  }

  .show-day {
    font-size: 22px;
  }

  .show-month {
    font-size: 16px;
  }

  .show-title {
    font-size: 16px;
    letter-spacing: -0.02em;
  }

  .show-subtitle {
    font-size: 12px;
  }

  .show-cast {
    font-size: 14px;
  }

  .show-time {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: start;
    font-size: 14px;
    padding-top: 0;
    margin: 0;
    z-index: 1;
  }

  .cta-wrap {
    padding: 20px 16px 28px;
  }

  .btn-buy {
    font-size: 16px !important;
    padding: 12px 28px !important;
  }

  .contact-band {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 8px 20px 12px;
    gap: 16px;
  }

  .contact-band > div:empty {
    display: none;
  }

  .ticketone-block {
    text-align: center;
    padding-top: 0;
  }

  .ticketone-logo {
    font-size: 22px;
  }

  .ticketone-block p {
    font-size: 16px;
  }

  .social {
    flex-direction: row;
    padding-top: 0;
  }

  .wave-section {
    min-height: 400px;
    overflow: hidden;
  }

  .wave {
    width: 190%;
    height: 200px;
    top: 180px;
    object-position: 46% 32%;
  }

  .construction {
    text-align: center;
    padding: 220px 24px 56px;
    max-width: none;
  }

  .construction-kicker {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .construction h2 {
    font-size: 24px;
  }

  .construction p {
    font-size: 16px;
  }

  .ticket-info {
    padding: 40px 20px 48px;
  }

  .ticket-info h2 {
    font-size: 22px;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
  }

  .ticket-copy {
    font-size: 16px;
    margin: 0;
  }

  .ticket-copy p {
    margin: 20px 0;
  }

  .site-footer {
    padding: 36px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    font-size: 13px;
  }

  .footer-brands {
    align-items: flex-start;
    grid-column: 1 / -1;
  }

  .legal {
    font-size: 11px;
    padding: 16px 16px 20px;
  }
}

@media (min-width: 481px) and (max-width: 760px) {
  .wave-section {
    min-height: calc(180px + 62.5vw);
  }

  .wave {
    height: 62.5vw;
  }
}
