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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

nav {
    background: #2c2c2c;
    padding: 1.15rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    transition: transform 0.3s ease;
    flex-wrap: nowrap;
}

nav.hidden {
    transform: translateY(-100%);
}

nav .logo {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.6rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4af37;
}
.logo img {
    height: 40px;
}

nav .lang-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    margin-left: 1rem;
    font-weight: 800;
    font-size: 0.95rem;
    min-width: 64px;
}

nav .lang-toggle:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-1px);
}


.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    background: #d4af37;
    color: #2c2c2c;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.about {
    padding: 5rem 10%;
    background: #f9f9f9;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.menu {
    padding: 5rem 10%;
    background: linear-gradient(180deg, rgba(248,248,248,0.9), rgba(255,255,255,1));
}

.menu h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    letter-spacing: 0.2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: start;
}

.menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: transform 0.28s, box-shadow 0.28s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.08);
}

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.menu-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.menu-card-content h3 {
    font-size: 1.15rem;
    margin: 0;
    color: #222;
    text-transform: none;
}

.menu-card-content p { color: #555; margin: 0 0 .25rem 0; }

.price {
    color: #d4af37;
    font-size: 0.98rem;
    font-weight: 800;
    background: rgba(212,175,55,0.08);
    padding: .25rem .6rem;
    border-radius: 6px;
    align-self: flex-start;
}


.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.menu-card p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: bold;
}

.contact {
    padding: 5rem 10%;
    background: #f9f9f9;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.map iframe {
    border-radius: 10px;
}

footer {
    background: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content img {
    width: 100%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #d4af37;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        gap: 0.9rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    nav .lang-toggle {
        padding: 0.35rem 0.6rem;
        font-size: 0.85rem;
        min-width: 48px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 35px;
    }
}