/* ======================================== */
/* ROOT VARIABLES */
/* ======================================== */

:root {

    /* COLORS */
    --color-white: #ffffff;
    --color-off-white: #f8f6f2;
    --color-beige: #ece7df;

    --color-black: #111111;
    --color-dark-gray: #444444;
    --color-light-gray: #d9d9d9;
    --color-greenlive: #38D130;

    --color-overlay: rgba(0, 0, 0, 0.32);

    /* TYPOGRAPHY */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* CONTAINER */
    --container-width: 1400px;

    /* TRANSITIONS */
    --transition-slow: 0.4s ease;
    --transition-medium: 0.3s ease;

}



/* ======================================== */
/* LARGE SCREENS */
/* ======================================== */

@media screen and (max-width: 1400px) {

    .hero-title {
        font-size: 4.5rem;
    }

}

/* ======================================== */
/* LAPTOP */
/* ======================================== */

@media screen and (max-width: 1200px) {

    /* NAVBAR */

    .navbar {

        padding: 24px 40px;
    }

    /* NAV LINKS */

    .nav-links {

        gap: 28px;
    }

    /* HERO */

    .hero-title {

        font-size: 4rem;
    }

    /* EXPERIENCE */

    .experience-title {

        font-size: 2.5rem;
    }

}

/* ======================================== */
/* TABLET */
/* ======================================== */

@media screen and (max-width: 992px) {

    /* NAVBAR */

    .navbar {

        padding: 22px 30px;
    }

    /* NAV LINKS */

    .nav-links {

        gap: 20px;
    }

    .nav-links a {

        font-size: 0.88rem;
    }

    /* NAV RIGHT */

    .nav-right {

        gap: 18px;
    }

    /* LOGO */

    .logo {

        width: 130px;
    }

    /* HERO */

    .hero-title {

        font-size: 3.5rem;
    }

    /* EXPERIENCE */

    .experience-intro {

        padding-top: 100px;
        padding-bottom: 100px;
    }

    .experience-title {

        font-size: 2.2rem;
    }

    /* FOOTER */

    .footer-container {

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 40px;
    }

    .footer-contact,
    .footer-socials,
    .footer-address {

        align-items: center;
    }

}

/* ======================================== */
/* MOBILE LARGE */
/* ======================================== */

