/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.cta-button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

/* COSA SECTION */
.cosa {
    padding: 6rem 0;
    background: #f5f5f5;
}

.intro {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pillar h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d32f2f;
}

/* PROGRAMMA SECTION */
.programma {
    padding: 6rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    margin-bottom: 3rem;
    padding-left: 3rem;
    border-left: 3px solid #d32f2f;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 13px;
    height: 13px;
    background: #d32f2f;
    border-radius: 50%;
}

.time {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* MODULI SECTION */
.moduli {
    padding: 6rem 0;
    background: #f5f5f5;
}

.moduli-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.modulo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.modulo.featured {
    border: 3px solid #d32f2f;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d32f2f;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #d32f2f;
    margin: 1rem 0;
}

.features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.duration, .target {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
}

.btn-modulo {
    display: inline-block;
    background: #333;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-modulo.primary {
    background: #d32f2f;
}

.btn-modulo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.posti-limitati {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d32f2f;
    margin-top: 2rem;
}

/* CHI SIAMO SECTION */
.chi-siamo {
    padding: 6rem 0;
}

.bio {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.bio img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.bio-text h3 {
    margin-bottom: 0.5rem;
}

.role {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.partners-title {
    text-align: center;
    margin: 3rem 0 2rem;
}

.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
}

.partner h4 {
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

/* FAQ SECTION */
.faq {
    padding: 6rem 0;
    background: #f5f5f5;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #d32f2f;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .bio {
        flex-direction: column;
        text-align: center;
    }
    
    .modulo.featured {
        transform: none;
    }
}
.site-header {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.header-logo {
    width: 60px;
    height: 60px;
}
