.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1494500764479-0c8f2919a3d8");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-img {
    border-radius: 15px;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.member-logo {
    height: 50px;
    object-fit: contain;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.destination-card {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    transition: transform 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.btn-light {
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 500;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.navbar {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ff6500;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ff6500;
}

.nav-link:hover::after {
    visibility: visible;
    transform: scaleX(1);
}

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: #ff6500;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
}

#backToTopBtn:hover {
    background-color: #ff8033;
}

/* #blog {
        background-color: #1a1a1d;
    } */
#footer {
    background-color: #1a1a1d;
}

.btn {
    background-color: #1a1a1d;
}

.btn:hover {
    background-color: #1a1a1dbd;
}

.member-logo {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* hero */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    z-index: 2;
    color: white;
}

.carousel-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-read {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-read:hover {
    background: white;
    color: black;
}

/* Tambahkan CSS ini ke kode sebelumnya */

.carousel-item {
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 15s ease;
    /* Durasi zoom bisa disesuaikan */
}

/* Efek zoom ketika slide aktif */
.carousel-item.active img {
    transform: scale(1.2);
    /* Seberapa besar zoom bisa disesuaikan */
}

/* Responsive */
@media screen and (max-width: 768px) {
    .carousel-content {
        left: 20px;
        right: 20px;
    }

    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    /* border-radius: 50% !important; */
    margin: 0 8px !important;
    background-color: rgba(255, 119, 0, 0.5) !important;
    /* Ubah ke warna kuning dengan opacity */
    border: none !important;
}

.carousel-indicators button.active {
    background-color: #ff6500 !important;
    /* Warna kuning solid untuk dot yang aktif */
}

/* end hero */
.member-logo {
    height: 100px;
    margin: auto;
    object-fit: contain;
    display: block;
}

.owl-carousel .item {
    text-align: center;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

/* .owl-dots .owl-dot {
        width: 12px;
        height: 12px;
        background: #ddd;
        display: inline-block;
        border-radius: 50%;
        margin: 5px;
    } */

/* .owl-dots .owl-dot.active {
        background: #333;
    } */
.btn {
    background-color: #ff8033;
}

.btn:hover {
    background-color: #ff6500;
}

.section-title {
    color: #ff8033;
}

.social-link {
    text-decoration: none;
}

.social-icon {
    width: 32px;
    /* Ukuran ikon */
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    /* Efek zoom saat hover */
}

.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Jarak antar ikon */
}

.owl-carousel .item {
    background: transparent;
}

.member-logo {
    max-height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
    background: transparent;
}

.active-nav {
    background-color: #ffffff !important;
    color: #ff6500 !important;
}

.pagination .page-link {
    color: #ff6500;
    /* Text color */
    border-color: #ff6500;
    /* Border color */
}

.pagination .page-item.active .page-link {
    background-color: #ff6500;
    /* Background color for active page */
    border-color: #ff6500;
    color: white;
    /* Text color for active page */
}

.pagination .page-link:hover {
    color: white;
    background-color: #ff660080;
    /* border-color: #ff6500; */
}

.social-icon {
    font-size: 2rem;
    /* Mengubah ukuran ikon */
    transition: color 0.3s;
    /* Efek transisi saat hover */
}

/* Warna untuk masing-masing ikon sosial media */
.facebook {
    color: #ffffff;
    /* Warna Facebook */
}

.twitter {
    color: #ffffff;
    /* Warna Twitter */
}

.instagram {
    color: #ffffff;
    /* Warna Instagram */
}

.youtube {
    color: #ffffff;
    /* Warna YouTube */
}

.tiktok {
    color: #ffffff;
    /* Warna TikTok */
}

/* Efek hover */
.social-link:hover .social-icon {
    opacity: 0.8;
    /* Mengurangi ketebalan saat hover */
}

.hero {
    overflow: hidden;
}

/* You might also want to add this to ensure the carousel container itself handles overflow properly */
#heroCarousel {
    overflow: hidden;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #ff6600;
    padding-left: 10px;
    margin-left: 0;
}

/* banner */
.banner-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.3));
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("/assets/banner_WT_2.jpg") center/cover;
    z-index: 1;
}



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.left-content {
    flex: 1;
    max-width: 600px;
}

.main-title {
    font-size: 7rem;
    font-weight: 900;
    color: white;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.subtitle,
.author {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    color: #ffffff;
}

.subtitle {
    font-style: italic;
}

.author {
    margin-top: 5px;
    font-weight: bold;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ff6500;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px #ff6500;
}

.cta-button:hover {
    background: #ff6500;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px #ff6500;
}

.cta-button::after {
    content: "→";
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(8px);
}

/* Side Images Container */
.side-images {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 15;
}

/* Main destination card (Nusa Penida) */
.main-destination-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0;
    width: 360px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.main-destination-card:hover {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.main-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}

.main-card-content {
    padding: 25px;
    position: relative;
}

.main-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.main-card-location {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 400;
}

.main-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-style: italic;
}

