@font-face {
    font-family: 'AssassinNinja';
    src: url('assets/AssassinNinja.woff2') format('woff2');
}

:root {
    --primary-color: #C62828;
    --accent-color: #F5C242;
    --background-color: #FAFAFA;
    --card-color: #FFFFFF;
    --text-color: #1B1B1B;
    --secondary-text-color: #666;
    --border-color: #E5E5E5;
    --font-heading: 'AssassinNinja', 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-special: "GT America Expanded Bold", "GT America", "PP Neue Montreal", "Archivo Expanded", "Space Grotesk", "League Spartan", "Inter Tight", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.1rem 2rem;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-cluster {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap; 
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-hours {
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
}

.navbar-hours:hover {
    text-decoration: underline;
}


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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.phone-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: var(--font-special);
    font-weight: 700;
}

.phone-button:hover {
    background-color: #A52222;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1001;
}

.sidebar.open {
    right: 0;
}

.sidebar-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.close-sidebar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    text-decoration: none;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background-image: url('assets/herofood.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    animation: fade-up 1s ease-out;
    padding: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.1rem;
}

.hero-buttons .btn {
    margin: 0 1rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-special);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #A52222;
    border-color: #A52222;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--text-color);
}

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

.menu-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-right: 1.5rem;
}

.menu-card h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.menu-card p {
    color: var(--secondary-text-color);
    flex-grow: 1;
    font-size: 0.9rem;
}

.menu-card .price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    margin-top: 1rem;
}

.menu-card-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #fff;
}

.about-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-section .btn-secondary {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-body);
}

.about-section .btn-secondary:hover {
    background: none;
    color: var(--text-color);
    text-decoration: underline;
}


/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
}

.close-modal {
    font-size: 2rem;
    text-decoration: none;
    color: var(--text-color);
}

.modal-body p {
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 300px;
    }
}
