:root{
    --primary: #a7905d;
    --primary-dark: #6c5d3d;
}

html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    color: var(--primary);
}

*, *::before, *::after{
    box-sizing: inherit;
}

header{
    background-color: #65003a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav ul li{
    list-style: none;
}

.header-logo{
    width: 90px !important;
    pointer-events: none;
}

.header-button-reservar {
    display: inline-block;
    background-color: white;
    padding: 5px 30px;
    color: var(--primary);
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.6s ease-out;
}

.header-button-reservar:hover{
    background-color: var(--primary);
    color: white;
}

a{
    color: var(--primary);
    text-decoration: none !important;
    transition: all 0.3s ease-out;
}

a:hover{
    color: white;   
}

.hero{
    position: relative;
    background-image: url(https://www.rutamayatravel.com/majesticElegance/img/CABECERA-MAJESTIC.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
    overflow: hidden;
}

.hero-logos{
    position:absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.200);
    border-radius: 10px;
    padding: 30px 16px;
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.hero-logos:hover{
    /* top: 0;
    left: 0; */
    transform: translate(0%, 0%), scale(105%);
}

@media screen and (max-width: 480px) {
    .hero-logos{
        padding: 30px 16px;
    }
}

.hero-logos img{
    width: 300px;
}

.hero-logos img:nth-child(1){
    filter: drop-shadow(
        0 0 10px rgba(255, 255, 255, 0.313)
    );
}

.card{
    width: 500px;
    display: block;
    border: none !important;
}

.card:hover .card-body{
    transform: translateX(-75%);
}

.card-body-container{
    height: 140px;
    display: block;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 480px) {
    .card-body-container{
        height: 120px;
    }
}

.card-hr{
    display:block;
    height: 3px;
    width: 70%;
    background-color: #56003b;
    margin-left: 30%;
    margin-top: 3px;
    margin-bottom: 8px;
}

.card-body{
    z-index: 3;
    position: absolute;
    width: 100%;
    padding: 0;
    top: 0;
    left: 0;
    transition: all 0.8s ease-in-out;
}

.card-body img{
    width: 100%;
}

.card-body-text{
    z-index: 2;
    padding: 0 14px;
    font-size: 20px;
    position: absolute;
    width: 75%;
    padding: 0;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 480px) {
    .card-body-text{
        font-size: 16px;
        width: 69%;
        top: 40%;
    }
}

.card-header-gold{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    padding: 0;
    text-align: start;
    color: var(--primary);
}

@media screen and (max-width: 480px) {
    .card-header-gold{
        text-align: center;
    }
}

.long-header{
    font-size: 28px !important;
}

@media screen and (max-width: 480px) {
    .long-text-mobile{
        font-size: 15px !important;
    }

    .long-header-mobile{
        font-size: 27px !important;
    }
}

footer{
    margin-top: 30px;
    padding: 50px 0;
    width: 100%;
    background-image: url(https://www.rutamayatravel.com/majesticElegance/img/FOOTER-MAJESTIC.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 480px) {
    footer{
        background-position: center bottom;
        background-image: url(https://www.rutamayatravel.com/majesticElegance/img/FOOTER-MAJESTIC-MOBILE.jpg);
    }
}

footer ul li{
    color: var(--primary);
    font-style: italic;
    margin-bottom: 5px;
}

.button-reservar {
    display: inline-block;
    padding: 5px 40px;
    background-color: var(--primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    font-size: 30px;
    font-weight: 600;
    transition: all 0.6s ease-out;
}

.button-reservar:hover{
    background-color: white;
    color: var(--primary);
}

.rmt-url{
    font-size: 25px;
    color: white;
    font-style: italic;
    font-weight: 200;
    transition: all 0.3s ease-out;
}

.rmt-url:hover{
    color: var(--primary);
}

.wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.circle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(to top left, #a7905d, #e7c781);
    border-radius: 50%;
    top: 64%;
    left: 50%;
    /* margin: -14px 0 0 -5px; */
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 10;
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    z-index: 999;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    padding-top: 3px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 27px;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
}

.fadeIn{
    opacity: 1;
}
.fadeOut{
    opacity: 0;
}