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

html {
    background: #000000;
}

:root {
    --primary-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --secondary-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --tertiary-gradient: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --dark-gradient: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    --purple-gradient: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    --text-color: #FFD700;
    --light-bg: #FFD700;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #000000;
    background-image: linear-gradient(to bottom, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

/* Wood texture background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, 
            transparent, 
            transparent 2px, 
            rgba(255, 215, 0, 0.1) 2px, 
            rgba(255, 215, 0, 0.1) 4px),
        repeating-linear-gradient(0deg, 
            transparent, 
            transparent 1px, 
            rgba(255, 215, 0, 0.05) 1px, 
            rgba(255, 215, 0, 0.05) 2px);
    pointer-events: none;
    z-index: -1;
}

/* Stars Background */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle at 30% 30%, #FFD700, #FFA500);
    border-radius: 50%;
    animation: moveParticle linear infinite;
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    filter: blur(0.5px);
}

@keyframes moveParticle {
    from {
        transform: translateX(0) translateY(0);
        opacity: 0.8;
    }
    to {
        transform: translateX(100vw) translateY(var(--ty));
        opacity: 0;
    }
}

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

/* Gradient Text */
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-size: 1.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    background: transparent;
    color: #FFD700;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    border: 2px solid #FFD700;
}

.lang-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.hero-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFA500;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

/* Features Section */
.features {
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(42, 42, 42, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transform-style: preserve-3d;
}

.feature-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
    color: #000;
}

.gradient-bg {
    background: var(--gold-gradient);
}

.feature-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.feature-card p {
    color: #FFA500;
}

/* Menu Accordion */
.accordion-container {
    max-width: 100%;
}

.accordion-item {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(42, 42, 42, 0.4) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.accordion-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
    background-size: 100% 100%;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    width: 100%;
    box-sizing: border-box;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    background-size: 100% 100%;
    transform: translateX(10px);
}

.accordion-header h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.accordion-toggle {
    color: #FFD700;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.accordion-item.open .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.open .accordion-content {
    max-height: 5000px;
    padding: 1.5rem;
}

.submenu-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.submenu-btn {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.submenu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
}

.submenu-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFD700 100%);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.7);
}

.submenu-content {
    display: none;
}

.submenu-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.menu-item:hover {
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.menu-item h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.menu-item p {
    color: #FFA500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.menu-item .price {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.menu-item .menu-item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.menu-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gradient-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.menu-content p {
    color: #ccc;
}

/* About Section */
.about {
    background: transparent;
}

.about-content {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(160, 130, 109, 0.2) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.1);
    transform-style: preserve-3d;
}

.about-content p {
    color: #F5DEB3;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(42, 42, 42, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transform-style: preserve-3d;
}

.contact-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.contact-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-card p {
    color: #FFA500;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer p {
    color: #FFD700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1rem;
}

.footer-links a,
.socials a {
    color: #FFA500;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.socials a:hover {
    color: #FFD700;
}

/* Map section */
.map-section {
    background: transparent;
    padding: 3rem 0 0;
}

#map {
    height: 420px;
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    overflow: hidden;
}

/* 3D Tilt Card Effect */
.tilt-card {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
        padding: 1.5rem;
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 2rem;
    }
}
