* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #0D0000;
    position: relative;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}  

/**********************
FONTS
**********************/
.prompt-light {
    font-family: "Prompt", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.prompt-regular {
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.prompt-medium {
    font-family: "Prompt", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.prompt-bold {
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.arapey-regular {
    font-family: "Arapey", serif;
    font-weight: 400;
    font-style: normal;
}

.arapey-regular-italic {
    font-family: "Arapey", serif;
    font-weight: 400;
    font-style: italic;
}
.spinnaker-regular {
    font-family: "Spinnaker", sans-serif;
    font-weight: 400;
    font-style: normal;
}  

/**********************
DEFAULT CSS
**********************/
h1 {
    font-family: Arapey;
    font-size: 70px;
    font-weight: 400;
    line-height: 77px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;
}
h2 {
    font-family: Arapey;
    font-size: 52px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;
}
h3 {
    font-family: Prompt;
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;  
}

h1:not(:last-child), 
h2:not(:last-child), 
h3:not(:last-child) {
    margin-bottom: .5em;  
}
p {
    font-family: Spinnaker;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;
}
p:not(:last-child) {
    margin-bottom: .6em;
}

.white {
    color: #FFF;
}
.soft-green {
    color: #A7AE9C;
}
.soft-green-bg {
    background-color: #A7AE9C;
}
.dark-green,
.dark-green strong {
    color: #413F24;
}
.dark-green-bg {
    background-color: #413F24;
}
.cream {
    color: #DCC09F;
}
.cream-bg {
    background-color: #DCC09F;
}
.soft-cream-bg {
    background-color: #F0EAE4;
}
.beige {
    color: #A68660;
}
.beige-bg {
    background-color: #A68660;
}

.primary-color {
    color: #0D0000;
}

a.primary-button {
    font-family: Arapey;
    text-decoration: none;
    background-color: #DCC09F;
    width: auto;
    height: auto;
    padding: 10px 15px 10px 15px !important;
    border-radius: 25px;
    gap: 10px;
    transition: all .5s ease;
    color: #0D0000 !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
}
a.primary-button:hover {
    background-color: #A68660;
}
a.primary-button:not(:last-child) {
    margin-bottom: .6em;
}
a.secondary-button {
    width: 205px;
    height: 48px;
    padding: 10px 15px 10px 15px !important;
    border: 2px solid #0D0000;
    gap: 10px;
    transition: all .5s ease;
    font-family: Spinnaker;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #0D0000;
    text-decoration: none;
}
a.secondary-button.white {
    border: 2px solid #FFF;
    color: #FFF;
}
a.secondary-button:hover {
    background-color: #0D0000;
    color: #FFF;
}
a.secondary-button.white:hover {
    background-color: #FFF;
    color: #0D0000;
}

.position-top {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.extra-padding {
    padding-left: 40px;
}
.negative-margin {
    margin-top: -20em;
    z-index: -1;
}
.middle-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.row-reverse {
    flex-direction: row-reverse;
}
.align-btn {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
}

.carousel {
    height: 540px;
}
.carousel-indicators {
    bottom: -15%;
    list-style: none;
}
.carousel-indicators li {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    margin-left: 10px;
    background-color: #DCC09F;
    border-radius: 100%;
}
.carousel-indicators .active {
    background-color: #A68660;
} 
.carousel-item img,
.carousel-item.active img {
    box-shadow: 0px 10px 30px 15px #413F241A;
} 
.carousel-control-next, 
.carousel-control-prev {
    width: 5%;
}
.water-mark:before {
    content: '';
    position: absolute;
    display: block;
    width: 125px;
    height: 125px;
    bottom: -10%;
    left: -13%;
    z-index: 1;
    background-image: url('assets/WaterMark.png');
    background-position: center;
    background-size: contain;
}
.water-mark-section:before {
    content: '';
    position: absolute;
    display: block;
    width: 125px;
    height: 125px;
    bottom: -8%;
    right: 0;
    z-index: 1;
    background-image: url('assets/WaterMark.png');
    background-position: center;
    background-size: contain;
    z-index: 10000;
}


/**********************
NAVBAR
**********************/
.navbar-nav {
    width: 100%;
    justify-content: space-between;
}
.nav-item {
    display: flex !important;
    align-items: center !important;
}
.nav-link {
    font-family: Arapey;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em; 
    text-align: center;
    transition: all .5s ease;
    border-bottom: 1px solid transparent;
}
.nav-link.active,
.nav-link:hover {
    border-bottom: 1px solid #413F24;
}
.navbar-white .nav-link.active,
.navbar-white .nav-link:hover {
    color: #FFF !important;
    border-bottom: 1px solid #FFF;
}
.navbar-white .nav-link {
    color: #FFF;
}


/**********************
HERO SECTION
**********************/
.fullscreen-section,
.fullscreen-section-2 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: end;
}
.fullscreen-section-2 {
    height: 110vh;
    align-items: center;
}
.image-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    background-position: center;
    transition: background-image 1s ease;
}
.overlay .container,
.overlay-darker .container {
    z-index: 2;
}
.overlay:before,
.overlay-darker:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0000004D;
    z-index: 1;
}
.overlay-darker:before {
    background-color: #00000099;
}



/**********************
VR SECTION
**********************/
.green-circle:before {
    content: '';
    position: absolute;
    display: block;
    width: 180px;
    height: 180px;
    top: 0;
    left: -90px;
    border-radius: 100%;
    background-color: #A7AE9C;
}
.dark-green-rectangle:after {
    content: '';
    position: absolute;
    display: block;
    width: 38px;
    height: 188px;
    top: 50%;
    right: 0;   
    background-color: #413F24; 
}


/**********************
ABOUT SECTION
**********************/
.line:after {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 120px;
    height: 3px;
    margin-left: .5em;
    justify-content: center;
    background-color: #413F24;
}
.line-before:before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 80px;
    height: 3px;
    margin-right: .5em;
    justify-content: center;
    background-color: #413F24;
}
.about-section {
    margin: 0;
}
.info-about {
    height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease;
    justify-content: center;
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-about p,
.info-about a {
    transition: all .5s ease;
    opacity: 0;
} 
.info-about:nth-child(1) {
    background-image: url('assets/family.jpeg');
}
.info-about:nth-child(2) {
    background-image: url('assets/guate.jpeg');
}
.info-about:nth-child(3) {
    background-image: url('assets/living.jpeg');
}
.info-about:before {
    transition: all .5s ease;
}
.info-about:hover:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0D0000A6;
    transition: all .5s ease;
}
.info-about:hover p,
.info-about:hover a {
    opacity: 1;
}


/**********************
STAFF SECTION
**********************/
#staff {
    margin-top: -19px;
}


