@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Nanum+Gothic&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Manrope", sans-serif;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: -1; /* Set z-index to -1 to move the background behind the content */
}

header {
    background: url(bglogo.jpg) center/cover no-repeat;
    text-align: center;
    position: relative;
    padding: 4rem 0;
    color: white;
    z-index: 1; /* Set z-index to 1 to move the header content in front of the background */
}

header img {
    max-width: 100%;
    max-height: auto;
    z-index: 2; /* Set z-index to 2 to move the logo in front of the background */
}

header h1 {
    font-size: 12px;
    margin-bottom: 1rem;
}

nav {
    background-color: rgba(5, 5, 5, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: top 0.3s ease; /* Menambahkan transisi untuk efek yang lebih halus */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    margin: auto;
}

.navbar img {
    height: 40px;
    width: auto;
    float: left;
    margin-right: 20px;
}

.logo a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.menu {
    list-style-type: none;
    display: flex;
}

.menu li {
    margin: 0 1rem;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: rgb(72, 220, 240);
}

/* Header Responsif */
@media only screen and (max-width: 768px) {
    header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, .5);
        z-index: -1; /* Set z-index to -1 to move the background behind the content */
    }

    header {
        padding: 2rem 0;
        
        
    }

    header h1 {
        font-size: 1rem;
    }

    nav {
        background-color: rgba(5, 5, 5, 0.5);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        justify-content: center;
        transition: top 0.3s ease; /* Menambahkan transisi untuk efek yang lebih halus */
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2px;
        justify-content: center;
    }

    .navbar img {
        height: 30px;
        width: auto;
        float: left;
        margin-right: 20px;
    }

    .logo a {
        text-decoration: none;
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .menu {
        list-style-type: none;
        display: flex;
        align-items: center;
        margin: 0;
    }

    .menu li {
        margin: 0 1rem;
        margin-left: auto;
    }

    .menu li a {
        text-decoration: none;
        color: white;
        transition: color 0.3s ease;
        font-size: 10px;
        justify-content: center;
    }

    .menu li a:hover {
        color: rgb(33, 236, 226);
    }
}

/* Sembunyikan menu dropdown secara default */
.destination-dropmenu {
    display: none;
}

/* Tampilkan menu dropdown saat kursor menyentuh elemen "Destination" */
li:hover .destination-dropmenu {
    display: block;
}

/* Tambahkan beberapa gaya untuk meningkatkan tampilan dropdown */
.destination-dropmenu {
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5); /* Warna latar belakang dropdown */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Efek bayangan dropdown */
}

.destination-dropmenu li {
    display: block;
}

.destination-dropmenu a {
    color: #333; /* Warna teks dropdown */
    padding: 10px;
    text-decoration: none;
    display: block;
}

.destination-dropmenu a:hover {
    background-color: #f4f4f4; /* Warna latar belakang saat hovered */
}


main {
    max-width: 2000px;
    margin: 2rem auto;
    padding: 5rem;
    background-color: #128C7E;
    background-attachment: fixed;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
}

.destination {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
}

.destination h2 {
    color: white;
    margin: 40px auto 2rem;
    border-bottom: 2px solid #333;
}

.destination p {
    color: white;
    background-color: rgba(0, 0, 0, .4);
}

.contentparagraf {
    text-align: justify;
    font-size: 20px;
    word-spacing: 3px;
}

.contentparagraf p {
    margin: 0 100px;
}

.contact, .address, .payment {
    margin: 50px 0 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.7);
    border: #2c2c2c solid;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.contact h2, .address h2, .payment h2 {
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
}

.number img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

.payment p {
    font-size: 15px;
    text-align: left;
}

.teams {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.teams .judul h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.teams .team-member {
    display: inline-block;
    width: 300px;
    margin: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.teams .team-member:hover {
    transform: translateY(-5px);
}

.teams .team-member img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 20px;
    border: 5px solid #e0e0e0;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1); /* Lebih halus dari ease */
}

.teams .team-member img:hover {
    transform: scale(1.1);
    z-index: 10; /* Ensures it's on top if needed */
}

.teams .team-member .info {
    padding: 20px;
    text-align: justify;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #2c2c2c;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer img {
    max-width: 100%;
    height: auto;
}

.footer p {
    margin-top: 10px;
}

.detail-contact1 {
    font-weight: bold;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 2rem 0;
    }

    header h1 {
        font-size: 1rem;
    }

    .navbar img {
        height: 30px;
    }

    .menu li a {
        font-size: 10px;
    }

    main {
        padding: 1rem;
    }

    .contentparagraf {
        font-size: 12px;
    }

    .contentparagraf p {
        margin: 0;
    }

    .teams .team-member {
        width: 90%;
    }

    .teams .team-member img {
        width: 200px;
        height: 200px;
    }
}














/*footer*/
footer {
    text-align: center;
    background-color: #f0f0f0; /* Ganti dengan warna latar belakang yang diinginkan */
}

.footer-container {
    display: flex;
    padding: 10px;
    background-color: #2c2c2c;
    color: #333;
    justify-content: center;
    align-items: center;
}

.footer img {
    max-width: 100%;
    height: auto;
}

.footer p {
    margin-top: 10px;
    color: white;
}



@media only screen and (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        margin-bottom: 20px;
    }

}

/* CSS untuk ukuran layar sedang (misalnya, tablet) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .footer-container {
        justify-content: space-between;
    }

    .footer {
        width: 48%;
    }
}

/* CSS untuk ukuran layar besar (misalnya, desktop) */
@media only screen and (min-width: 1025px) {
    .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; /* Allow items to wrap to the next line */
    }

    .footer-left {
        width: 48%;
    }

    .footer-right {
        justify-content: left;
        margin-right: 0%;
        margin-top: 0%;
        margin-bottom: 40px;
    }

    .footer p {
        margin-left: 20px;
        margin-right: 0%;
    }
}
.detail-contact1 {
    font-weight: bold;
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    p {
        font-size: 20px;
        font-family: "Manrope", sans-serif;
    }
}



