body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
}
.logo img {
    height: 50px; 
    width: auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px; 
    background: rgba(0, 0, 0, 0.0);
    color: white;
    z-index: 10;
    box-sizing: border-box;
}
.navbar.scrolled {
    background: grey;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


.navbar.scrolled .menu a {
    color: white;
}

.navbar.scrolled .nav-btn {
    background: black;
    color: white;
}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.menu a:hover {
    text-decoration: underline;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    background: black;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: grey;
}
.navbar.scrolled .hamburger {
    color: black; /* supaya kelihatan di navbar putih */
}

/* Hero section */
.hero {
    background: url('https://i.pinimg.com/1200x/93/85/5b/93855bc9e97f4ec0f5df5f12b48169b5.jpg') center/cover no-repeat;
    height: 90vh;
    position: relative;
    color: white;
}

.hero-content {
    position: absolute;
    top: 20%;
    left: 8%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    text-shadow:
        -2px -2px 0 #555,  
         2px -2px 0 #555,
        -2px  2px 0 #555,
         2px  2px 0 #555; /* efek outline abu-abu gelap */
}

.more-btn {
    margin-top: 20px;
    background: #222;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* Info bar */
.info-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-item {
    text-align: center;
    min-width: 300px;
}

.date {
    font-weight: bold;
    background: #ddd;
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: 8px;
}

.divider {
    width: 3px;
    height: 40px;
    background: #ccc;
}

.info-item p {
    color: black;
    font-size: 14px;
    font-weight: normal;
}

/* THREE CARDS */
.three-cards {
    padding: 60px 20px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 300px;
}

.card img {
    width: 100%;
    height: auto;
}

/* IMAGE-TEXT */
.image-text {
    display: flex;
    align-items: center;
    padding: 70px 0px;
    gap: 20px;
    
}

.image-text.reverse {
    flex-direction: row-reverse;
}

.image-text img {
    width: 50%;
    max-width: 650px;
}

.image-text div {
    width: 50%;
}

/* FULL IMAGE */
.full-image {
    text-align: center;
    padding: 50px;
}

.full-image img {
    width: 80%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    object-fit: cover;
    height: 300px;
}

.full-image p {
    max-width: 800px;
    margin: 20px auto;
    text-align: justify;
}

/* CONTACT */
.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 40px;
}

.contact-divider {
    width: 2px;
    height: 80px;
    background: #ccc;
}

.reservation-btn {
    background: black;
    color: white;
    border: none;
    padding: 10px 35px;
    font-size: 16px;
}

/* INQUIRY - CARD */
.inquiry {
    background: #e6e6e6;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 60px auto;
}

.inquiry h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.inquiry form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form row horizontal */
.form-row {
    display: flex;
    align-items: center;
    gap: 15px; /* jarak antara label dan input */
}

.form-row label {
    font-weight: bold;
    width: 150px; /* lebar label tetap */
    margin-bottom: 0; /* hilangkan margin bawah */
}

.form-row input,
.form-row textarea {
    flex: 1; /* input/textarea ambil sisa ruang */
    padding: 12px;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 6px;
    background: #fff;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Submit button */
.inquiry button[type="submit"] {
    display: inline-block;
    width: auto;
    padding: 12px 30px;
    background: black;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    margin: 20px auto 0 auto;
    cursor: pointer;
    transition: 0.3s;
}

.inquiry button[type="submit"]:hover {
    background: #444;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        gap: 15px;
        width: 200px;
        border-radius: 4px;
    }

    .menu a {
        font-size: 16px;
        color: white;
    }

    .menu.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-btn {
        display: block;
        padding: 8px 12px;
        font-size: 14px;
    }
    .cards {
        flex-direction: column;
        align-items: center;
        gap: 30px; /* jarak antar card lebih lega */
    }

    .card {
        width: 90%; /* jadi lebih lebar hampir full screen */
        text-align: center;
    }

    .card h3 {
        font-size: 24px; /* judul card lebih besar */
    }

    .card p {
        font-size: 16px; /* paragraf lebih mudah dibaca */
    }

    .card img {
        width: 100%; /* gambar ikut lebar card */
        height: auto;
    }


    .hero-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .more-btn {
        margin: 20px auto 0 auto;
    }

    .image-text,
    .image-text.reverse {
        flex-direction: column;
        padding: 10px;
        text-align: center;
        height: auto;
    }

    .image-text img,
    .image-text div {
        width: 100%;
        max-width: 100%;   /* override max-width sebelumnya */
        border-radius: 0;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .contact {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-divider {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .full-image img {
        width: 100%;
        height: auto;
    }

    .info-bar {
        display: none;
    }

    .inquiry {
        margin: 20px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .inquiry h2 {
        font-size: 24px;
    }

    .form-row input,
    .form-row textarea {
        padding: 10px;
    }

    .inquiry button[type="submit"] {
        padding: 10px 20px;
    }
}
