:root {
    --primary-color: #c5a059;
    --dark-color: #121212;
    --bg-dark: #1a1a1a;
    --text-color: #e0e0e0;
    --transition: all 0.3s ease;
    --border-color: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
}

header {
    background: var(--dark-color);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 2px;
}

#check { display: none; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.menu-section {
    padding: 6rem 5%;
    background: var(--bg-dark);
}

.menu-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-category h3 i {
    font-size: 1.4rem;
}

.menu-item {
    margin-bottom: 2rem;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
}

.menu-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 12px;
    position: relative;
    top: -4px;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.menu-item p {
    font-size: 0.85rem;
    color: #aaa;
    font-style: italic;
    line-height: 1.4;
}

.badge-signature {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn:hover {
    background: #b08d4a;
    transform: translateY(-3px);
}

.gallery {
    padding: 5rem 5%;
    background: var(--dark-color);
}

.gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-item {
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.grid-item img:hover {
    transform: scale(1.1);
}

.contact-cta {
    padding: 4rem 5%;
    text-align: center;
    background: var(--bg-dark);
}

footer {
    background: var(--dark-color);
    color: #fff;
    padding: 3rem 5% 1rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

.social-links a:hover { color: var(--primary-color); }

.credits {
    margin-top: 2rem;
    font-size: 0.8rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.credits a {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links li { margin: 1.5rem 0; }
    #check:checked ~ .nav-links { left: 0; }
    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid { grid-template-columns: 1fr; }
}