@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --primary-color: #29d9d5;
    --dark-color: #111;
    --dark-alt-color: #222;
    --light-color: #fff;
    --light-alt-color: #aaa;
    --error-color: #dc3545;
    --border: .2rem solid var(--primary-color);
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

*:focus-visible {
    outline: .2rem solid var(--primary-color);
    outline-offset: .2rem;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: var(--dark-color);
}

html::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5rem;
}

body {
    background: var(--dark-color);
    overflow-x: hidden;
}

section {
    padding: 3.1rem 9%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.heading {
    text-align: center;
    margin-bottom: 2rem;
}

.heading span {
    color: var(--primary-color);
    font-size: 2rem;
}

.heading h1 {
    font-size: 4rem;
    color: var(--light-color);
    margin-top: .5rem;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: var(--primary-color);
    border: var(--border);
    border-radius: 5rem;
    cursor: pointer;
    background: none;
}

.btn:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark-alt-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 9%;
    transition: background-color .3s ease;
}

.header.scrolled {
    background: var(--dark-color);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.3);
}

.header .navbar a {
    font-size: 1.7rem;
    color: var(--light-alt-color);
    display: inline-block;
    margin: 0 1rem;
}

.header .navbar a:hover,
.header .navbar a.active {
    color: var(--primary-color);
}

.header .btn {
    margin-top: 0;
}

.logo {
    font-size: 2.5rem;
    color: var(--light-color);
    font-weight: bolder;
}

.logo i {
    color: var(--primary-color);
    padding-right: .5rem;
}

#menu-btn {
    font-size: 2.5rem;
    color: var(--light-color);
    cursor: pointer;
    display: none;
    background: transparent;
    border: none;
}

#menu-btn.fa-times {
    transform: rotate(180deg);
}

.home {
    margin: 0 auto;
    margin-top: 9rem;
    width: 90%;
    border-radius: 1rem;
    background: linear-gradient(rgba(17, 17, 17, .7), rgba(17, 17, 17, .7)), url(./images/home-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    min-height: 80vh;
    align-items: center;
    justify-content: center;
    padding-bottom: 5rem;
}

.home .content {
    text-align: center;
}

.home .content span {
    font-weight: bolder;
    color: transparent;
    -webkit-text-stroke: .1rem var(--light-color);
    font-size: 4vw;
    display: block;
}

.home .content h3 {
    font-size: 6vw;
    color: var(--light-color);
}

.home .content p {
    max-width: 60rem;
    margin: 1rem auto;
    font-size: 1.4rem;
    color: var(--light-alt-color);
    line-height: 2;
}

.book-form {
    width: 80%;
    margin: 1rem auto;
    margin-top: -5rem;
    background: var(--dark-alt-color);
    border-radius: 1rem;
    box-shadow: 0 .5rem 1rem rgba(17, 17, 17, .3);
    padding: 3rem 2rem;
}

.book-form form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.book-form form .inputBox {
    flex: 1 1 25rem;
}

.book-form form .inputBox span {
    font-size: 1.4rem;
    color: var(--light-alt-color);
}

.book-form form .inputBox span i {
    color: var(--primary-color);
    padding-right: .5rem;
}

.book-form form .inputBox input {
    width: 100%;
    padding: 1.2rem 1.4rem;
    border-radius: 5rem;
    border: var(--border);
    font-size: 1.6rem;
    color: var(--light-alt-color);
    text-transform: none;
    background: none;
    margin-top: 1rem;
}

.book-form form .btn {
    flex: 1 1 15rem;
}

.about {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 5rem;
}

.about .video-container {
    flex: 1 1 42rem;
}

.about .video-container video {
    border-radius: 1rem;
    width: 100%;
}

.about .video-container .controls {
    text-align: center;
    padding: 2rem 0;
}

.about .video-container .controls .control-btn {
    display: inline-block;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background: var(--light-color);
    cursor: pointer;
    margin: .7rem;
}

.about .video-container .controls .control-btn:hover, 
.about .video-container .controls .control-btn.active {
    background: var(--primary-color);
}

.about .content {
    flex: 1 1 42rem;
    margin-bottom: 5rem;
}

.about .content span {
    color: var(--primary-color);
    font-size: 2rem;
}

.about .content h3 {
    color: var(--light-color);
    font-size: 4rem;
    margin-top: .5rem;
}

.about .content p {
    padding: 1rem 0;
    font-size: 1.4rem;
    color: var(--light-alt-color);
    line-height: 2;
}

.about .content .btn i {
    margin-left: .5rem;
}

.destination .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap: 1.5rem;
}

