body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

h1 {
    font-family: "Calistoga", serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-family: "Calistoga", serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    font-family: "Calistoga", serif;
    font-weight: 400;
    font-style: normal;
}

header img {
    height: 50px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: "Calistoga", serif;
    font-weight: 400;
    font-style: normal;
}

/* Responsif untuk bagian rental mobil */
.rental-mobil {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.mobil {
    width: 90%;
    max-width: 300px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.mobil img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Tentang & Alamat */
.tentang, .alamat {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.logo-container h1 {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 700; /* Bisa diubah: 400, 500, 600, 700 */
    font-style: normal;
    font-size: 32px;
    color: white;
}

.logo-container img {
    height: 50px;
}

/* Destinasi */
.destination-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.column {
    flex-grow: 1;
    text-align: center;
}

.left, .right {
    flex-basis: 40%;
}

.middle {
    flex-basis: 100%;
}

.left img, .right iframe {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Media Queries untuk Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .rental-mobil {
        flex-direction: column;
        align-items: center;
    }

    .mobil {
        width: 100%;
        max-width: 300px;
    }

    .destination-container {
        flex-direction: column;
        align-items: center;
    }

    .left, .middle, .right {
        flex-basis: 100%;
    }

    .left img, .right iframe {
        width: 100%;
        height: auto;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}
.kontak {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.kontak h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.kontak p {
    font-size: 16px;
    line-height: 1.6;
}

.kontak a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.kontak a:hover {
    text-decoration: underline;
}

