/* ---------- Estils generals ---------- */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #f8f5f2;
    color: #4b3b2f;
    line-height: 1.6;
}

header {
	background-color: #4b2e1e;
    color: white;
    text-align: center;
    padding: 1rem 0;
}
}

.logo {
    max-height: 70px;
}

.lang-selector {
    text-align: right;
    gap: 10px;
}

.flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.flag:hover {
    transform: scale(1.1);
}
.hero {
width: 100%;
    height: auto;
    display: block;
}

/* ---------- Secció intro ---------- */
.intro {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 4px solid #c4a484;
}

.intro-text {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
}

.intro-text h1 {
    font-size: 2.2em;
    color: #3e2b1f;
}

.intro-text p {
    font-size: 1.1em;
}

/* ---------- Formulari de contacte ---------- */
.contact {
    background-color: #fff;
    margin: 40px auto;
    padding: 30px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    text-align: center;
    color: #3e2b1f;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 600;
}

input, textarea {
    padding: 10px;
    border: 1px solid #cbb9a8;
    border-radius: 5px;
    font-size: 1em;
    resize: vertical;
}

button {
    background-color: #b08968;
    color: white;
    padding: 12px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #8c6c4a;
}

/* ---------- Missatges ---------- */
.success {
    color: green;
    text-align: center;
    font-weight: 600;
}

.error {
    color: red;
    text-align: center;
    font-weight: 600;
}

/* ---------- Peu de pàgina ---------- */
footer {
	text-align: center;
    padding: 1rem;
    background-color: #4b2e1e;
    color: white;
    margin-top: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .intro-text h1 {
        font-size: 1.6em;
    }

    .intro-text p {
        font-size: 1em;
    }

    .contact {
        margin: 20px;
        padding: 20px;
    }
}
