
/* --- 1. VARIABLES & GLOBAL RESET --- */
:root {
    --background-dark: #0D0D0D;
    --background-light: #1A1A1A;
    --text-primary: #F2F2F2;
    --text-secondary: #A6A6A6;
    --accent-primary: #00F2A9; /* Vibrant Green/Teal */
    --accent-gradient: linear-gradient(90deg, #DA00FF, #FF007A);
    --font-main: 'Inter', sans-serif;
    --border-color: #262626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- 2. HEADER & NAVIGATION --- */
#header {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.logo img {
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-media-header {
    display: flex;
    gap: 1rem;
}

.social-media-header a {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-media-header a:hover {
    color: var(--text-primary);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.reserve-btn {
    background-color: transparent;
    border: 2px solid #404040;
    color: var(--text-primary);
}

.reserve-btn:hover {
    background-color: #262626;
}

.takeout-btn {
    background-color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    color: #0D0D0D;
}

.takeout-btn:hover {
    background-color: #00d998;
    border-color: #00d998;
}

.hamburger { display: none; }


/* --- 3. HERO SECTION --- */
#hero {
    padding-top: 10rem;
    padding-bottom: 8rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    max-width: 85%;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background-color: var(--accent-primary);
    color: var(--background-dark);
    border-color: var(--accent-primary);
}
.cta-button.primary:hover {
    background-color: #00d998;
    border-color: #00d998;
}

.cta-button.secondary {
    background-color: transparent;
    border-color: #404040;
    color: var(--text-primary);
}
.cta-button.secondary:hover {
    background-color: #262626;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    transform: rotate(3deg);
}

.image-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.image-grid img:nth-child(1) {
    grid-column: 1 / 3;
    height: 250px;
}

/* --- 4. GENERAL SECTION STYLING --- */
#menu, #about, #gallery, #contact {
    border-top: 1px solid var(--border-color);
}

#about p {
    max-width: 70ch;
    margin: 0 auto;
    text-align: center;
}

/* --- 5. MENU ACCORDION --- */
.menu-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.accordion-item {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
}
.accordion-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}
.accordion-header i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.5rem;
}
.menu-category h4 {
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.menu-item:last-child {
    border-bottom: none;
}
.menu-item .price {
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
    margin-left: 2rem;
}
.menu-item .item-details {
    margin-right: 1rem;
}
.menu-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.menu-item p {
    font-size: 0.9rem;
}

/* --- 6. GALLERY SLIDESHOW --- */
.slideshow-container {
    max-width: 900px;
    position: relative;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
}
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
}
.slide img {
    width: 100%;
    display: block;
}
.slide-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13, 13, 13, 0.7);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}
.slide-arrow:hover {
    background-color: rgba(13, 13, 13, 1);
}
.prev { left: 0; border-radius: 0 8px 8px 0; }
.next { right: 0; border-radius: 8px 0 0 8px; }
.slide-dots {
    text-align: center;
    padding: 1rem 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
}
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: white;
}

/* --- 7. CONTACT & RESERVATION --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-info p {
    margin-bottom: 1.5rem;
}
.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.map-container iframe {
    filter: invert(90%) hue-rotate(180deg);
}
.contact-form {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-form input, .contact-form textarea {
    background-color: #262626;
    border: 1px solid #404040;
    color: var(--text-primary);
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
}
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* --- 8. FOOTER --- */
#footer {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

/* ========================================================================= */
/* --- 9. 🎨 FINAL RESPONSIVE DESIGN FOR MOBILE 🎨 --- */
/* ========================================================================= */
@media (max-width: 1024px) {
    .nav-links { gap: 1.5rem; }
    .header-right { gap: 1rem; }
    .hero-content { gap: 2rem; }
    .hero-text h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    body.mobile-menu-open {
        overflow: hidden;
    }
    .nav-links, .header-right {
        display: none;
    }
    .nav-links.active, .header-right.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px; /* Height of header */
        left: 0;
        width: 100%;
        background: var(--background-dark);
        padding: 2rem;
        gap: 1.5rem;
        align-items: center;
    }
    .header-right.active {
        top: 250px; /* Position below nav links */
        padding-top: 0;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--text-primary);
        transition: all 0.3s ease-in-out;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
     .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 { font-size: 3rem; }
    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-images {
        display: none;
    }

    h2 { font-size: 2.5rem; }
    .container { padding: 4rem 1rem; }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 1.5rem;
    }
}
