* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      
      font-family: 'Montserrat', sans-serif;
     
    }

    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      background: white;
    }
    .margin-top-200 {
      margin-top: 200px;
    }

    .video-container {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      overflow: hidden;
    }

    .video-container iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120vw;
      height: 120vh;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      z-index: 10;
    }

    header .logo {
      font-weight: bold;
      color: white;
      font-size: 1.5rem;
    }
    .logo img {
      width: 100px;
      height: auto;
    }

    nav {
      display: flex;
      gap: 1.5rem;
      height: 50px;
      line-height: 50px;;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
    }
    .hero {
      position: absolute;
      top: 90%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      font-size: 3rem;
      font-weight: 700;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }
    .omaggio {
        margin-bottom: 50px;
        z-index: 10;
        background-image: url('/images/omaggio-zigolo.jpg');
        height: 250px;
        background-size: cover;
    }

    /* Responsive Menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    p {
        color: white;
        text-decoration: none;
        font-size: 13px;
    }
    a {
        color: white;
        text-decoration: none;
    
    }
    .col-footer {
      color: white;
      font-size: 16px;
    }
    .text-left {
      text-align: left;
    }
    .menu-toggle span {
      height: 3px;
      width: 25px;
      background: white;
      margin: 4px 0;
      border-radius: 2px;
    }
    .card {
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: scale(1.02);
    }

    .filter-select {
      max-width: 300px;
      margin: 2rem auto;
    }

    .card img {
      height: auto;
      object-fit: cover;
    }
    .schede-offerte {
        padding-top: 130px;
        
    }
    .tasto {
      background-color: #007bff;
      color: white;
      padding: 10px 10px;
      line-height: 30px;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }
    footer {
        background-color: #06c;
        color: white;
        height: 200px;
        text-align: center;
        padding:60px 0;
        bottom: 0;
        width: 100%;
        font-size: 12px;
    }
     .footer {
        background-color: #06c;
        color: white;
        text-align: center;
        padding: 5px 0;
        position: absolute;
        bottom: 0;
        width: 100%;
        font-size: 12px;
    }
    
    .contact-wrapper {
      background-color: rgba(255,255,255,0.95);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }

    .form-control, .btn {
      border-radius: 8px;
    }

    .contact-info {
      margin-top: 2rem;
    }

    .contact-info h5 {
      font-weight: bold;
    }

    .contact-info p {
      margin: 0;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0,0,0,0.8);
        flex-direction: column;
        padding: 1rem;
        border-radius: 8px;
      }

      nav.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    } 