/* Qui metti lo sfondo con l'immagine solo per la home */
body {
    background: url('../img/sfondo.jpg') no-repeat center center fixed;
    background-size: cover;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: rgba(255, 255, 255, 0.6);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a.active {
    color: #d35400;
}

.logo {
    height: 50px;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: rgba(255, 255, 255, 0.6);
}

.intro, .content, .form-section, .blog {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.85);
    margin: 20px;
    border-radius: 10px;
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #aaa;
}

button {
    padding: 12px 20px;
    background: #d35400;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #b84300;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.8);
    margin-top: 40px;
}