#amenities {
    background-image: url('assets/amenities.jpeg');
    background-size: cover;
    background-position: center;
    height: 650px;
}
.gradient-overlay:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(13, 0, 0, 0) -4.87%, #0D0000 115.75%);
}



/**********************
ROOMS PAGE
**********************/
#hero-rooms .container{
    background-image: url('assets/hero\ rooms.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 100px;
    height: 752px;
    padding: 4em;
}
#hero-rooms .container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-color: #0D000080;
    top: 0;
    left: 0;
}
#hero-rooms .row {
    height: 100%;
}
#hero-rooms .row .col-sm-8 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.horizontal-scroll {
    width: calc(450px * 4 + 25px * 3); /* Calcula el ancho total de las cajas más el espacio entre ellas */
    overflow-x: auto;
    white-space: nowrap; /* Evita que las cajas se envuelvan */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    border-radius: 40px 40px 0 0;
}
.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.room {
    width: 450px;
    height: 414px;
    padding: 20px;
    box-sizing: border-box;
    display: inline-block; /* Hace que las cajas floten a la izquierda */
    margin-right: 25px; /* Espacio entre cajas */
    text-wrap: balance;
}
.room img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.room a {
    text-decoration: none;
}
.room h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}
.room p {
    margin: 0;
}

.info-room {
    border: 3px solid #413F24;
    border-radius: 50px;
    height: 240px;
    padding: 2em 3em;
}
.info-room p {
    margin-bottom: 2em;
}
p.people:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/assets/icons/people.png') !important;
    margin-right: 10px;
}
p.mt:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('./assets/icons/mt.png');
    margin-right: 10px;
}
p.bed:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('./assets/icons/bed.png');
    margin-right: 10px;
}
p.fun:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('./assets/icons/fun.png');
    margin-right: 10px;
}




