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

/* Variables */
:root {
    --black: #000000;
    --dark-orange: #ff6b00;
    --light-orange: #ff8c2e;
    --orange-glow: rgba(255, 107, 0, 0.3);
    --white: #ffffff;
    --gray: #333333;
    --light-gray: #f5f5f5;
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-weight: bold;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-orange);
    text-shadow: 0 0 20px var(--orange-glow);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--dark-orange);
    box-shadow: 0 2px 20px var(--orange-glow);
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--orange-glow));
}

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

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

.nav-links a:hover {
    color: var(--dark-orange);
    text-shadow: 0 0 10px var(--orange-glow);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-orange), var(--light-orange));
    color: var(--white);
    border-color: var(--dark-orange);
    box-shadow: 0 5px 20px var(--orange-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-orange);
    border-color: var(--dark-orange);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-call {
    background: var(--dark-orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 20px var(--orange-glow);
    animation: pulse 2s infinite;
}

.btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--orange-glow);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--orange-glow);
    }
    50% {
        box-shadow: 0 0 35px var(--orange-glow);
    }
}

.phone-icon {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/header.jpeg') center/cover no-repeat;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--dark-orange);
    text-shadow: 0 0 30px var(--orange-glow), 0 0 50px var(--orange-glow);
    animation: fadeInUp 1s;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s;
}

.hero-info {
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s;
}

.address {
    font-size: 1.3rem;
    color: var(--light-orange);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s;
}

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

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--black), var(--gray));
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--dark-orange);
    box-shadow: 0 5px 30px var(--orange-glow);
}

.map-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: var(--black);
}

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

.menu-item {
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.menu-item:hover {
    border-color: var(--dark-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--orange-glow);
}

.menu-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

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

.menu-item-content h3 {
    color: var(--dark-orange);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.menu-item-description {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.menu-item-price {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    text-align: right;
    color: var(--light-orange);
}

.cta-box {
    background: linear-gradient(135deg, var(--gray), var(--black));
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--dark-orange);
    box-shadow: 0 5px 30px var(--orange-glow);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--black), var(--gray));
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--dark-orange);
    box-shadow: 0 5px 30px var(--orange-glow);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--dark-orange);
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    border: 3px solid var(--dark-orange);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray), var(--black));
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
}

.cta-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--black);
}

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

.contact-item h3 {
    color: var(--dark-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--dark-orange);
}

/* Footer */
footer {
    background: var(--gray);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--dark-orange);
}

footer p {
    margin: 0.5rem 0;
    color: var(--light-gray);
}

footer a {
    color: var(--dark-orange);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .cta-buttons, .hero-buttons {
        flex-direction: column;
    }

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

    .btn-call {
        width: 100%;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

section {
    animation: fadeIn 0.5s;
}
