@charset "UTF-8";
/* CSS Document */
/* RESET BÀSIC */
/* RESET BÀSIC */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COS DEL DOCUMENT */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f2f5ec; /* color clarito tipus paper */
    color: #333;
}

/* CONTENIDOR PRINCIPAL */
#contenidor {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header {
    text-align: center;
    padding: 30px 0;
    background-color: #b5d6a7; /* verd suau */
}

header img {
    max-width: 200px;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    background-color: #95c682; /* verd més intens */
    padding: 15px 0;
    border-radius: 5px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #fff;
    color: #386641; /* verd fosc */
    border-radius: 5px;
}

/* FLEXBOX PER SECTIONS */
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.col {
    flex: 1;
    min-width: 250px;
}

/* Seccions d'imatges */
.col.imagen {
    background-color: #d9ead3; /* verd clar suau */
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-style: italic;
    color: #666;
}

/* Seccions amb caixes */
.col.caja {
    background-color: #f9f0d9; /* color ocre clar */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* TITOLS DE SECCIONS */
h2 {
    color: #386641; /* verd fosc */
    margin-bottom: 15px;
    text-align: center;
}

h3 {
    color: #6a994e; /* verd mitjà */
    margin-bottom: 10px;
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.galeria div {
    background-color: #d9ead3; /* verd clar */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-style: italic;
    color: #555;
}

/* SECCIONS D'INFORMACIÓ */
.info p {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px 0;
    background-color: #386641; /* verd fosc */
    color: #fff;
    margin-top: 40px;
    border-top: 3px solid #95c682;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .flex {
        flex-direction: column;
    }
}