.tabs {
    display: flex;
    box-shadow: 0px 25px 100px 0px #00000040;    
    z-index: 100;
}
  
.tablinks {
    flex: 1;
    background-color: #DCC09F;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 20px 0;
    transition: background-color 0.3s;

    font-family: Prompt;
    font-size: 14px;
    font-weight: bold;
    line-height: 32px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}
  
  .tablinks:hover,
  .tablinks.active {
    background-color: #A68660 !important;
  }
  
  .tabcontent {
    display: none;
    padding: 20px;
    background-color: #A68660;
  }
  
  .tabcontent.active {
    display: block;
  }
  
  
  .content {
    display: flex;  
    width: 80%;
    margin: 4em auto;
}
  
  .text {
    flex: 1;
    padding-right: 1em;
  }
  
  .image {
    flex: 1;
  }
  
  .image img {
    width: 100%;
    box-shadow: 0px 40px 100px 15px #00000040;
  }
  




/**********************
FOOTER
**********************/
footer .divider {
}
footer .divider:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #413F24;
    left: 50%;
    top: 0;
}
.social-links a {
    font-family: Spinnaker;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    display: block;
    text-decoration: none;
    color: #A7AE9C;
    margin-bottom: 18px;
}
.social-links a:before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: contain;
    margin-right: 1em;
    background-repeat: no-repeat;
}
a.email:before {
    background-image: url('assets/icons/email.svg');
}
a.airbnb:before {
    background-image: url('assets/icons/airbnb.svg');
}
a.instagram:before {
    background-image: url('assets/icons/instagram.svg');
}



/**********************
MOBILE CSS
**********************/
@media screen and (max-width: 800px) {
    .social-links {
        padding: 20px 10px;
        text-align: center;
    }

    .info-about:nth-child(1){
        background-image: url('assets/amenities/asia.jpg');
    }
    .info-about:nth-child(2){
        background-image: url('assets/amenities/patio.jpg');
    }
    .info-about:nth-child(3){
        background-image: url('assets/amenities/small.jpg');
    }

    .carousel {
        height: auto;
    }
    .carousel-indicators {
        margin-top: 2em;
        bottom: 0;
    }

    .negative-margin {
        display: none;
    }

    .info-room {
        border-radius: 24px;
        margin-bottom: 2em;
        height: auto;
    }
}

@media screen and (max-width: 590px) {
    .navbar {
        background-color: transparent;
    }
    .navbar-collapse {
        margin-top: 10px;
        background-color: #FFF;
    }
    .navbar-white .nav-link.active, 
    .navbar-white .nav-link:hover,
    .nav-link,
    .nav-link.active {
        color: #0D0000 !important;
        margin: 10px 0 20px 20px;
    }
    .navbar-white .nav-link.active, 
    .navbar-white .nav-link:hover {
        border-bottom: 1px solid #0D0000;
    }

    .navbar-brand {
        display: none;
    }

    .dark-green-rectangle:after {
        display: none;
    }

    #hero-rooms .container {
        height: auto;
        padding: 2em;
    }
    #hero-rooms .container,
    #hero-rooms .container:before {
        border-radius: 24px;
    }

    .horizontal-scroll {
        max-width: 100%;
    }

    .align-btn {
        flex-direction: row;
        margin-top: 2em;
        justify-content: center;
    }

    .position-top {
        position: relative;
    }

    .carousel-item .container {
        padding-bottom: 2em;
    }

    .content,
    .tabs {
        width: 100%;
        flex-direction: column;
    }
    .image img {
        margin-top: 3em;
    }


    .my-5 {
        margin-top: 1rem!important;
        margin-bottom: 3rem!important;
    }
    .py-5 {
        padding-top: 1rem!important;
        padding-bottom: 3rem!important;
    }
    .pt-5 {
        padding-top: 1rem!important;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
}