body {
    background: url('../images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.navbar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

.logo-baubau,
.logo-middle,
.logo-right {
    height: 80px;
    /* Perbesar ukuran logo */
    width: auto;
    /* Menyesuaikan lebar secara proporsional */
}

.hero-section {
    padding: 150px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.menu-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    color: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.menu-card h3 {
    color: #1d3557;
}

.menu-icon {
    font-size: 5rem;
    color: #FFD700;
}

.contact-info {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-info p {
    margin: 8px 0;
}

.contact-info i {
    margin-right: 10px;
}

.sticky-footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    font-weight: bold;
}

.wave {
    position: relative;
    width: 100%;
    height: 150px;
    background: url('../images/wave.png') repeat-x;
    animation: wave 5s infinite linear;
}

@keyframes wave {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: 1000px;
    }
}
