body {
    font-family: 'Merriweather', serif;
    background-color: #fdf6e3;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.header-foto {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(80%); /* Foscament de la imatge de fons al 20% */
}

.header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; /* Augmenta la mida del logotip */
    height: auto;
}

main {
    max-width: 900px;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: -30px;
    z-index: 10;
}

h2 {
    color: #000; /* Color negre */
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    border: none; /* Eliminar subratllat */
}

.sobre-foto {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-top: 20px; /* Espai addicional abans de la imatge */
}

.servei {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #f8f3eb;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.servei img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.servei p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #b22222; /* Color vermell fosc */
}

.top-footer {
    width: 100%;
    overflow: hidden;
}

.top-footer-photo {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -5px; /* Uneix visualment amb el footer */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    width: 100%;
}

footer p {
    margin: 5px 0;
}

footer .social a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5em;
}

footer .social a:hover {
    color: #ffdd57;
}

a {
    color: #b22222; /* Color vermell fosc */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #d4a373;
}

.separador {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0; /* Ajusta l'espai entre seccions */
}

.separador hr {
    flex-grow: 1;
    border: none;
    border-top: 1px solid #b22222; /* Color vermell fosc per les línies */
    margin: 0 10px;
}

.separador img {
    width: 60px; /* Ajusta la mida de l'adorno si cal */
    height: auto;
}
