/* Stile base per il corpo della pagina */
body {
    font-family: Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #eff2eb;
}

h1{
    font-size: 5rem;
    color: #ffb005;
}


h2 {
    font-size: 3rem;
}

/* Stile per l'intestazione */
header {
    color: white;
    padding: 20px;
    background-image: url(../imgs/campi_coltivati.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 51, 102, 0.4);
    background-blend-mode: overlay;
}

header p{
    font-size: 1.6rem;
    line-height: 1;
}

/* Stile per il footer */
footer {
    background-color: #003366;
    color: white;
    padding: 20px;
}

footer a {
    color: white;
}

/* Sezioni generali */
section {
    padding: 5rem 3rem;
    background-color: white;
}

section:nth-child(odd) {
    background-color: transparent;
}

section.ingressoFiera{
    padding: 0rem;
    height: 400px;
    background-image: url("/imgs/ingresso_PCEXPO.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}



/* Link */
a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Bottone di download */
.btn {
    display: inline-block;
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.btn:hover {
    background-color: #0055aa;
}

/* immagine container */
.img_container img {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: auto;
}
/* banner container */
.banner_container img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: auto;
}

/* logo container */
.logo_container img {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: auto;
}

/* sezione download */
.download {
    background-image: url(../imgs/campi_coltivati.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Responsive Design */
@media (max-width: 600px) {
    section {
        margin: 10px;
        padding: 3rem 15px;
    }

    h2 {
        font-size: 2rem;
    }
    
    section.ingressoFiera{
        background-position-x: 90%;
    }
}