body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: "Lato", sans-serif;
}

.text-gray-1 {
    color: #c7c7c7 !important;
}
.text-gray-2 {
    color: #b1b1b1 !important;
}

.article-content {
    font-family: "Lato", sans-serif !important;
    font-size: 18px !important;
    font-weight: 400;
}

.comfortaa {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

/* General */
.fs-6 {
    font-size: 6px;
}

.fs-7 {
    font-size: 7px;
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-11 {
    font-size: 11px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-19 {
    font-size: 19px !important;
}

.fs-20 {
    font-size: 20px !important;
}

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

.fs-30 {
    font-size: 30px !important;
}

.fs-40 {
    font-size: 40px !important;
}

.fs-62 {
    font-size: 62px !important;
}

.ls-1 {
    letter-spacing: 0.5px !important;
}

.ls-2 {
    letter-spacing: 2px !important;
}

.ls-3 {
    letter-spacing: 3px !important;
}

.ls-4 {
    letter-spacing: 4px !important;
}

.ls-5 {
    letter-spacing: 5px !important;
}

.ls-6 {
    letter-spacing: 6px !important;
}

.text-gray-md {
    color: rgb(172, 172, 172) !important;
}

.text-gray-sm {
    color: rgb(215, 215, 215) !important;
}

/* General */

/* Hero Section */
.hero-section {
    height: 60%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 100px;
    transition: background-image 1s ease-in-out;
}

@media only screen and (max-width: 600px) {
    .hero-section {
        height: 50vh;
    }

    .fs-62 {
        font-size: 25px !important;
    }

    .fs-40 {
        font-size: 20px !important;
    }

    .fs-20 {
        font-size: 14px !important;
    }

    .fs-28 {
        font-size: 18px !important;
    }

    .fs-30 {
        font-size: 20px !important;
    }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.422);
    z-index: 1;
}

.hero-section * {
    position: relative;
    z-index: 2;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.background-overlay.active {
    opacity: 1;
}

.destination-section {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.destination-card {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 450px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in, box-shadow 0.3s ease-out;
}

@media only screen and (max-width: 600px) {
    .destination-card {
        height: 250px;
    }
}

.destination-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    /* Memperbesar bayangan */
}

.destination-card:hover {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.984));
    cursor: pointer;
}

.destination-card:hover img {
    transform: scale(1.1);
    /* Memperbesar gambar sedikit saat hover */
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.destination-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
    /* Default opacity saat tidak di-hover */
    transition: opacity 0.3s ease;
    /* Transisi untuk efek fade */
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.destination-country {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.destination-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.text-gradient {
    background: linear-gradient(90deg, #50b7f4 0%, #ead584 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.promo-badge-text {
    font-weight: 700;
    font-size: 1.2rem;
    /* Efek gradient untuk teks */
    background: linear-gradient(90deg, #50b7f4 0%, #ead584 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -o-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.package-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

.promo-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.tour-card-2 {
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.19) 0%,
        rgba(255, 255, 255, 0.1007) 100%
    );
    margin-bottom: 30px;
    border: 1px solid #484848;
    padding: 12px;
}

.tour-card-3 {
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.19) 0%,
        rgba(255, 255, 255, 0.1007) 100%
    );
    border: 1px solid #484848;
    transition: all 0.3s ease;
    padding: 12px;
}

.tour-card {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.19) 0%,
        rgba(255, 255, 255, 0.1007) 100%
    );
    margin-bottom: 30px;
    height: 90%;
    border: 1px solid #484848;
    transition: all 0.3s ease;
    padding: 12px;
}

.tour-card:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    /* Mengubah gradien saat hover */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    /* Menambahkan bayangan */
    transform: translateY(-5px);
    /* Menggeser card ke atas sedikit */
    border-color: #666;
    /* Mengubah warna border */
}

.tour-card:hover {
    cursor: pointer;
}

.tour-img-container {
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    border-radius: 20px;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
}

.tour-location {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.47);
    padding: 5px 10px;
    border-radius: 45px;
    font-size: 1rem;
}

.content-section {
    padding: 80px 0;
}

