/* Stile generale e reset */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Sfondo molto chiaro, quasi bianco */
    color: #333;
    line-height: 1.6;
}

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

/* Header e Navigazione */
header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #212529;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff; /* Un blu moderno per l'hover */
}

.logo img {
    height: 110px; /* Puoi cambiare questo valore per renderlo più grande o più piccolo */
    width: auto;
    display: block; /* Aiuta a rimuovere spazi extra sotto l'immagine */
}




/* Sezione Hero */
#hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://via.placeholder.com/1500x800/EAEAEA/808080?text=Sala+Prove') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Sezioni generiche */
section {
    padding: 80px 0;
    text-align: center;
}

section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sottotitolo {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Griglia Attrezzatura */
.grid-attrezzatura {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.strumento {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.strumento img {
    background-color: #f1f3f5;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 15px;
}


.strumento h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Sezione Prenotazione */
#prenota {
    background-color: #ffffff;
}

#booking-widget a {
    color: #007bff;
}

/* Footer */
footer {
    background-color: #212529;
    color: #f8f9fa;
    text-align: center;
    padding: 30px 0;
}
