* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: #f4f4f4;
    color: #333;
}

/* Navbar Container */
nav {
    background: rgba(0, 0, 0, 0.8); /* Transparan hitam */
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container Flexbox */
.nav-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 50px; /* Sesuaikan ukuran */
}

/* Menu Links */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #facc15; /* Warna hover kuning */
}

/* Tombol Login */
.login-btn {
    background-color: #facc15; /* Warna kuning */
    color: black;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #eab308; /* Warna kuning lebih gelap */
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 20px 0;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.cta {
    background: orange;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("../images/hero.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlay Transparan */
.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Efek gelap */
    padding: 40px;
    border-radius: 10px;
    color: white;
    max-width: 80%;
    animation: fadeIn 1.5s ease-in-out;
}

/* Animasi Hero */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Judul */
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Harga */
.hero-price {
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: bold;
}

.hero-price span {
    color: #ffd700; /* Warna emas */
}

/* Tombol CTA */
.hero-btn {
    margin-top: 20px;
    display: inline-block;
    background-color: #facc15;
    color: black;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.hero-btn:hover {
    background-color: #eab308;
    transform: scale(1.05);
}

/* Responsif */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-price {
        font-size: 1.2rem;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Destinations Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 50px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-item.large {
    grid-column: span 2;
    height: 400px;
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: white;
    margin-top: 30px;
}
