body {
    margin: 0;
    font-family: 'Poppins',sans-serif;
    background: #0f0f0f;
    color: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #121212;
}

nav a {
    color: #c89b3c;
    margin-left: 20px;
    text-decoration: none;
}
nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
}

    nav::-webkit-scrollbar {
        display: none;
    }


h1, h2 {
    font-family: 'Playfair Display',serif;
    letter-spacing: 1px;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
        url('../images/hero-bg.jpg') center/cover no-repeat;
}

    .hero h2 {
        font-size: 60px;
    }

.btn {
    padding: 12px 30px;
    background: #c89b3c;
    color: #000;
    text-decoration: none;
    margin: 10px;
}

    .btn.outline {
        background: none;
        border: 1px solid #c89b3c;
        color: #c89b3c;
    }

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.card {
    background: #1c1c1c;
    padding: 30px;
    border: 1px solid #c89b3c;
    transition: 0.3s;
}

    .card:hover, .menu-item:hover {
        background: #222;
        transform: scale(1.03);
    }

.content {
    padding: 60px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    transition: 0.3s;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.placeholder {
    background: #1c1c1c;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

footer {
    text-align: center;
    padding: 20px;
    background: #121212;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* MOBILE */
@media(max-width:768px) {
    header {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 38px;
    }

    .features {
        flex-direction: column;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .content {
        padding: 30px;
    }
}
