    /* Variabili CSS */
    :root {
        --primary-color: #FF8C00; /* Colore arancione scuro per richiamare il logo */
        --primary-dark: #E67E00;
        --primary-light: #FFA033;
        --dark-bg: #121212;
        --dark-bg-lighter: #1e1e1e;
        --light-text: #ffffff;
        --accent-color: #f8f8f8;
        --section-padding: 60px 20px;
        --gradient-bg: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(230, 126, 0, 0.9));
        --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        --neon-glow: 0 0 10px rgba(255, 140, 0, 0.6), 0 0 20px rgba(255, 140, 0, 0.4);
        --glassmorphism: rgba(30, 30, 30, 0.7);
      }
  
      /* Reset e stili di base */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
      }
  
      html {
        scroll-behavior: smooth;
      }
  
      body {
        font-family: 'Poppins', Arial, sans-serif;
        background-color: var(--dark-bg);
        background-image: 
          radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.15) 0%, transparent 30%),
          radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.1) 0%, transparent 40%);
        color: var(--light-text);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
      }
  
      body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent, var(--dark-bg));
        pointer-events: none;
        z-index: -1;
      }
  
      /* Animazioni */
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }
  
      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
      }
  
      @keyframes glow {
        0% { box-shadow: 0 0 5px rgba(255, 140, 0, 0.5); }
        50% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.8); }
        100% { box-shadow: 0 0 5px rgba(255, 140, 0, 0.5); }
      }
  
      /* Header e navigazione */
      /* header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 30px;
        position: fixed;
        width: 100%;
        max-width: 100vw;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: rgba(18, 18, 18, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        margin: 0;
      }
  
      .logo {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
        width: auto;
        transition: all 0.3s ease;
      }
  
      .logo img {
        height: 100%;
        width: auto;
      }
  
      header.scrolled {
        padding: 10px 30px;
      }
  
      .nav-links {
        display: flex;
        align-items: center;
        justify-content: center;
      }
  
      /* Hamburger menu */
      /*.hamburger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
      }
      
      .hamburger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--light-text);
        border-radius: 3px;
        transition: all 0.3s ease;
      }
      
      .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--primary-color);
        box-shadow: 0 0 10px var(--primary-color);
      }
      
      .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
      }
      
      .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--primary-color);
        box-shadow: 0 0 10px var(--primary-color);
      }
  
      .nav-links a {
        color: var(--light-text);
        text-decoration: none;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0 25px;
        transition: all 0.3s ease;
        position: relative;
        font-weight: 700;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
      }
  
      .nav-links a:hover,
      .nav-links a.active {
        color: var(--primary-color);
        text-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--primary-color);
      }
  
      .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: var(--primary-color);
        box-shadow: 0 0 10px var(--primary-color);
        transition: width 0.3s ease;
      }
  
      .nav-links a:hover::after,
      .nav-links a.active::after {
        width: 100%;
      }
      
      .social a {
        color: var(--light-text);
        text-decoration: none;
        font-size: 24px;
        transition: all 0.3s ease;
        margin-left: 40px;
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
      }
  
      .social a:hover {
        color: var(--primary-color);
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
      } */
  
      /* Main content */
      main {
        min-height: calc(100vh - 100px);
        animation: fadeIn 1s ease-out;
      }
  
      /* Prenotazioni section */
      .contact-section {
        padding: var(--section-padding);
        background-color: transparent;
        position: relative;
        overflow: hidden;
      }
  
      .contact-section::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 140, 0, 0.15), transparent 70%);
        border-radius: 50%;
        z-index: 0;
      }
  
      .contact-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent 70%);
        border-radius: 50%;
        z-index: 0;
      }
  
      .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 32px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        padding-bottom: 15px;
        text-shadow: 0 0 15px rgba(255, 140, 0, 0.7);
        animation: fadeIn 1s ease-out;
      }
  
      .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--primary-color);
        box-shadow: 0 0 15px 5px rgba(255, 140, 0, 0.8);
        animation: glow 2s infinite;
      }
  
      .contact-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        background-color: rgba(30, 30, 30, 0.6);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        animation: fadeIn 1s ease-out 0.3s backwards;
      }
  
      .contact-content p {
        margin-bottom: 25px;
        font-size: 18px;
        line-height: 1.8;
        text-align: center;
        animation: fadeIn 1s ease-out 0.4s backwards;
      }
  
      .contact-content p:last-child {
        margin-bottom: 0;
      }
  
      .contact-method {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 30px 0;
        animation: fadeIn 1s ease-out 0.5s backwards;
      }
  
      .contact-icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 140, 0, 0.1);
        border-radius: 50%;
        margin-bottom: 20px;
        color: var(--primary-color);
        font-size: 40px;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
      }
  
      .contact-method:hover .contact-icon {
        transform: scale(1.1);
        background-color: rgba(255, 140, 0, 0.2);
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
      }
  
      .contact-info {
        text-align: center;
      }
  
      .contact-info h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: var(--primary-color);
        text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
        animation: fadeIn 1s ease-out 0.6s backwards;
      }
  
      .contact-info p {
        font-size: 18px;
        margin-bottom: 10px;
        animation: fadeIn 1s ease-out 0.7s backwards;
      }
  
      .contact-info a {
        color: var(--light-text);
        text-decoration: none;
        transition: color 0.3s ease;
        display: inline-block;
      }
  
      .contact-info a:hover {
        color: var(--primary-color);
      }
  
      .highlight {
        color: var(--primary-color);
        font-weight: bold;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
        animation: fadeIn 1s ease-out 0.8s backwards;
      }
  
      /* Media queries */
      @media (min-width: 768px) {
        footer {
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
  
        footer p {
          transition: opacity 0.3s ease;
        }
  
        footer:hover p {
          opacity: 1;
        }
      }
      
      @supports (padding: max(0px)) {
        .hero {
          padding-left: max(20px, env(safe-area-inset-left));
          padding-right: max(20px, env(safe-area-inset-right));
        }
  
        footer {
          padding-left: max(15px, env(safe-area-inset-left));
          padding-right: max(15px, env(safe-area-inset-right));
          padding-bottom: max(20px, env(safe-area-inset-bottom));
        }
      }
      
      /* Prevent scrolling when menu is open */
      body.menu-open {
        overflow: hidden;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .contact-content {
        padding: 30px;
      }
      
      .contact-content p {
        font-size: 16px;
      }
      
      .contact-info h3 {
        font-size: 20px;
      }
  
      /* Tablet and smaller devices */
      @media (max-width: 640px) {
        .section-title {
          font-size: 26px;
        }
  
        .contact-content {
          padding: 25px;
          margin: 0 15px;
        }
      }
  
      /* Mobile phones including iPhone */
      @media (max-width: 480px) {
        .section-title {
          font-size: 22px;
          letter-spacing: 1px;
          margin-bottom: 30px;
        }
        
        .contact-content {
          padding: 20px 15px;
          border-radius: 12px;
        }
  
        .contact-content p {
          font-size: 15px;
          line-height: 1.6;
        }
        
        .contact-icon {
          width: 60px;
          height: 60px;
          font-size: 30px;
        }
  
        .contact-info h3 {
          font-size: 18px;
        }
  
        .contact-info p {
          font-size: 15px;
          margin-bottom: 8px;
        }
        
        @supports (padding: max(0px)) {
          .contact-section, 
          .instagram-promo {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
          }
        }
      }
  
      /* iPhone 5/SE (smallest iPhones) */
      @media (max-width: 320px) {
        .section-title {
          font-size: 20px;
        }
  
        .contact-content p {
          font-size: 14px;
        }
  
        .contact-icon {
          width: 50px;
          height: 50px;
          font-size: 24px;
        }
  
        .contact-info h3 {
          font-size: 16px;
        }
  
        .contact-info p,
        .highlight {
          font-size: 14px;
        }
      }
  
      /* Add a new glow animation */
      @keyframes iconGlow {
        0% { box-shadow: 0 0 10px rgba(255, 140, 0, 0.4); }
        50% { box-shadow: 0 0 30px rgba(255, 140, 0, 0.7); }
        100% { box-shadow: 0 0 10px rgba(255, 140, 0, 0.4); }
      }
  
      .contact-method .contact-icon {
        animation: iconGlow 3s infinite ease-in-out;
      }
  
      /* Improve touch targets for mobile */
      @media (max-width: 768px) {
        .contact-info a {
          padding: 8px;
        }
  
        .contact-icon {
          -webkit-tap-highlight-color: transparent;
        }
      }

      .contact-section .section-title {
        margin-top: 40px !important;
        font-size: 44px !important;
      }