/* Estils generals */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    text-align: center;
    padding: 20px;
    background-color: transparent; /* Treu el fons verd */
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 150px; /* Augmenta la mida del logo */
    margin-bottom: 10px;
}

.slogan {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 300;
    color: #333; /* Canvia el color de la frase si cal */
}

/* Contingut principal */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    color: #65b32e;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

a {
    color: #65b32e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Galeria d'imatges */
.imatges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.imatges img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Peu de pàgina */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

/* Estils per a pantalles petites (mòbils) */
@media (max-width: 768px) {
    .imatges img {
        max-width: 100%;
    }

    .imatges {
        flex-direction: column;
        gap: 10px;
    }
}
