:root {
    --primary-color: #8B4513;
    --secondary-color: #FFA500;
    --text-color: #333;
    --white: #fff
}

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

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    z-index: 1000
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px
}

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

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform .3s ease
}

.logo-img:hover {
    transform: scale(1.05)
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color .3s
}

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

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 60px
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background .3s
}

.cta-button:hover {
    background: var(--primary-color)
}

.menu-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden
}

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

.menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    list-style: none;
    margin: 0 auto;
    max-width: 1200px
}

.menu-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 20px);
    min-width: 280px;
    max-width: 350px
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.menu-item-text {
    flex: 1 1 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.menu-item h3 {
    margin: 0 0 .5rem 0
}

.menu-item-text p {
    font-family: 'Lora', serif;
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 10px
}

.price {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: auto
}

.order-item-button {
    margin-top: 15px;
    width: 100%;
    padding: 12px 0;
    font-size: 1em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color .3s ease;
    color: #fff;
    font-weight: 700;
    text-decoration: none
}

.order-item-button:hover {
    background-color: #803300
}

.about-section {
    padding: 5rem 5%;
    background-color: #fff
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.about-content h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem
}

.about-content p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.feature {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform .3s
}

.feature:hover {
    transform: translateY(-5px)
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .3s ease
}

.feature-image:hover {
    transform: scale(1.03)
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--text-color)
}

.gallery-section {
    padding: 5rem 5%;
    background-color: #f9f9f9
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .3s
}

.gallery-grid img:hover {
    transform: scale(1.05)
}

.contact-section {
    padding: 5rem 5%;
    background-color: #fff
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color)
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: .3rem
}

.info-item h3 {
    margin: 0 0 .5rem 0;
    color: var(--text-color);
    font-size: 1.1rem
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.5
}

.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color)
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem
}

.contact-form textarea {
    height: 150px;
    resize: vertical
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color)
}

@media (max-width:1024px) {
    .contact-container {
        grid-template-columns: 1fr 1fr
    }

    .contact-map {
        grid-column: span 2
    }
}

@media (max-width:768px) {
    .contact-container {
        grid-template-columns: 1fr
    }

    .contact-map {
        grid-column: span 1;
        height: 300px
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem
    }

    .feature-image {
        height: 150px
    }
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 5%;
    text-align: center
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto
}

.social-links {
    margin-bottom: 1rem
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color .3s
}

.social-links a:hover {
    color: var(--secondary-color)
}

.testimonials-section {
    padding: 5rem 5%;
    background-color: #fff
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color)
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.testimonial {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    transition: transform .3s
}

.testimonial:hover {
    transform: translateY(-5px)
}

.rating {
    color: #ffc107;
    margin-bottom: 1rem
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem
}

.customer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover
}

.customer-info h4 {
    color: var(--text-color);
    margin-bottom: .2rem
}

.customer-info p {
    color: #666;
    font-size: .9rem
}

.more-section {
    padding: 5rem 5%;
    background-color: #f9f9f9
}

.more-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color)
}

.more-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.more-option {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    transition: transform .3s
}

.more-option:hover {
    transform: translateY(-5px)
}

.more-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem
}

.more-option h3 {
    margin-bottom: 1rem;
    color: var(--text-color)
}

.more-option p {
    color: #666;
    margin-bottom: 1.5rem
}

.more-button {
    display: inline-block;
    padding: .8rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color .3s
}

.more-button:hover {
    background-color: var(--secondary-color)
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    animation: fadeIn .3s ease-in-out
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn .3s ease-in-out
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.close-button {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color .3s
}

.close-button:hover {
    color: var(--primary-color)
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform .3s, background-color .3s
}

.delivery-option:hover {
    transform: translateX(10px);
    background-color: #f0f0f0
}

.delivery-option img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    object-fit: contain
}

.delivery-option span {
    font-weight: 500
}

@media (max-width:768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem
    }

    .nav-links {
        margin-top: 1rem
    }

    .nav-links a {
        margin: 0 1rem
    }

    .hero-content h1 {
        font-size: 2.5rem
    }

    .hero-content p {
        font-size: 1.2rem
    }

    .menu-list {
        grid-template-columns: 1fr
    }

    .menu-item {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        width: calc(50% - 25px)
    }

    .menu-item img {
        width: 100%;
        height: 150px
    }

    .testimonials-container,
    .more-container {
        grid-template-columns: 1fr
    }

    .modal-content {
        margin: 30% auto;
        width: 95%
    }

    .contact-map {
        grid-column: span 1;
        height: 300px
    }

    .logo-img {
        height: 60px
    }
}

@media (max-width:480px) {
    .logo-img {
        height: 50px
    }
}

.booking-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
    min-height: 100vh
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color)
}

.booking-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem
}

.booking-form {
    display: grid;
    gap: 1.5rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.form-group label {
    font-weight: 500;
    color: var(--text-color)
}

.form-group input,
.form-group textarea {
    padding: .8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color .3s
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color)
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.submit-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 1rem
}

.submit-button:hover {
    background-color: var(--secondary-color)
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: .8
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: #d4edda;
    color: #155724;
    border-radius: 5px;
    margin-top: 2rem
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #28a745
}

@media (max-width:768px) {
    .booking-container {
        padding: 2rem
    }

    .booking-form {
        gap: 1rem
    }
}

.navbar.navbar-scrolled {
    background-color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transition: background-color .3s ease, box-shadow .3s ease
}

.dish-label.veg {
    background: #4caf50;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .8em
}

.dish-label.nonveg {
    background: #e53935;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .8em
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain
}

.ratings-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center
}

.ratings-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px
}

.ratings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.rating-platform {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform .3s ease
}

.rating-platform:hover {
    transform: translateY(-10px)
}

.platform-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.rating-platform h3 {
    font-size: 1.8em;
    color: #555;
    margin-bottom: 10px
}

.rating-platform .stars {
    color: #ffc107;
    font-size: 1.5em;
    margin-bottom: 10px
}

.rating-platform .stars i {
    margin: 0 2px
}

.rating-platform .stars span {
    color: #333;
    font-size: .9em;
    font-weight: 700;
    margin-left: 5px
}

.rating-platform p {
    color: #777;
    font-size: .9em;
    margin-bottom: 20px
}

.platform-link {
    display: inline-block;
    background-color: #a04000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color .3s ease
}

.platform-link:hover {
    background-color: #803300
}

@media (max-width:768px) {
    .ratings-container {
        flex-direction: column;
        align-items: center
    }

    .rating-platform {
        width: 80%;
        max-width: 350px
    }
}

@media (max-width:480px) {
    .ratings-section h2 {
        font-size: 2em
    }

    .rating-platform {
        width: 90%
    }
}