/* RESET BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  /* SPLASH */
  .splash {
    position: relative;
    width: 100%;
    min-height: 100vh;
  
    background-image: url("/img/WEB_CLORI.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  
    padding: 20px;
  }
  
  /* OVERLAY */
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }
  
  /* CONTENUTO */
  .content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 100%;
    color: #ffffff;
  
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* LOGO */
  .logo {
    max-width: 180px;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* TESTI */
  h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 35px;
    opacity: 0.9;
  }
  
  /* BOTTONE */
  .btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
  
    color: #000;
    background-color: #fff;
  
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
  }
  
  /* MOBILE */
  @media (max-width: 480px) {
    .logo {
      max-width: 140px;
    }
  
    .btn {
      width: 100%;
      padding: 16px;
    }
  }
  