/* ============================= */
/* Footer CSS Optimizado Kamaya  */
/* ============================= */

.site-footer {
    background: #393732;
    color: #fff;
    padding: 40px 20px;
    font-family: Circular Pro,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: normal;
    min-height: 600px; /* aumentado para evitar CLS */
}

.site-footer h3 {
    font-weight: normal;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
    padding-left: 17%;  /* cambiamos margin por padding */
    padding-right: 17%;
    margin-left: 0;
    margin-right: 0;
    min-height: 350px; /* aumentado para contenido real */
}

.footer-newsletter{
    flex: 1 1 300px;
    max-width: 275px;
    font-family: Miller Display,Georgia,serif;
}

.footer-contact{
    font-family: Miller Display,Georgia,serif;
}

.footer-links {
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
}

.input_news_letter {
    background-color: #393732;
    color: white;
    border: 1px solid #c1aa7f;
    display: block;
    margin-top: 10px;
    padding: 10px;
    height: 40px; /* ajustado para CLS y fuentes */
    box-sizing: border-box;
}

.button_news_letter {
    background-color: #c1aa7f;
    color: white;
    border: 1px solid #707070;
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    height: 50px;
    box-sizing: border-box;
}

.footer-bottom {
    border-top: 1px solid #707070;
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-left: 16%;  /* cambiamos margin por padding */
    padding-right: 17%;
    margin-left: 0;
    margin-right: 0;
    min-height: 100px; /* aumentado para evitar CLS */
}

.footer-bottom img {
    height: 40px;
}

.footer-links ul {
    padding-inline-start: 20px;
    line-height: 1.7;
    font-family: Miller Display,Georgia,serif;
}

.footer-links ul li {
    line-height: 1.7;
}

.footer-destinations{
    color:white;
    text-decoration: none;
}

.copyright {
    display: flex;
    flex-direction: row;
    font-size: .8125rem;
    margin-left: auto;
    gap: 30px;
}

.copyright a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color change */
}

.copyright a:hover {
    color: #c1aa7f;
}
.copyright p {
    margin: 0;  /* Remove default margin to align better */
}

/* ============================= */
/* Responsive Mobile (max-width:768px) */
/* ============================= */
@media (max-width: 768px) {
    .site-footer {
        min-height: 500px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        padding-right: 20px;
        gap: 30px;
    }

    .footer-newsletter,
    .footer-contact,
    .footer-links {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .footer-bottom {
        align-items: flex-start;
        min-height: 80px;
    }

    .copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-left: 0;
    }

    .footer-bottom img {
        height: 30px;
    }

    .input_news_letter,
    .button_news_letter {
        width: 100%;
    }
}