.glow-circle {
    width: 300px;
    height: 300px;
    background-color: rgba(7, 126, 193, 0.5);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    filter: blur(180px);
    box-shadow: 0 0 180px 80px rgba(7, 126, 193, 0.5),
        0 0 250px 120px rgba(7, 126, 193, 0.3),
        0 0 320px 180px rgba(7, 126, 193, 0.15);
}

.glow-circle-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(7, 126, 193, 0.5);
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 5%;
    transform: translate(-50%, -50%);
    z-index: -2;
    filter: blur(120px);
    box-shadow: 0 0 180px 80px rgba(7, 126, 193, 0.5),
        0 0 250px 120px rgba(7, 126, 193, 0.3),
        0 0 320px 180px rgba(7, 126, 193, 0.15);
}

.glow-circle-3 {
    width: 400px;
    height: 400px;
    background-color: rgba(7, 126, 193, 0.5);
    border-radius: 50%;
    position: absolute;
    top: 20%;
    right: -25%;
    transform: translate(-50%, -50%);
    z-index: -2;
    filter: blur(120px);
    box-shadow: 0 0 180px 80px rgba(7, 126, 193, 0.5),
        0 0 250px 120px rgba(7, 126, 193, 0.3),
        0 0 320px 180px rgba(7, 126, 193, 0.15);
}

@media only screen and (max-width: 680px) {
    .glow-circle {
        width: 200px;
        height: 200px;
        -webkit-filter: blur(120px);
        filter: blur(120px);
        box-shadow: 0 0 120px 50px rgba(7, 126, 193, 0.5),
            0 0 180px 80px rgba(7, 126, 193, 0.3);
    }

    .glow-circle-2,
    .glow-circle-3 {
        width: 250px;
        height: 250px;
        -webkit-filter: blur(80px);
        filter: blur(80px);
        box-shadow: 0 0 100px 40px #c1070780,
            0 0 150px 70px rgba(7, 126, 193, 0.3);
    }
}

/* Hero Section */

/* Detail Tour Section */

.btn-back {
    background: #ffffff30;
    color: #fff;
    border: none;
    border-radius: 27px;
    cursor: pointer;
    letter-spacing: 2px;
}

.btn-back:hover {
    background: #ffffff50;
}

.btn-back:active {
    background: #ffffff50;
}

.card-activity {
    border-radius: 15px;
    border-width: 1px;
    background: linear-gradient(
        246.17deg,
        rgba(101, 87, 30, 0.4) 0%,
        rgba(10, 110, 166, 0.28) 100%
    );
    border: 1px solid #315367;
    box-shadow: 0px 14px 44px 0px #1d86c333;
}

@media only screen and (max-width: 600px) {
    .card-activity .card-body {
        padding: 15px !important;
    }
}

/* Detail Tour Section */

/* Rent Section */

/* Rent Section */
.btn-dark {
    background: linear-gradient(
        180deg,
        rgba(131, 131, 131, 0.42) 0%,
        rgba(29, 29, 29, 0) 100%
    );
    box-shadow: 0px 4px 32px 6px #ffffff24;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-color: rgb(126, 126, 126);
    border-width: 0.8px;
}

.btn-dark:hover {
    background: none;
    background-color: rgba(29, 29, 29, 0) 83.82%;
}

.shadow-light {
    box-shadow: 0px 4px 32px 6px #ffffff24 !important;
}

/* Custom Accordion */

.accordion-flush .accordion-item {
    background-color: #2d2d2d;
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
}

.accordion-flush .accordion-button {
    background-color: rgba(255, 255, 255, 0.136);
    color: #f8f9fa;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 1.1rem;
}

.accordion-flush .accordion-button:not(.collapsed) {
    background-color: #3d3d3d;
    color: #f8f9fa;
    box-shadow: none;
}

.accordion-flush .accordion-button:focus {
    box-shadow: none;
}

.accordion-flush .accordion-body {
    background-color: #3d3d3d;
    color: #f8f9fa;
    border-radius: 0 0 8px 8px;
    padding: 15px;
}

/* .accordion-flush .accordion-button::after {
    filter: invert(1);
} */

.list-short-menu {
    list-style: none;
    padding-left: 0;
}

.list-short-menu li {
    margin-bottom: 10px;
}
