/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body h2 {
    font-family: 'Salsa', cursive;
    font-size: 40px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.726);
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.34);  
    backdrop-filter: blur(7px);
}

.navbar .navbar-brand {
    font-family: 'Salsa', cursive;
    font-size: 2em;
    text-shadow: 2px 2px 0 rgb(46, 46, 46);
}

.navbar ul li a {
    color: white;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .3s;
}

.navbar ul li:hover a {
    color: #f0d06c;
    transform: scale(1.1);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

.navbar a.nav-link.active{
    color : #F0D06C !important;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

/* Header */
.header {
    padding-top: 100px;
    height: 100vh;
    background-image: url(../img/bg_header.png);
    background-size: cover;
    background-attachment: fixed;
}

.header h1 {
    font-size: 60px;
    text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.289);
    font-family: 'Salsa', cursive;
}

.header a {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}
   
.header a.learn-more {
    width: 16rem;
    height: auto;
    background-color: rgba(255, 255, 255, 0.341);
    border-radius: 1.625rem;
}
   
.header a.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}
   
.header a.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}
   
.header a.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}
   
.header a.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}
   
.header a.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}
   
.header a:hover .circle {
    width: 100%;
}
   
.header a:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}
   
.header a:hover .button-text {
    color: #fff;
}

/* About */
.about {
    padding-top: 100px;
    background-color: #EDEAE7;
}

.about p {
    font-size: 25px;
    font-family: 'Lato', sans-serif;
    text-align: justify;
    border-left: 4px solid #f0d06c;
}

.about img {
    border-radius: 20px;
    box-shadow: 10px 4px 20px 4px rgba(0, 0, 0, .3);
    border: 15px solid white;
}

/* Gallery */
.gallery {
    padding-top: 100px;
    background-color: #ddd;
}

.gallery .btn {
    width: 200px;
    background-color: #AAA;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    transition: .3s;
    color: #282936;
    margin-right: 10px;
}

.gallery .btn:hover {
    background-color: rgba(0, 0, 0, 0.785);
    color: white;
    transform: scale(1.1);
}

.gallery .enkapculation {
    border: 7px solid #ddd;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.2);
}

.gallery span {
    background-color: rgba(0, 0, 0, 0.501);
    opacity: 0;
    transition: .3s;
    color: white;
    font-size: 2.5em;
}

.gallery span:hover {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.gallery .fa-right-long {
    margin-left: 10px;
}

.gallery .fa-magnifying-glass {
    transition: .3s;
}

.gallery .fa-magnifying-glass:hover {
    color: gold;
    transform: scale(1.2);
}

/* Package */
.package {
    padding-top: 100px;
    background-color: #EDEAE7;
}

.package .card {
    border: none;
    transition: .3s;
    border-radius: 0%;
    font-family: 'Lato', sans-serif;
}

.package .card:hover {
    transform: translateY(-10px);
    box-shadow: 13px 13px 0 2px rgba(0, 0, 0, 0.726);
    color: gold;
    text-shadow: 2px 2px 0 rgb(0, 0, 0);
}

.package .card-body {
    backdrop-filter: blur(7px);
}

/* Logo Parallax */
.bg-logo {
    position: relative;
    background-image: url(../img/bg_parallax.png);
    background-size: cover;
    background-attachment: fixed;
    height: 90vh;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, .3);
}

/* Location */
.location {
    padding-top: 100px;
    background-color: #EDEAE7;
    padding-bottom: 100px;
}

.location form {
    font-family: 'Lato', sans-serif;
}

.location form label {
    font-weight: 600;
}

.location form input{
    border: 4px solid rgba(0, 0, 0, 0.726);
    background-color: #EDEAE7;
}

.location form textarea {
    border: 4px solid rgba(0, 0, 0, 0.726);
    background-color: #EDEAE7;
}

.location form select {
    border: 4px solid rgba(0, 0, 0, 0.726);
    background-color: #EDEAE7;
}

.location form .btn {
    border: 4px solid rgba(0, 0, 0, 0.726);
    background-color: #EDEAE7;
    font-weight: 600;
    transition: .3s;
}

.location form .btn:hover {
    background-color: rgb(0, 0, 0);
    color: white;
}

.scroll-up {
    background-color: #EDEAE7;
}

.scroll-up .button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #4f4f4f;
    border-radius: 4px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    color: black;
    font-weight: 400;
    z-index: 1;
   }
   
.scroll-up .button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
   }
   
.scroll-up .button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: rgb(176, 149, 0);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
   
.scroll-up .button:hover {
    color: #ffffff;
    border: 1px solid rgb(176, 149, 0);
}
   
.scroll-up .button:hover:before {
    top: -35%;
    background-color: rgb(176, 149, 0);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
   
.scroll-up .button:hover:after {
    top: -45%;
    background-color: rgb(176, 149, 0);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* Sub Footer */
.sub-footer {
    font-family: 'Lato', sans-serif;
    background-color: #ddd;
}

.sub-footer h4 {
    font-weight: 600;
}

.sub-footer a {
    color: rgba(0, 0, 0, 0.726);
    margin: 10px 0;
    font-size: 16px;
}

.sub-footer span {
    color: rgba(0, 0, 0, 0.726);
}

.sub-footer a:hover {
    font-weight: bold;
    color: rgb(154, 131, 2);
}

.sub-footer .row {
    padding-bottom: 50px;
    border-bottom: 5px solid rgba(0, 0, 0, 0.726);
}

/* Footer */
footer {
    background-color: #ddd;
    padding: 20px 0;
    font-family: 'Lato', sans-serif;
}

/* Chat WhatsApp */
.chat-whatsapp {
    background: transparent;
}

.chat-whatsapp .chat {
    width: 130px; 
    border-radius: 30px; 
    border: 3px solid white;
    transition: .3s;
    background-color: rgb(21, 177, 21);
}

.chat-whatsapp .chat:hover {
    background-color: #f0d06c;
    color: white;
}

.chat-whatsapp .chat a {
    font-size: 1.8em; 
    font-family: 'Lato', sans-serif;
    color: white;
}

.chat-whatsapp .chat i {
    margin-left: 5px;
}

/* Responsive Breakpoint */
@media (max-width: 576px) {
    .header h1 {
        font-size: 40px;
    }
}


