/* Reset Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1000px; margin: 0 auto; padding: 20px; }

/* Navbar */
.navbar { padding: 20px 0; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: relative; z-index: 10; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; text-decoration: none; color: #2c3e50; }
.logo span { color: #007bff; }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 600; }
.btn-nav { background: #007bff; color: white !important; padding: 10px 20px; border-radius: 5px; }

/* Hero - Immagine Forzata */
.hero { 
    position: relative;
    padding: 180px 20px; 
    text-align: center; 
    background-color: #333; /* Colore di fallback */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('https://images.unsplash.com/photo-1542362567-b07e542567bc?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* La foto resta ferma, effetto premium */
    color: white;
}
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; color: white; }
.hero-description { font-size: 1.2rem; margin-bottom: 30px; color: #eee; max-width: 600px; margin: 0 auto 30px; }
.highlight { color: #007bff; }
.btn-primary { 
    background: #007bff; 
    color: #fff; 
    padding: 15px 30px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: 700; 
    display: inline-block;
}

/* Servizi */
.services { padding: 80px 0; background: #fff; }
.section-title { text-align: center; margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card { padding: 30px; border: 1px solid #ddd; border-radius: 10px; text-align: center; }
.service-card i { font-size: 2rem; color: #007bff; margin-bottom: 15px; }

/* Contatti */
.contact-section { background: #2c3e50; color: #fff; padding: 80px 0; }
.contact-box { max-width: 500px; margin: 0 auto; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border-radius: 5px; border: none; }
.btn-submit { width: 100%; padding: 15px; background: #007bff; color: #fff; border: none; cursor: pointer; border-radius: 5px; font-weight: bold; }

/* Footer */
footer { text-align: center; padding: 20px; background: #2c3e50; color: white; border-top: 1px solid #3e4f5f; }