﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a1a1a; 
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
}

.barra-navigazione {
    background-color: #00adb5; 
    display: flex;
    justify-content: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.collegamenti-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

    .collegamenti-menu a:hover {
        color: white;
    }

.pulsante-contatto, .pulsante-stato {
    background-color: #d1d5db; 
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background-color 0.2s;
}

    .pulsante-contatto:hover, .pulsante-stato:hover {
        background-color: #e5e7eb;
    }

.contenitore-principale {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.sezione-introduzione {
    margin-bottom: 50px;
}

    .sezione-introduzione h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .sezione-introduzione p {
        color: #a3a3a3;
        margin-bottom: 20px;
        max-width: 600px;
    }

.griglia-schede {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; 
}

.scheda-giorno {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 40px 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer; 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 

}

    
    .scheda-giorno:hover {
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15); 
    }

.icona{
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1;
    font-family: monospace;
}

.scheda-giorno h2 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.scheda-giorno p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer {
    background-color: #00adb5;
    padding: 20px;
    text-align: center; 
    margin-top: 60px; 
}

    footer p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        font-weight: 500;
        letter-spacing: 0.5px; 
    }
