:root {
    --background-color: rgba(0, 0, 0, 0.8);
    --text-color: #ffffff;
    }

* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #222;
    color: #fff;
}

a {
    text-decoration: none;
    color: #fff;
}

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

header {
    background-color: #111;
    padding: 10px 0;
}

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

.logo {
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #f39c12;
    transition: width 0.3s ease-in-out;
}

nav ul li a:hover::after {
    width: 100%;
}

.order-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.order-button:hover {
    background-color: #c0392b; /* Darker red on hover */
    cursor: pointer;
}

.hero {
    background-image: url('hero_photo.png'); /* Use the sample image as a placeholder */
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 4px 4px 8px #000;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
    text-shadow: 1px 1px 2px #000;
}

.book-table-button {
    display: inline-block;
    margin-top: 30px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.229);
}

.book-table-button:hover {
    background-color: #e67e22; /* Darker orange on hover */
    cursor: pointer;
}

.menu-preview {
    padding: 50px 0;
    text-align: center;
}

.menu-preview h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.menu-item {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    text-align: left;
}

.menu-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.menu-item p {
    font-size: 1em;
    color: #ccc;
}

.about-contact .container {
    display: flex;
    gap: 50px;
}

.about, .contact {
    flex: 1;
}
#about-contact {
    margin-left: 15px;
    margin-right: 15px;
}
.about h2, .contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about p, .contact p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ccc;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

footer p {
    font-size: 0.9em;
    color: #ccc;
}

.address-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.address-card {
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    color: #ccc;
    font-size: 1.1em;
}

.address-card:hover {
    background-color: #444; /* Slightly lighter background on hover */
    cursor: pointer;
}

.address-card p.phone-number {
    margin-top: 10px;
    font-size: 1em;
    color: #fff;
    display: flex;
    align-items: center;
}

.address-card p.phone-number img {
    width: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0;
    }
    header {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .navbar {
        padding: 2px 4px;
    }

    .container {
        padding: 0 10px;
    }

    header nav ul {
        flex-direction: column;
        text-align: center;
        margin-top: 10px;
    }

    header nav ul li {
        margin: 5px 0;
    }

    .order-button {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2em;
    }

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

    .menu-items {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        max-width: 90%;
    }

    .about-contact .container {
        flex-direction: column;
        gap: 30px;
    }

    .about, .contact {
        flex: none;
    }
}

/* Styles for the Menu Page */
.menu-page {
    padding: 50px 0;
    text-align: center;
}

.menu-page h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #fff;
}

.full-menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.full-menu-items .menu-item {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.full-menu-items .menu-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.full-menu-items .menu-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #f39c12; /* Yellow color for title */
}

.full-menu-items .menu-item p {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 10px;
}

.full-menu-items .menu-item .price {
    font-size: 1.2em;
    color: #e74c3c; /* Red color for price */
    font-weight: bold;
    margin-top: 15px;
}

.social-icon {
    /* display: block; */
    margin-right: 15px;
    margin-bottom: 15px;
}
.menu-title {
    margin-top: 60px;
    border-bottom: 2px solid #555;
    padding-bottom: 60px;
}
.first-menu-heading {
    margin-top: 20px;
    margin-bottom: 30px;
}
.second-menu-heading {
    margin-top: 70px;
    padding-top: 60px;
    border-top: 2px #555 dotted;
    margin-bottom: 30px;
}
.third-menu-heading {
    margin-top: 70px;
    padding-top: 60px;
    border-top: 2px #555 dotted;
    margin-bottom: 35px;
}
.contact-from-menu {
    background-color: #111;
    border-top: 2px #555 solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 30px;
}
.footer-menu {
    margin-top: 0;
}
.learn-more {
    display: inline-block;
    position: absolute;
    right: 20px;
    margin-top: 20px;
}
.contact-from-index {
    margin-top: 70px;
    padding-top: 30px;
    border-top: #555 2px dotted;
}


.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

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

@media (max-width: 1024px) {

    .hamburger {
        display: block;
        margin-left: auto;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--background-color);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 5rem 2rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

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

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
        padding-top: 2rem;
        height: 100%;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.2rem;
    }

    .nav-container.active .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }

    /* Hide #main-order on smaller screens */
    #main-order {
        display: none;
    }
}

@media (max-width: 480px) {
    header, .navbar, .nav-container {
        box-sizing: border-box;
    }
    .nav-container {
        width: 100%;
    }
    
    .navbar {
        padding: 2px 18px;
    }
    
    .hamburger {
        margin-left: auto;
        margin-right: 0;
    }
}

@media (min-width: 1025px) {
    .nav-container {
        box-sizing: content-box;
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 30px;
        padding: 0;
    }

    .nav-links li {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hamburger {
        display: none;
    }
    .second-menu-heading,
    .third-menu-heading,
    .contact-from-menu {
    box-sizing: content-box;
}
}