* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body { background-color: #1a1a1a; color: white; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 5%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 24px; font-weight: bold; letter-spacing: 2px; }
.logo span { color: #ffffff; }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: white; transition: 0.3s; }
.nav-links a:hover { color: #ffffff; }
/* Sesuaikan container logo */
.logo {
    display: flex;
    align-items: center;
}

/* Atur ukuran logo di sini */
.logo-img {
    height: 100px; /* Ubah tinggi sesuai keinginan kamu */
    width: auto;  /* Biarkan lebar otomatis agar tidak gepeng */
    display: block;
}

/* Pastikan navbar tetap rapi */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 5%; /* Padding sedikit disesuaikan untuk logo */
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.btn-book {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    color: black !important;
    font-weight: bold;
}

/* Slider / Carousel */
.main-carousel { width: 100%; height: 500px; }
.carousel-cell {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    text-align: center;
    border: 2px solid #d4af37;
}

/* Services */
.services { padding: 50px 5%; text-align: center; }
.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    width: 250px;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid #d4af37;
}
/* Gallery Styles */
.gallery {
    padding: 80px 5%;
    background-color: #111;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.gallery p {
    margin-bottom: 40px;
    color: #ccc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Efek Hover */
.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8); /* Warna emas transparan */
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: bottom 0.4s ease;
}
@media screen and (max-width: 768px) {
    .navbar {
        /* Kurangi padding atas & bawah seminimal mungkin */
        padding: 5px 3%; 
        
        /* Pastikan tidak ada height yang mengunci */
        height: auto; 
        min-height: 60px; /* Atur angka ini sesuai keinginan setipis apa */
        
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img {
        /* Sesuaikan tinggi logo agar navbar ikut mengecil */
        height: 50px; 
        margin: 5px 0;
    }

    .nav-links a {
        font-size: 10px; /* Sedikit diperkecil agar proporsional */
    }

    .btn-book {
        padding: 5px 12px;
        font-size: 10px;
    }
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.service-card img { filter: invert(1); margin-bottom: 15px; }