* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #050505;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

header, section, footer {
    position: relative;
    z-index: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #d4af37;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-nav-btn:hover {
    background: #d4af37;
    color: #000;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px 20px;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #d4af37;
}

.hero p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Categories Nav */
.categories-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    flex-wrap: wrap;
}

.category-btn {
    background: #141414;
    color: #ccc;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* Menu Grid */
.menu-container {
    max-width: 1100px;
    margin: 20px auto 40px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}

.menu-card {
    background: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-info {
    flex: 1;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #d4af37;
}

/* Sections */
.section-padding {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px 20px;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-socials a {
    color: #d4af37;
    font-size: 1.3rem;
}

@media (max-width: 600px) {
    .brand-name { display: none; }
    .hero h1 { font-size: 1.7rem; }
}