/* Base Styles */
:root {
    --primary: #0f0f1a;
    --secondary: #6e44ff;
    --accent: #ff2d75;
    --text: #e0e0e0;
    --text-dark: #1a1a1a;
    --light: #f8f8f8;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-neon {
    background-color: var(--secondary);
    color: var(--light);
    box-shadow: 0 0 10px rgba(110, 68, 255, 0.5);
}

.btn-neon:hover {
    background-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 45, 117, 0.7);
    transform: translateY(-3px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: var(--light);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    margin: 15px auto 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    letter-spacing: 2px;
}

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    transition: width 0.3s ease;
}

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--light);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1280&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.neon-text {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--light);
    text-shadow: 0 0 10px rgba(110, 68, 255, 0.7);
    animation: neonGlow 2s infinite alternate;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--light);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--light);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

/* Concept Section */
.concept {
    padding: 100px 0;
    background-color: var(--primary);
}

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

.concept-card {
    background-color: rgba(30, 30, 46, 0.7);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(110, 68, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.concept-card.active {
    opacity: 1;
    transform: translateY(0);
}

.concept-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.concept-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.concept-card p {
    color: var(--text);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: #141424;
}

.menu-category {
    margin-bottom: 60px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.menu-category.active {
    opacity: 1;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(110, 68, 255, 0.3);
}

.menu-items {
    display: grid;
    gap: 20px;
}

.menu-item {
    background-color: rgba(30, 30, 46, 0.7);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

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

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.item-header h4 {
    font-size: 1.2rem;
    color: var(--light);
}

.price {
    color: var(--secondary);
    font-weight: 600;
}

.menu-item p {
    color: var(--text);
    font-size: 0.95rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.team-card.active {
    opacity: 1;
    transform: scale(1);
}

.team-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.03);
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--light);
}

.team-card p {
    color: var(--secondary);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #141424;
}

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

.contact-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.contact-info.active {
    opacity: 1;
    transform: translateX(0);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.contact-form {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.contact-form.active {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: rgba(30, 30, 46, 0.7);
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--secondary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--primary);
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--light);
}

.footer-brand p {
    color: var(--text);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(30, 30, 46, 0.7);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(30, 30, 46, 0.7);
    color: var(--text);
    font-size: 0.9rem;
}

/* Animations */
@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px rgba(110, 68, 255, 0.7);
    }
    to {
        text-shadow: 0 0 20px rgba(110, 68, 255, 0.9), 0 0 30px rgba(110, 68, 255, 0.5);
    }
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    100% {
        transform: translateY(15px) translateX(-50%);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .neon-text {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .neon-text {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .neon-text {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .concept-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}