* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
  }
  
  /* ===== SLIDER ===== */
  .slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .slides,
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    background: rgba(0,0,0,0.55);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
  }
  
  .hero-content p {
    margin: 15px 0;
  }
  
  .hero-content a {
    display: inline-block;
    padding: 12px 30px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
  }
  
  /* FRECCE */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,.6);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .arrow.left { left: 15px; }
  .arrow.right { right: 15px; }
  
  /* ===== SEZIONI ===== */
  section {
    padding: 70px 8%;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .about,
  .contact {
    background: #1a1a1a;
    text-align: center;
  }
  
  /* ===== MENU ===== */
  .menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  .card {
    background: #1f1f1f;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-8px);
  }
  
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .card h3 {
    margin-top: 15px;
  }
  
  .card span {
    display: block;
    margin: 10px 0 20px;
    color: #e63946;
    font-weight: 600;
  }
  
  /* ===== FOOTER ===== */
  footer {
    background: #000;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #aaa;
  }
  