.destination .box-container .box {
    border-radius: 1rem;
    overflow: hidden;
    background: var(--dark-alt-color);
}

.destination .box-container .box:hover img {
    transform: scale(1.1);
}

.destination .box-container .box .image {
    height: 20rem;
    overflow: hidden;
    width: 100%;
}

.destination .box-container .box .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.destination .box-container .box .content {
    padding: 2rem;
    text-align: center;
}

.destination .box-container .box .content h3 {
    font-size: 2rem;
    color: var(--light-color);
}

.destination .box-container .box .content p {
    padding: 1rem 0;
    font-size: 1.4rem;
    color: var(--light-alt-color);
    line-height: 2;
}

.destination .box-container .box .content a {
    font-size: 1.7rem;
    color: var(--primary-color);
}

.destination .box-container .box .content a:hover i {
    padding-left: 1rem;
}

.destination .box-container .box .content a i {
    padding-right: .5rem;
}

.services .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.services .box-container .box {
    background: var(--dark-alt-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    border: .2rem solid var(--dark-color);
}

.services .box-container .box:hover {
    border: var(--border);
}

.services .box-container .box i {
    font-size: 5rem;
    color: var(--primary-color);
}

.services .box-container .box h3 {
    font-size: 2rem;
    color: var(--light-color);
}

.services .box-container .box p {
    padding: 1rem 0;
    font-size: 1.4rem;
    color: var(--light-alt-color);
    line-height: 2;
}

.gallery .box-container {
    columns: 3 25rem;
    column-gap: 1.5rem;
}

.gallery .box-container .box {
    margin-bottom: 1rem;
    break-inside: avoid;
    cursor: pointer;
}

.gallery .box-container .box:focus-visible {
    outline: .2rem solid var(--primary-color);
    outline-offset: .2rem;
    border-radius: 1rem;
}

.gallery .box-container .box img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.gallery .box-container .box:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.gallery .box-container .box span {
    font-size: 1.4rem;
    color: var(--light-alt-color);
}

.gallery .box-container .box span i {
    color: var(--primary-color);
    padding-right: .5rem;
}

.gallery .box-container .box h3 {
    font-size: 2rem;
    color: var(--light-color);
    margin-top: .5rem;
}

.review {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.review .content {
    flex: 1 1 42rem;
}

.review .content span {
    font-size: 2rem;
    color: var(--primary-color);
}

.review .content h3 {
    font-size: 3rem;
    color: var(--light-color);
}

.review .content p {
    font-size: 1.4rem;
    color: var(--light-alt-color);
    padding: 1rem 0;
    line-height: 2;
}

.review .review-slider {
    flex: 1 1 42rem;
    position: relative;
}

.review .slider-wrapper {
    overflow: hidden;
    touch-action: pan-y;
}

.review .box-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

.review .box-container .box {
    flex: 0 0 100%;
    min-width: 20rem;
    border-radius: 1rem;
    padding: 2rem;
    background: var(--dark-alt-color);
    border: .2rem solid var(--dark-color);
}

.review .box-container .box:hover {
    border: var(--border);
}

.review .box-container .box p {
    font-size: 1.4rem;
    padding-bottom: 1rem;
    line-height: 2;
    color: var(--light-alt-color);
}

.review .box-container .box .user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review .box-container .box .user img {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
}

.review .box-container .box .user h3 {
    font-size: 1.7rem;
    color: var(--light-color);
}

.review .box-container .box .user span {
    color: var(--light-alt-color);
    font-size: 1.5rem;
}

.review .slider-controls {
    text-align: center;
    margin-top: 2rem;
}

.review .slider-controls .slider-btn {
    display: inline-block;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 2rem;
    margin: 0 .5rem;
    background: var(--dark-alt-color);
    color: var(--primary-color);
    border: var(--border);
    border-radius: 50%;
    cursor: pointer;
}

.review .slider-controls .slider-btn:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.blogs .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box {
    border-radius: 1rem;
    background: var(--dark-alt-color);
    overflow: hidden;
}

.blogs .box-container .box:hover .image img {
    transform: scale(1.1);
}

.blogs .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.blogs .box-container .box .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blogs .box-container .box .content {
    padding: 2rem;
}

.blogs .box-container .box .content .link {
    font-size: 2rem;
    color: var(--light-color);
}

.blogs .box-container .box .content .link:hover {
    color: var(--primary-color);
}

.blogs .box-container .box .content p {
    padding: 1rem 0;
    font-size: 1.4rem;
    color: var(--light-alt-color);
    line-height: 2;
}

.blogs .box-container .box .content .icon {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogs .box-container .box .content .icon a {
    font-size: 1.4rem;
    color: var(--light-alt-color);
}

.blogs .box-container .box .content .icon a:hover {
    color: var(--primary-color);
}

.blogs .box-container .box .content .icon a i {
    padding-right: .5rem;
    color: var(--primary-color);
}

.banner {
    background: linear-gradient(rgba(17, 17, 17, .7), rgba(17, 17, 17, .7)), url(../images/home-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 2rem;
    text-align: center;
}

.banner .content span {
    font-size: 2rem;
    color: var(--primary-color);
}

.banner .content h3 {
    font-size: 4rem;
    color: var(--light-color);
    margin-top: 1rem;
}

.banner .content p {
    max-width: 60rem;
    margin: 1rem auto;
    font-size: 1.4rem;
    color: var(--light-alt-color);
    line-height: 2;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box {
    padding: 1rem 0;
}

.footer .box-container .box .logo {
    padding-bottom: 1rem;
}

.footer .box-container .box h3 {
    font-size: 2.2rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box h3 i {
    color: var(--primary-color);
    padding-right: .5rem;
}

.footer .box-container .box p {
    font-size: 1.4rem;
    color: var(--light-alt-color);
    padding: 1rem 0;
    line-height: 2;
}

.footer .box-container .box p i {
    padding-right: .5rem;
    color: var(--primary-color);
}

.footer .box-container .box .share {
    padding-top: 1rem;
}

.footer .box-container .box .share a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.7rem;
    border-radius: 50%;
    border: var(--border);
    color: var(--primary-color);
    margin-right: .5rem;
    text-align: center;
}

.footer .box-container .box .share a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.footer .box-container .box .links {
    font-size: 1.4rem;
    color: var(--light-alt-color);
    padding: 1rem 0;
    display: block;
}

.footer .box-container .box .links:hover {
    color: var(--primary-color);
}

.footer .box-container .box .links:hover i {
    padding-right: 2rem;
}

.footer .box-container .box .links i {
    padding-right: .5rem;
    color: var(--primary-color);
}

.footer .box-container .box form {
    position: relative;
}

.footer .box-container .box form .email {
    width: 100%;
    border-radius: 5rem;
    border: var(--border);
    background: none;
    font-size: 1.5rem;
    text-transform: none;
    color: var(--light-alt-color);
    margin-bottom: 1rem;
    padding: 1.2rem 1.4rem;
}

.footer .box-container .box form .btn i {
    margin-left: .5rem;
}

.credit {
    background: var(--dark-alt-color);
    text-align: center;
    font-size: 2rem;
    padding: 2rem 1rem;
    color: var(--light-alt-color);
}

.credit span {
    color: var(--primary-color);
}

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10rem);
    transition: all .3s ease-out;
}

.scroll-top-btn.active {
    opacity: 1;
    transform: translateY(0);
}

/* Form Messages */
.form-message {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: .5rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: none;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.form-message.visible {
    opacity: 1;
    pointer-events: auto;
}

.form-message.success {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.form-message.error {
    background-color: var(--error-color);
    color: var(--light-color);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox .lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: .5rem;
    transform: scale(0.8);
    transition: transform .3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox .close-btn {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 4rem;
    color: var(--light-color);
    cursor: pointer;
}

/* Media Queries */
@media(max-width: 991px) {
    .header {
        padding: 1.5rem 2rem;
    }

    html {
        font-size: 55%;
    }

    section {
        padding: 3rem 2rem;
    }

    .review .box-container .box {
        flex: 0 0 100%;
    }
}

@media(max-width: 768px) {
    #menu-btn {
        display: inline-block;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-alt-color);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .2s linear;
    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a {
        margin: 2rem;
        font-size: 2rem;
        display: block;
    }

    .home {
        margin-top: 10rem;
    }

    .home .content span {
        font-size: 8vw;
    }

    .home .content h3 {
        font-size: 9vw;
    }

    .review .box-container {
        transform: none !important;
        flex-direction: column;
    }

    .review .slider-controls {
        display: none;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .about .content h3 {
        font-size: 3.5rem;
    }

    .banner .content h3 {
        font-size: 2.7rem;
    }

    .gallery .box-container {
        columns: 2 15rem;
    }
}