@media screen and (max-width: 768px) {

    /* CONTAINER */

    .container {

        padding-left: 24px;
        padding-right: 24px;
    }

    /* NAVBAR */

    .navbar {

        padding: 20px 24px;
    }

    /* NAV LINKS */

    .nav-links {

        position: fixed;

        top: 0;

        transform: translateX(100%);
right: 0;

        width: 280px;

        height: 100vh;

        background-color: var(--color-white);

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 30px;

        transition: 0.4s;

        z-index: 1000;
    }

    .nav-links.active {

        transform: translateX(0);
    }

    .nav-links a {

        color: var(--color-black);
    }

    .hamburger {

        display: flex;
    }

    /* NAV RIGHT */

    .nav-right {

        gap: 14px;
    }

    /* RESERVE BUTTON */

    .reserve-button {

        padding: 10px 18px;

        font-size: 0.85rem;
    }

    /* HERO */

    .hero-title {

        font-size: 3rem;

        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-button {

        padding: 12px 26px;

        font-size: 0.88rem;
    }
    .hero-description {

        max-width: 500px;

        font-size: 0.95rem;

        line-height: 1.8;
    }

    /* EXPERIENCE */

    .experience-intro .container {

        flex-direction: column;
    }

    .experience-text {

        width: 100%;

        padding-right: 0;

        text-align: center;
    }

    .experience-images {

        width: 100%;

        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 24px;

        margin-top: 60px;
    }

    .image-vertical,
    .image-horizontal {

        position: relative;

        width: 100%;

        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
    }


    /* FOOTER */

    .main-footer {

        padding-top: 60px;
        padding-bottom: 60px;
    }

    .footer-links,
    .footer-contact {

        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-layout {

    flex-direction: column;

    gap: 60px;
    }

    .contact-title {

        font-size: 2.2rem;
    }

    .location-content {

    flex-direction: column;
    }

    .location-title {

        font-size: 2.2rem;
    }

    .location-map iframe {

        height: 400px;
    }
    
    .room-texture {

    display: none;
    }

    .rooms-slider-layout {

        display: flex;

        flex-direction: column;

        gap: 40px;
    }

    .room-visual {

        order: 1;

        width: 100%;

        min-height: auto;
    }

    .room-image {

        position: relative;

        right: auto;

        top: auto;

        width: 100%;

        overflow: hidden;
    }

    .room-image img{
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .room-info {

        position: relative;

        left: auto;

        top: auto;

        width: 100%;

        padding: 0;

        background: transparent;
    }
    .room-navigation {

        position: absolute;

        top: 50%;

        left: 0;

        width: 100%;

        transform: translateY(-50%);

        display: flex;

        justify-content: space-between;

        padding: 0 15px;

        z-index: 10;
    }

    .room-prev,
    .room-next {
        
        position: static;

        transform: none;

        width: 50px;

        height: 50px;

        align-items: center;
    }
    .room-prev:hover,
    .room-next:hover {

        background-color: var(--color-white);

        color: var(--color-black);
    }

    .room-prev,
    .room-next {

        display: none;

    }



    .room-dots {

        position: relative;

        margin-top: 25px;

        justify-content: center;
    }
    .room-indicators {

        bottom: -30px;

    }

    /* TRACK */

.gallery-track {


    animation: galleryScroll 30s linear infinite;
}
    
    body {

        overflow-x: hidden;
    }

/*para Experience*/
.experience-spaces {

    padding: 80px 0;
}

.section-title {

    font-size: 2.2rem;
}

.spaces-gallery {

    grid-template-columns: 1fr;
}

.space-image-large,
.space-image-small,
.space-image-wide {

    grid-column: auto;

    height: 300px;
}

.services-grid {

    grid-template-columns: 1fr;

    gap: 20px;
}

.service-card {

    padding: 35px 25px;
}

.experience-cta {

    padding: 80px 0;
}

.cta-gallery-top,
.cta-gallery-bottom {

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.cta-gallery-top img,
.cta-gallery-bottom img {

    height: 140px;
}

.cta-content {

    padding: 0 20px;
}

.cta-content h2 {

    font-size: 2.2rem;
}

.cta-gallery-top {

    margin-bottom: 50px;
}

.cta-gallery-bottom {

    margin-top: 50px;
}



}

@media (max-width: 768px) {

    .experience-tours {

        grid-template-columns: 1fr !important;

    }

}



/* ======================================== */
/* MOBILE */
/* ======================================== */

@media screen and (max-width: 576px) {

    /* NAVBAR */

    .navbar {

        padding: 18px 18px;
    }

    /* LOGO */

    .logo {

        width: 115px;
    }

    /* LANGUAGE */

    .language-switch {

        font-size: 0.82rem;
    }

    /* RESERVE BUTTON */

    .reserve-button {

        padding: 9px 14px;

        font-size: 0.8rem;
    }

    /* HERO */

    .hero-title {

        font-size: 2.4rem;

        line-height: 1.2;
    }

    .hero-button {

        padding: 11px 22px;

        font-size: 0.82rem;
    }

    /* EXPERIENCE */

.experience-intro .container {

    flex-direction: column;
}

.experience-text {

    width: 100%;

    padding-right: 0;

    text-align: center;
}

.experience-images {

    width: 100%;

    min-height: auto;

    display: flex;

    flex-direction: column;

    gap: 24px;

    margin-top: 60px;
}

.image-vertical,
.image-horizontal {

    position: relative;

    width: 100%;

    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
}

    /* FOOTER */

    .footer-logo {

        width: 100px;
    }

    .footer-links,
    .footer-contact {

        gap: 16px;
    }

    .footer-links a,
    .footer-contact a {

        font-size: 0.88rem;
    }

}

/* ======================================== */
/* SMALL MOBILE */
/* ======================================== */

@media screen and (max-width: 400px) {

    .hero-title {

        font-size: 2rem;
    }

    .experience-title {

        font-size: 1.5rem;
    }

}
