/* Colors */
:root {
    --primary-color: #d80000;
    --primary-color-light: #6b1610;
    --primary-color-dark: #000000;
    --text-dark: #000000;
    --text-light: #636161;
    --white: #ffffff;
    --max-width: 1200px;
}

/* Universal Fomratting */

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

body {
    font-family: 'Be Vietnam Pro';
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo a span {
    color: var(--text-dark);
}

img {
    display: flex;
    width: 100%;
}

a {
    text-decoration: none;
    transition: 0.3s linear;
}

ul {
    list-style-type: none;
}

/* NAVIGATION */
nav {
    position: fixed;
    isolation: isolate;
    width: 100%;
    z-index: 9;
}

.nav_header {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
}

.nav_logo a {
    display: flex;
    color: var(--white);
}

.nav_menu_btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav_links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 2rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--primary-color-light);
    transition: 0.5s;
    z-index: -1;
    transform: translateY(-100%);
}

.nav_links.open {
    transform: translateY(0);
}

.nav_links a {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
}

.nav_links a:hover {
    color: var(--text-dark);
}

.nav_btn {
    display: none;
}

.logo_nav_logo {
    display: flex;
    align-items: center;
}

.logo_nav_logo img {
    width: 40px;
    height: auto;
    display: block;
}

/* Navigation Responsiveness */
@media (width>768px) {
    nav {
        position: static;
        padding: 1.5rem;
        max-width: var(--max-width);
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .nav_header {
        flex: 1;
        padding: 0;
        background-color: transparent;
    }

    .nav_logo a {
        color: var(--primary-color);
    }

    .nav_menu_btn {
        display: none;
    }

    .nav_links {
        position: static;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        transform: none;
        margin-right: 40px;
    }

    .nav_links a {
        color: var(--text-dark);
    }

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

    .nav_btn {
        display: flex;
        flex: 1;
        justify-content: flex-end;
    }

    .nav_btn .btn {
        padding: 8px 10px;
        font-size: 1.5rem;
        border-radius: 100%;
    }

    .logo_nav_logo img {
        height: 100px;
        width: auto;
    }
}

/* HEADER */
.section_container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section_description {
    color: var(--text-light);
    line-height: 1.75rem;
    text-align: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    white-space: nowrap;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color-dark);
}

.btn a {
    color: var(--white);
}

.header_container {
    display: grid;
    gap: 2rem;
    overflow: hidden;
}

.header_image img {
    max-width: 600px;
    margin-inline: auto;
    border: 5px solid var(--primary-color-dark)
}

.header_content h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--text-dark);
    text-align: center;
}

.header_content h1 span {
    color: var(--primary-color);
}

.header_content .section_description {
    margin-bottom: 2rem;
}

.header_btn {
    text-align: center;
}

/* Header Responsiveness */
@media (width>768px) {
    .header_container {
        grid-template-columns: 2fr 3fr;
        align-items: center;
    }

    .header_content h1,
    .header_content .section_description,
    .header_btn {
        text-align: left;
    }

    .header_image {
        grid-area: 1/2/2/3;
    }
}

/* Special Dishes */
.section_header {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.special_container:is(.section_header, .section_description) {
    max-width: 600px;
    margin-inline: auto;
}

.special_grid {
    margin-top: 4rem;
    display: grid;
    gap: 1rem;
}

.special_card {
    padding: 1rem;
    text-align: center;
    border-radius: 2rem;
    transition: 0.3s linear;
}

.special_card:hover {
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.special_card img {
    max-width: 200px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
}

.special_card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.special_card p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.75rem;
}

.special_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.special_footer .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Special Grid Responsiveness */
@media (width>540px) {
    .special_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width>768px) {
    .special_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Explore Section */
.explore_container {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
    overflow: hidden;
}

.explore_image img {
    max-width: 400px;
    margin-inline: auto;
    filter: drop-shadow(0 0 50px rgba(252, 127, 8, 0.4));
}

.explore_content .section_description {
    margin-bottom: 2rem;
}

.explore_btn {
    text-align: center;
}

@media (width>768px) {
    .explore_container {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }

    .explore_content .section_header {
        max-width: 500px;
    }

    .explore_content:is(.section_header, .section_description),
    .explore_btn {
        text-align: left;
    }
}

/*Contact Page*/
.contact_layout {
    display: grid;
    gap: 3rem;
}

.contact_info {
    list-style: none;
    padding: 0;
    text-align: center;
}

.contact_info li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark)
}

.contact_info a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact_info a:hover {
    color: var(--primary-color-dark)
}

@media (width>768px) {
    .contact_layout {
        grid-template-columns: 1fr 1.5fr;
        align-items: start;
        gap: 4rem;
    }

    .contact_info {
        text-align: left;
    }
}

/* Interactive Map*/
.map_container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map_container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

@media (width>768px) {
    .map_container {
        margin-top: 0;
    }

    .map_container iframe {
        height: 450px;
    }
}

/* Menu */
.menu_category {
    margin-bottom: 3rem;
}

.menu_category h1 {
    text-align: center;
    align-items: center;
    padding-bottom: 1rem;
    font-size: 3rem;
}

.menu_category p {
    text-align: center;
    align-items: center;
    padding-bottom: 1rem;
    font-size: 14px;
    color: #5e5e5e;
}

.menu_grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.menu_item_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    border-bottom: 1px dotted var(--text-light);
    padding-bottom: 5px;
}

.menu_item_title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.menu_item_price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu_item_desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.size_note {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 4px;
}

.menu_nav_links {
    position: sticky;
    top: 68px;
    z-index: 0;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    background-color: var(--white);
    border-radius: 10px;
}

.menu_nav_links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.menu_nav_links a {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border: 1.5px solid var(--primary-color);
    border-radius: 20px;
    background-color: var(--white);
    transition: 0.3s ease;
}

.menu_nav_links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

@media (width > 768px) {
    .menu_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 4rem;
    }

    .menu_nav_links {
        top: 0;
        padding: 1rem 0;
    }

    .menu_nav_links a {
        font-size: 1rem;
        padding: 8px 25px;
    }
}

/* Menu Legend Styling */
.menu_legend {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.diet_badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.vegetarian {
    background-color: #e8f0fe;
    color: #137333;
    border: 1px solid #137333;
}

.vegan {
    background-color: #e8f0fe;
    color: #1967d2;
    border: 1px solid #1967d2;
}

.gluten {
    background-color: #f5f5f5;
    color: #F4C430;
    border: 1px solid #F4C430;
}

/* PDF Download Button Styling */
.download-btn {
    display: inline-block;
    background-color: #d32f2f;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-btn i {
    margin-right: 8px;
}

.download-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.download_section {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--primary-color-light), var(--primary-color-dark));
    color: var(--white);
    padding-top: 3rem;
}

.footer_container {
    display: grid;
    gap: 4rem 2rem;
}

.footer_logo {
    margin-bottom: 1rem;
}

.footer_col .section_description {
    text-align: left;
    color: var(--white);
}

.footer_col h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer_links {
    display: grid;
    gap: 0.75rem;
}

.footer_links li {
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--white);
}

.footer_links a {
    color: var(--white);
}

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

.footer_bar {
    padding: 3rem;
    font-size: 1.5rem;
    font-size: 0.8rem;
    color: var(#e0e0e0);
    text-align: center;
}

@media (width>540px) {
    .footer_container {
        grid-template-columns: 3fr 2fr;
    }
}

@media (width>768px) {
    .footer_container {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}