/* Stili Generali */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}

/* Testata-Titolo */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
}

.hero .btn-primary:hover {
    background-color: #0056b3;
}

/* Sezioni */
section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

section img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #222;
}

footer .ads {
    border-top: 1px solid #444;
    padding-top: 15px;
    margin-bottom: 15px;
}

footer .ads p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

footer .ads img {
    max-width: 100%;
    height: auto;
}

footer .small {
    font-size: 0.8rem;
    color: #888;
}

footer .small a {
    color: #aaa;
    text-decoration: none;
}

footer .small a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .navbar-nav {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 40vh;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .btn-primary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}