/* RESET DI BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Kumbh Sans', sans-serif;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* MAIN CONTAINER */
  .linktree {
    width: 100%;
    max-width: 600px; 
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .linktree__container {
    background-color: #fff;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    padding: 2rem;
  }
  
  /* LOGO PRINCIPALE */
  .linktree__logo {
    max-width: 120px;
    margin-bottom: 1rem;
  }
  
  /* TITOLI */
  .linktree__title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .linktree__subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.4;
  }
  
  /* BOTTONI */
  .linktree__button {
    display: inline-flex; /* Inline-flex per allineare l'icona e il testo orizzontalmente */
    align-items: center;  /* Centra verticalmente l'icona col testo */
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
    margin: 0.5rem auto;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    width: 80%;
    max-width: 300px;
    transition: 0.3s;
    justify-content: center; /* Centra anche orizzontalmente */
    gap: 0.5rem; /* Spaziatura tra icona e testo */
  }
  
  /* ICONA NEI BOTTONI */
  .linktree__icon {
    max-width: 24px; /* Dimensioni icona - personalizzabile */
    max-height: 24px;
    display: inline-block;
    filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.8)); /* Bordo chiaro */

  }
  
  /* Bottone Sito Web */
  .btn-site {
    background-color: #007BFF;
  }
  .btn-site:hover {
    background-color: #0056b3;
  }
  
  /* Bottone Booking */
  .btn-booking {
    background-color: #003580;
  }
  .btn-booking:hover {
    background-color: #002862;
  }
  
  /* Bottone Airbnb */
  .btn-airbnb {
    background-color: #FF5A5F;
  }
  .btn-airbnb:hover {
    background-color: #e54e53;
  }
  
  /* MEDIA QUERIES RESPONSIVE */
  @media screen and (max-width: 768px) {
    .linktree__container {
      padding: 1.5rem;
    }
    .linktree__title {
      font-size: 1.8rem;
    }
    .linktree__subtitle {
      font-size: 1rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .linktree__title {
      font-size: 1.6rem;
    }
    .linktree__subtitle {
      font-size: 0.95rem;
    }
    .linktree__button {
      width: 90%;
      padding: 0.8rem 1rem;
    }
    .linktree__logo {
      max-width: 80px;
    }
  }
  