.main-card-plus {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.main-card-plus:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Side slider images (partially visible) */
.side-slider {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.side-card {
    width: 200px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.side-card:hover {
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.side-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 15px;
    color: white;
}

.side-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.side-card-location {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Navigation arrow */
.navigation-arrow {
    position: absolute;
    right: 300px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    z-index: 20;
}

.navigation-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Pagination dots */
.pagination-dots {
    position: absolute;
    bottom: 80px;
    left: 80px;
    display: flex;
    gap: 15px;
    z-index: 15;
}

.dot {
    width: 40px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: white;
    width: 50px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-title {
        font-size: 5.5rem;
    }

    .content {
        padding: 0 60px;
    }

    .side-images {
        right: 40px;
    }

    .main-destination-card {
        width: 320px;
    }

    .side-card {
        width: 180px;
        height: 120px;
    }

    .navigation-arrow {
        right: 260px;
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        text-align: center;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .side-images {
        position: static;
        transform: none;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .navigation-arrow {
        display: none;
    }

    .main-destination-card {
        width: 100%;
        max-width: 360px;
    }

    .side-slider {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .side-card {
        min-width: 160px;
        height: 100px;
    }

    .pagination-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
    }
}

/* Hide navigation elements on mobile */
@media (max-width: 768px) {

    /* Hide navigation arrow on mobile */
    .navigation-arrow {
        display: none !important;
    }

    /* Hide pagination dots on mobile */
    .pagination-dots {
        display: none !important;
    }

    /* Existing mobile styles remain the same */
    .banner-container {
        position: relative;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }

    .content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
    }

    .left-content {
        flex: none;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .main-title {
        font-size: 3.5rem;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .subtitle {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 30px;
        max-width: 90%;
    }

    .cta-button {
        margin: 0 auto;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .side-images {
        position: static;
        transform: none;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 20px;
    }

    .main-destination-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .side-slider {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .side-card {
        min-width: 140px;
        height: 90px;
        flex-shrink: 0;
    }
}

/* Extra small devices - keep navigation hidden */
@media (max-width: 480px) {
    .navigation-arrow {
        display: none !important;
    }

    .pagination-dots {
        display: none !important;
    }

    .content {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .side-images {
        margin-top: 30px;
        padding: 0 15px;
    }

    .main-destination-card {
        max-width: 280px;
    }

    .side-card {
        min-width: 120px;
        height: 80px;
    }

    .side-card-title {
        font-size: 1rem;
    }

    .side-card-location {
        font-size: 0.8rem;
    }
}

/* Landscape orientation - keep navigation hidden on mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .navigation-arrow {
        display: none !important;
    }

    .pagination-dots {
        display: none !important;
    }

    .content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 20px 40px;
    }

    .left-content {
        flex: 1;
        max-width: 50%;
        text-align: center;
    }

    .main-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .side-images {
        position: static;
        flex: 1;
        margin-top: 0;
        margin-left: 20px;
        max-width: 40%;
    }

    .main-destination-card {
        width: 100%;
        max-width: 250px;
    }

    .side-slider {
        flex-direction: column;
        gap: 10px;
    }

    .side-card {
        min-width: auto;
        width: 100%;
        height: 70px;
    }
}

/* Very small screens - keep navigation hidden */
@media (max-width: 320px) {
    .navigation-arrow {
        display: none !important;
    }

    .pagination-dots {
        display: none !important;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content {
        padding: 20px 10px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .main-destination-card {
        max-width: 260px;
    }

    .side-card {
        min-width: 100px;
        height: 70px;
    }
}

/* CSS Additions for Side Images Switch Effect */

/* Main destination card dengan efek switch */
.main-destination-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0;
    width: 360px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.main-destination-card.switching {
    transform: translateX(-20px) scale(0.95);
    opacity: 0.7;
}

.main-destination-card:hover {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.main-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-card-image.switching {
    opacity: 0;
    transform: scale(1.1);
}

.main-card-content {
    padding: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.main-card-content.switching {
    transform: translateY(10px);
    opacity: 0.8;
}

/* Side cards dengan animasi yang lebih subtle */
.side-card {
    width: 200px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.side-card.switching {
    transform: translateX(-10px) scale(0.9);
    opacity: 0.5;
}

.side-card:hover {
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.side-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.side-card-image.switching {
    opacity: 0;
    transform: scale(1.1);
}

/* Navigation arrow dengan pulse animation */
.navigation-arrow {
    position: absolute;
    right: 300px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    z-index: 20;
    animation: pulse 2s infinite;
}

.navigation-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-50%) scale(1.05);
        opacity: 0.8;
    }
}