    :root {
      --font-main: font-family: 'DM Sans', sans-serif;
      --black: #232023;
      --white: #fff;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: 'DM Sans', sans-serif;
      line-height: 1.6;
      background: var(--white);
      color: var(--black);
    }
    p{
      font-size: 20px;
    }
    /* NAVBAR */
    header {
      width: 100%;
      padding: 20px 0;
      text-align: center;
      border-bottom: 1px solid #232023;
      position: fixed;
      top: 0;
      background: white;
      z-index: 999;
    }

    .nav-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      gap: 25px;
    }

    nav ul li a {
      text-decoration: none;
      color: black;
      font-weight: 400;
    }

    a.linkino{
      color:#fff;
      text-decoration: none;
    }

    a.linkino:hover{
      text-decoration: underline;
      color: #fff;
    }

    a.linkino-nav{
      color:#202320;
      text-decoration: none;
    }

    a.linkino-nav:hover{
      text-decoration: underline;
      color: #202320;
    }

    a.bottoncino{
      display:inline-block; 
      padding:12px 20px; 
      background:#fff; 
      color:#202320; 
      text-decoration:none; 
      border:1px solid #232023; 
      margin-top:20px;
    }

    a.bottoncino:hover{
      background-color: #202302;
      border:1px solid #fff;
      color:#fff;
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      cursor: pointer;
      position: absolute;
      top: 25px;
      right: 25px;
      width: 25px;
      height: 18px;
      flex-direction: column;
      justify-content: space-between;
    }
    .hamburger div {
      background: #232023;
      height: 3px;
      width: 100%;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: white;
      text-align: center;
      padding-top: 120px;
    }

    .mobile-menu a {
      display: block;
      font-size: 22px;
      margin: 20px 0;
      text-decoration: none;
      color: #232023;
    }

    /* HERO */
    .hero {
      text-align: center;
      padding: 200px 20px 100px;
    }

    .hero h1 {
      font-size: 50px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 18px;
      margin: 5px 0;
    }

    /* SECTIONS */
    section {
      padding: 80px 20px;
      max-width: 1000px;
      margin: auto;
    }

    h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
    }

    .story {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .story img {
      width: 100%;
      border-radius: 4px;
    }

    /* PROGRAMMA */
    .programma-img {
      width: 100%;
      margin: auto;
      display: block;
    }

    /* LOCATION */
    .location img {
      width: 100%;
      border-radius: 4px;
    }

    .location a {
      color: black;
      font-weight: bold;
      text-decoration: underline;
    }

    /* FORM */
    form {
      display: grid;
      gap: 20px;
      max-width: 600px;
      margin: auto;
    }

    input, textarea {
      padding: 12px;
      border: 1px solid #232023;
      background: #fff;
      font-family: var(--font-main);
    }

    button {
      padding: 12px;
      border: 1px solid #232023;
      background: #232023;
      color: white;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: #444;
    }

    /* FOOTER */
    footer {
      padding: 40px 20px;
      text-align: center;
      border-top: 1px solid black;
      margin-top: 80px;
    }

    .bg_black{
      background-color: #232023;
    }
    .text_black{
      color:#232023;
    }
    .bg_white{
      background-color: #fff;
    }
    .text_white{
      color: #fff;
    }

/* HAMBURGER ANIMATION */
.hamburger {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #232023;
  transition: 0.3s;
}

/* Stato X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Countdown */
.countdown {
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
}

.count-box {
  background-color:#202320;
  padding: 20px;
  text-align: center;
  min-width: 100px;
  border-radius: 3px;
  color: #fff;
}

.count-box .num {
  font-size: 1.7rem;
  font-weight: 600;
}

.count-box .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Story */
.story-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-container p {
  font-size: 1.02rem;
}

#rsvp {
  padding: 50px;
  background-image: url('assets/img/2.png');
}

#hero{
  background-image: url('assets/img/1.png');
}



    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav ul {
        display: none;
      }
      .hamburger {
        display: flex;
        z-index: 1;
      }
      .story {
        grid-template-columns: 1fr;
      }
        .countdown {
    flex-wrap: nowrap !important;   /* impedisce l'andare a capo */
    justify-content: space-between; /* distribuisce i 4 box */
  }

  .count-box {
    min-width: 55px;         /* più stretti */
    padding: 20px;       /* meno padding */
  }

  .count-box .num {
    font-size: 1.3rem;       /* numeri più piccoli */
  }

  .count-box .label {
    font-size: 0.6rem;       /* etichetta più piccola */
    letter-spacing: 0.8px;
  }
    }