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

:root {
    --vibe-green: #2D6A4F;
    --vibe-green-light: #40916C;
    --vibe-green-dark: #1B4332;
    --vibe-green-mint: #74C69D;
    --vibe-cream: #F8F9FA;
    --vibe-gold: #D4A373;
    --vibe-dark: #2D3A3A;
    --vibe-gray: #6C757D;
    --vibe-white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--vibe-cream);
    color: var(--vibe-dark);
    line-height: 1.6;
}

header {
    background: rgba(27, 67, 50, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-logo-img {
    max-width: 200px;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--vibe-cream);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--vibe-gold);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--vibe-gold);
}

.burger {
    display: none;
    cursor: pointer;
    color: var(--vibe-cream);
    font-size: 1.5rem;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.85), rgba(45, 106, 79, 0.85)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    font-size: 1.2rem;
    margin: 1.5rem 0 2rem;
    opacity: 0.95;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--vibe-gold);
    color: var(--vibe-dark);
}

.btn-primary:hover {
    background-color: #b87a4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid var(--vibe-gold);
}

.btn-secondary:hover {
    background-color: var(--vibe-gold);
    color: var(--vibe-dark);
    transform: translateY(-3px);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vibe-green), transparent);
}

.divider-line.light {
    background: linear-gradient(90deg, transparent, var(--vibe-gold), transparent);
}

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

.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vibe-white), var(--vibe-cream));
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--vibe-green);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(45, 106, 79, 0.2);
    z-index: -1;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--vibe-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vibe-green-dark), var(--vibe-green));
    color: white;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--vibe-gold);
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.menu-header {
    background: linear-gradient(135deg, var(--vibe-green-dark), var(--vibe-green));
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
    position: relative;
}

.menu-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.header-decoration {
    width: 80px;
    height: 3px;
    background: var(--vibe-gold);
    margin: 1rem auto;
    border-radius: 3px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem;
    background: white;
    position: sticky;
    top: 70px;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--vibe-cream);
    color: var(--vibe-green-dark);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: var(--vibe-green-light);
    color: white;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--vibe-green);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.menu-section {
    margin-bottom: 4rem;
    transition: all 0.4s ease;
}

.menu-section.hidden {
    display: none;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-decoration {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--vibe-green), var(--vibe-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-decoration i {
    font-size: 1.3rem;
    color: white;
}

.section-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vibe-green-dark);
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--vibe-gold);
    border-radius: 3px;
}

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

.menu-item {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.item-header h3 {
    font-size: 1.25rem;
    color: var(--vibe-green-dark);
    font-weight: 700;
}

.price {
    font-weight: 800;
    color: var(--vibe-gold);
    font-size: 1.15rem;
}

.desc {
    color: var(--vibe-gray);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.model-container {
    margin: 1rem 0;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a2a, #0d2618);
}

model-viewer {
    --poster-color: transparent;
    background: linear-gradient(135deg, #1a3a2a, #0d2618);
}

.btn-table {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--vibe-green), var(--vibe-green-light));
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-table:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

.simple-list .menu-item {
    padding: 1rem 1.5rem;
}

.simple-list .item-header {
    margin-bottom: 0;
}

.contact-header {
    background: linear-gradient(135deg, var(--vibe-green-dark), var(--vibe-green));
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--vibe-green);
}

.info-card h3 {
    margin-bottom: 0.8rem;
    color: var(--vibe-green-dark);
}

.info-card p, .info-card a {
    color: var(--vibe-gray);
    text-decoration: none;
}

.info-card a:hover {
    color: var(--vibe-green);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

footer {
    background: linear-gradient(135deg, var(--vibe-green-dark), #0d2618);
    color: var(--vibe-cream);
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    align-items: center;
}

.footer-social a {
    color: var(--vibe-cream);
    font-size: 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--vibe-gold);
    transform: translateY(-3px);
}

.footer-hours p {
    margin: 0.3rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.glb-placeholder-note {
    font-size: 0.85rem;
    color: var(--vibe-gold);
    text-align: center;
    margin-top: 0.8rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(27, 67, 50, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-desc {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        margin: 10px 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-header, .contact-header {
        padding: 6rem 1rem 3rem;
    }
    
    .menu-header h1, .contact-header h1 {
        font-size: 2rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
        padding: 1rem;
        top: 60px;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .title-decoration {
        width: 40px;
        height: 40px;
    }
    
    .title-decoration i {
        font-size: 1rem;
    }
}
