:root {
    --primary: #e41e26; /* Vibrant Red */
    --primary-glow: rgba(228, 30, 38, 0.4);
    --secondary: #fdfdfd; /* White background */
    --accent: #222222; /* Dark text */
    --text-muted: #666;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.2);
    --white: #ffffff;
    --black: #000000;
    --red-gradient: linear-gradient(135deg, #e41e26 0%, #ff4d4d 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--secondary);
    color: var(--accent);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent !important;
}

nav.scrolled {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav.scrolled .nav-links a {
    color: var(--accent);
}

nav.scrolled .logo img {
    filter: invert(1); /* If logo is white, make it dark */
}

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    z-index: 1100; /* Ensure it stays above the menu overlay */
    transition: var(--transition);
}

nav.scrolled .menu-toggle {
    color: var(--accent);
}

.menu-toggle.active {
    color: var(--accent) !important; /* Force dark color on white menu background */
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    color: #ffffff !important;
}

nav.scrolled .nav-links a {
    color: #222222 !important;
}

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

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

.btn-order {
    background-color: #e41e26 !important;
    color: #ffffff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-order:hover {
    background-color: #222222 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background: #000;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/herobg.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    max-width: 900px;
    color: #ffffff !important;
}

.hero h1 span.highlight {
    color: #e41e26 !important;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    color: #ffffff !important;
    max-width: 650px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--white);
    opacity: 0.6;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-primary {
    background-color: #e41e26 !important;
    color: #ffffff !important;
    padding: 1.2rem 2.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #ffffff !important;
    color: #e41e26 !important;
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-glass i {
    width: 24px;
    height: 24px;
}

.btn-glass:hover {
    background: #ffffff !important;
    color: #e41e26 !important;
    transform: translateY(-3px);
}

.hero-socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    color: var(--accent);
    opacity: 0.6;
    transition: var(--transition);
}

.footer-socials a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-3px);
}


/* --- Menu Section --- */
.section {
    padding: 10rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 6rem;
}

.section-head span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.section-head h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.section-head .underline {
    width: 60px;
    height: 4px;
    background: var(--red-gradient);
    margin: 0 auto;
}

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

.menu-item {
    background: #fdfdfd;
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(228, 30, 38, 0.1);
}

.menu-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent);
}

.menu-item .price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary);
}

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

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 1rem 3rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.gallery-actions {
    display: none; /* Hidden on desktop */
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem 0 3rem 0;
}

.review-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}


.review-card .stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 4px;
}

.review-card .stars i {
    width: 20px;
    height: 20px;
    fill: #ffc107;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.review-card .author {
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}


.review-card .author::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.reviews-actions {
    display: none; /* Hidden on desktop */
}

/* --- About Section --- */
.about-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-text {
    flex: 1;
}

.about-text span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary);
}

.stat p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin: 0;
}

.about-image {
    flex: 1;
}

.image-stack {
    position: relative;
    padding: 2rem;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.img-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--red-gradient);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.1;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

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

/* --- Footer --- */
footer {
    padding: 5rem 0 2rem;
    background: #f8f8f8;
    color: var(--accent);
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: invert(1);
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-socials a {
    color: var(--accent);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--accent);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    background-color: #e41e26 !important;
    color: #ffffff !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(228, 30, 38, 0.2);
}

.social-links a:hover {
    background-color: #222222 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.social-links i {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    gap: 2rem;
}

.copyright {
    text-align: left;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partner-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.partner-item img {
    height: 30px; /* Smaller for footer-bottom */
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.partner-item img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        gap: 4rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
    }

    .hero-bg {
        background: url('images/mobilehero.png');
        background-size: cover;
        background-position: center bottom;
    }

    .hero .container {
        height: 100%;
        padding: 11rem 1.5rem 3rem 1.5rem;
    }

    .hero-content {
        height: 100%;
        justify-content: space-between;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 0;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 100%;
        margin-top: auto; /* Push towards bottom */
    }

    .hero-btns {
        margin-bottom: 0;
        width: 100%;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
    }

    .btn-glass {
        width: 50px;
        height: 50px;
        border: 2px solid #e41e26 !important;
        color: #e41e26 !important;
    }

    .hero-socials {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Full screen for more premium feel */
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--accent) !important;
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered entrance for links */
    .nav-links.active li:nth-child(1) a { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(2) a { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(3) a { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(4) a { transition-delay: 0.5s; }

    nav .btn-order {
        display: none; /* Only hide the one in the nav on mobile */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Side by side on mobile */
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .copyright {
        text-align: center;
    }

    .footer-partners {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .partner-item {
        flex-direction: row; /* Label and logo in one line */
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .partner-item img {
        height: 25px;
    }

    .section {
        padding: 5rem 0;
    }

    .review-hidden {
        display: none;
    }

    .review-hidden.show {
        display: flex;
        animation: fadeIn 0.5s ease forwards;
    }

    .reviews-actions {
        display: block;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
    }

    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .gallery-hidden {
        display: none;
    }

    .gallery-hidden.show {
        display: block;
        animation: fadeIn 0.5s ease forwards;
    }

    .gallery-actions {
        display: block;
    }
}

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

/* --- Floating Button --- */
.btn-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #e41e26;
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(228, 30, 38, 0.4);
    z-index: 2000;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-float:hover {
    background: #222;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .btn-float {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
