:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #ff5733;
    /* Orange-red from swan beak */
    --text-color: #f5f5f5;
    --muted-color: #a0a0a0;
    --card-bg: #262626;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=2574&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--muted-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

/* Biz Kimiz */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--muted-color);
}

/* Contact */
.contact {
    background-color: var(--card-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.contact-item {
    padding: 30px;
    background: var(--primary-color);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Menu Page */
.page-header {
    padding: 100px 0 40px;
    text-align: center;
    background-color: var(--card-bg);
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.menu-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.item-desc {
    color: var(--muted-color);
    font-size: 0.9rem;
}

.price {
    color: var(--accent-color);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted-color);
    font-size: 0.9rem;
}

/* Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    /* Wrap on very small screens */
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--accent-color);
    color: white;
}

.menu-category-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    /* Center Logo on Mobile */
    nav {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        justify-content: center;
    }

    .item-header {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .tab-btn {
        flex: 1 1 auto;
        min-width: 100px;
    }

    /* Show only logo image on mobile */
    .logo span {
        display: none;
    }
}