body {
    background-image: url("./images/destination/background-destination-desktop.jpg");
}

.nav-links {
    background: #24242E;
    background: linear-gradient(90deg, rgba(36, 36, 46, 1) 0%, rgba(63, 63, 71, 1) 53%, rgba(36, 36, 46, 1) 100%);
}

.navbar hr {
    border-top: 1px solid rgb(60, 60, 73);
}


/* Main Section */


.destination-head {
    color: white;
    font-weight: 200;
    position: absolute;
    top: 8rem;
    left: 10rem;
}

.destination-head span {
    color: rgb(131, 131, 131);
    font-weight: 800;
}

.destination {
    display: flex;
    width: 70%;
    margin: 14rem auto 0 auto;
    justify-content: space-between;
    align-items: center;
}

.destination-img {
    width: 40%;
    display: flex;
    justify-content: center;
}

.destination-img.anim{
    animation-delay: 0.3s;
}

.destination-img img {
    width: 80%;
}

.destination-content {
    color: rgb(136, 136, 141);
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-navbar-links {
    display: flex;
    gap: 1.1rem;
}

.content-navbar-links.anim{
    animation-delay: 0.5s;
}

.content-navbar-links li {
    list-style: none;
}

.content-navbar-links a {
    text-decoration: none;
    color: rgb(136, 136, 141);
    font-size: 0.9rem;
    font-weight: 100;
}

.content-navbar-links li a:hover {
    border-bottom: 2px solid white;
}

.active{
    border-bottom: 2px solid white;
}

.destination-content h1 {
    font-size: 4rem;
    font-weight: 100;
    color: white;
    animation-delay: 0.7s;
}

.destination-content p {
    font-size: 0.85rem;
    animation-delay: 0.8s;
}

.destination-content hr {
    border: 0;
    border-top: 1px solid rgb(60, 60, 73);
    animation-delay: 0.9s;
}


.content-footer {
    display: flex;
    gap: 4rem;
}

.content-footer.anim{
    animation-delay: 1s;
}

.content-footer p {
    font-size: 0.7rem;
}

.content-footer h3 {
    font-weight: 100;
    color: rgb(192, 191, 191);
}


.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}

@keyframes moveup{
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}



/* Responsiveness */

@media screen and (max-width: 1200px) {

    .destination-head {
        left: 9rem;
    }

    .destination {
        width: 72%;
        margin: 14rem auto 0 auto;
    }

    .destination-img {
        width: 42%;
    }
}


@media screen and (max-width:1024px) {

    .destination-head {
        left: 5rem;
    }

    .destination {
        width: 78%;
        margin: 12rem auto 0 auto;
    }

    .destination-head span {
        font-weight: 700;
    }

    .destination-img {
        width: 45%;
    }

    .destination-content {
        width: 45%;
        gap: 0.7rem;
    }

    .destination-content h1 {
        font-size: 3.5rem;
        font-weight: 100;
        color: white;
    }
}

@media screen and (max-width:786px) {

    body {
        background-image: url("./images/destination/background-destination-tablet.jpg");
    }

    .destination-head {
        position: static;
        text-align: center;
        margin-top: 6.5rem;
        font-size: 1.1rem;
    }

    .destination {
        width: 90%;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 4rem auto 0 auto;
        gap: 2.2rem;
    }

    .destination-content {
        text-align: center;
        width: 70%;
    }

    .destination-img {
        width: 42%;
    }

    .destination-content h1 {
        font-size: 3.5rem;
    }

    .content-navbar-links {
        justify-content: space-evenly;
    }

    .content-footer {
        justify-content: space-evenly;
    }

    .content-footer h3 {
        font-size: 1rem;
    }
}

@media screen and (max-width:480px) {

    body {
        background-image: url("./images/destination/background-destination-mobile.jpg");
    }

    .nav-links {
        width: 7%;
        background: url("./images/shared/icon-hamburger.svg");
        background-size: cover;
        background-position: center;
        opacity: 1;
        position: relative;
        height: 28px;
    }

    .destination-head {
        font-size: 1rem;
    }

    .destination-img {
        width: 45%;
    }

    .destination-content {
        width: 90%;
    }

    .destination-content h1 {
        font-size: 3.1rem;
    }

    .destination-content p {
        font-size: 0.81rem;
    }

    .content-footer p {
        font-size: 0.67rem;
    }

    .content-footer h3 {
        font-size: 0.95rem;
    }

}