/* Black text for hero intro-desc */
.intro-desc {
    color: #111;
}
/* White background for Menu-section */
.Menu-section {
    background: rgba(255,255,255,0.80);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(181,101,29,0.08);
    padding: 32px 0 32px 0;
    margin: 0 auto 32px auto;
    width: 100%;
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: linear-gradient(120deg, #7b1818 0%, #b71c1c 60%, #ff6f61 100%) fixed !important;
    position: relative;
    box-sizing: border-box;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background: url('https://www.transparenttextures.com/patterns/food.png');
    opacity: 0.10;
    pointer-events: none;
}

main {
    width: 100%;
    margin: 40px 0 0 0;
    padding: 24px 0;
    background: rgba(255,255,255,0.80);
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.cta-buttons .order-btn {
    min-height: 48px;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.order-btn.secondary {
    background: #fffbe7;
    color: #b5651d;
    border: 2px solid #eab676;
    box-shadow: none;
}
.order-btn.secondary:hover {
    background: #ffe5b4;
    color: #a0521d;
}

/* Story Section */
.story-section {
    margin: 36px 0 24px 0;
    text-align: center;
}
.story-text {
    font-size: 1.13rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Menu Highlights */
.menu-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 32px;
}
.menu-highlights > div {
    background: #fffbe7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(181,101,29,0.07);
    padding: 18px 22px;
    min-width: 180px;
    max-width: 220px;
}
.menu-highlights h3 {
    color: #b5651d;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.menu-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-highlights li {
    margin-bottom: 6px;
    color: #333;
    font-size: 1rem;
}

@media (max-width: 700px) {
  .menu-highlights {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .menu-highlights > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/* Combos & Thirst Quenchers */
.combos-section {
    background: #fafbfc;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(181,101,29,0.07);
    padding: 18px 22px;
    margin: 0 auto 32px auto;
    max-width: 700px;
}
.combos-section h3 {
    color: #b5651d;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.combos-section ul {
    margin: 0 0 0 18px;
}
.combos-section li {
    margin-bottom: 6px;
    color: #333;
    font-size: 1rem;
}

/* Locations Section */
.locations-section {
    margin: 36px 0 24px 0;
    text-align: center;
}
.order-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 12px;
    list-style: none;
    padding: 0;
}
.order-links li {
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    margin: 36px 0 24px 0;
    text-align: center;
}
.reviews-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 18px;
}
.reviews-list blockquote {
    background: #fffbe7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(181,101,29,0.07);
    padding: 18px 22px;
    min-width: 220px;
    max-width: 320px;
    font-size: 1.05rem;
    color: #444;
    font-style: italic;
    margin: 0;
}
.reviews-list blockquote span {
    display: block;
    margin-top: 8px;
    color: #b5651d;
    font-size: 0.98rem;
    font-style: normal;
}

/* Gallery Section */
.gallery-section {
    margin: 36px 0 24px 0;
    text-align: center;
}
.gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 18px;
}
.gallery-img-placeholder {
    width: 180px;
    height: 120px;
    background: #ffe5b4;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(181,101,29,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5651d;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Contact Us Section */
.contactus-section {
    margin: 36px 0 24px 0;
    text-align: center;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 340px;
    margin: 0 auto 18px auto;
}
.contact-form input,
.contact-form textarea {
    padding: 8px 10px;
    border: 1px solid #eab676;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}
.contact-form textarea {
    min-height: 70px;
}
.contact-form button {
    align-self: center;
}
.contact-info-block {
    font-size: 1.08rem;
    color: #222;
    margin-top: 8px;
}
.contact-info-block a {
    color: #b5651d;
    text-decoration: none;
    font-weight: 500;
    margin-right: 8px;
    transition: color 0.2s;
}
.contact-info-block a:hover {
    color: #a0521d;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #fffbe7;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -2px 12px rgba(181,101,29,0.07);
    margin: 40px auto 0 auto;
    max-width: 900px;
    padding: 18px 8px 10px 8px;
    text-align: center;
}
.footer-social {
    margin-bottom: 8px;
}
.footer-social a img {
    width: 28px;
    height: 28px;
    margin: 0 8px;
    filter: grayscale(0.2) brightness(0.9);
    transition: filter 0.2s, transform 0.2s;
}
.footer-social a:hover img {
    filter: none;
    transform: scale(1.13) rotate(-6deg);
}
.footer-copy {
    color: #b5651d;
    font-size: 1rem;
}
/* Site Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px 0 32px;
    width: 100%;
    box-sizing: border-box;
    min-height: 64px;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 12px rgba(181,101,29,0.07);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.2s, box-shadow 0.2s;
}
body {
    padding-top: 76px;
}
.site-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #b5651d;
    font-weight: 700;
    letter-spacing: 1px;
}
.header-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #b5651d;
    box-shadow: 0 1px 4px rgba(181,101,29,0.10);
}
/* Remove social-links from header */

/* Order Now button in header */
.order-now-header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #b71c1c 60%, #ff6f61 100%);
    color: #fff;
    font-weight: 700;
    padding: 10px 28px 10px 18px;
    border-radius: 24px;
    font-size: 1.13rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(183,28,28,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-left: 18px;
    border: none;
    animation: shake 1.2s cubic-bezier(.36,.07,.19,.97) infinite, highlightPulse 2.5s infinite;
    border: 2.5px solid #ff6f61;
    box-shadow: 0 0 0 0 rgba(255,111,97,0.5);
}
.order-now-header-btn:hover {
    background: linear-gradient(90deg, #a0521d 60%, #eab676 100%);
    box-shadow: 0 4px 16px rgba(183,28,28,0.13);
    transform: translateY(-2px) scale(1.04);
    animation: none;
}
.order-now-header-btn .delivery-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 2px;
    filter: drop-shadow(0 2px 6px rgba(183,28,28,0.10));
}
@media (max-width: 700px) {
    .site-header {
        flex-direction: column;
        gap: 10px;
        padding: 8px 4px 0 4px;
    }
    .site-title {
        font-size: 1.1rem;
    }
    .social-links a img {
        width: 22px;
        height: 22px;
    }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background: linear-gradient(120deg, #ffe5b4 0%, #fffbe7 100%);
    background-image: url('images/JustParathas.jpg'), linear-gradient(120deg, #ffe5b4 0%, #fffbe7 100%);
    background-size: cover, 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 240px 0 180px 0;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 24px rgba(181,101,29,0.07);
    margin-bottom: 32px;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.60);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    padding: 1px 10px 12px 16px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
@media (max-width: 600px) {
  .hero-content {
    max-width: 98vw;
    padding-left: 4vw;
    padding-right: 4vw;
    box-sizing: border-box;
  }
}
}
.hero-content h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.hero-content .hero-slogan {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.30);
}
/* Center align intro-text */
.hero-content .intro-text {
    font-size: 1.12rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 22px;
    text-align: center !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.hero-content h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 2.2rem;
    color: #b71c1c;
    text-shadow: 0 2px 8px rgba(255,255,255,0.18);
}
.hero-content .hero-slogan {
    font-size: 1.18rem;
    color: #a0521d;
    margin-bottom: 16px;
    text-align: center;
}
.hero-content .intro-text {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 22px;
    text-align: center !important;
}
.cta-buttons {
    margin-top: 18px;
    margin-bottom: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #b5651d;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(181,101,29,0.13);
}
.hero-banner h1 {
    color: #b5651d;
    font-size: 2.1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.hero-slogan {
    color: #a0521d;
    font-size: 1.15rem;
    margin-bottom: 18px;
}
.order-btn {
    display: inline-block;
    background: linear-gradient(90deg, #b5651d 60%, #eab676 100%);
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(181,101,29,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.order-btn:hover {
    background: linear-gradient(90deg, #a0521d 60%, #eab676 100%);
    box-shadow: 0 4px 16px rgba(181,101,29,0.13);
    transform: translateY(-2px) scale(1.04);
}
.hero-bg-pattern {
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    background: url('https://www.transparenttextures.com/patterns/food.png');
    opacity: 0.07;
    z-index: 1;
}

/* Section Title Decoration */
.section-title {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}
.section-title span {
    background: #fffbe7;
    padding: 0 18px;
    position: relative;
    z-index: 2;
    color: #b5651d;
    font-size: 1.4rem;
    font-weight: 600;
}
.section-title:before {
    content: '';
    display: block;
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, #eab676 0%, #b5651d 100%);
    z-index: 1;
}
/* Contact Section Styling */
.contact-section {
    background: #fffbe7;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(181,101,29,0.07);
    margin: 40px auto 0 auto;
    max-width: 900px;
    padding: 32px 18px 24px 18px;
}
.contact-section h2 {
    color: #b5651d;
    margin-bottom: 18px;
    font-size: 1.5rem;
    text-align: center;
}
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
}
.contact-info {
    font-size: 1.08rem;
    color: #222;
    min-width: 220px;
    max-width: 340px;
    line-height: 1.7;
}
.contact-link {
    color: #b5651d;
    text-decoration: none;
    font-weight: 500;
    margin-right: 8px;
    transition: color 0.2s;
}
.contact-link:hover {
    color: #a0521d;
    text-decoration: underline;
}
.hours {
    display: block;
    margin-top: 8px;
    color: #a0521d;
    font-size: 0.98rem;
}
.contact-map iframe {
    width: 100%;
    max-width: 320px;
    height: 200px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(181,101,29,0.10);
}
@media (max-width: 700px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .contact-section {
        padding: 18px 4px 14px 4px;
    }
}
.menu-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

/* --- Carousel Styles for Menu Section --- */
.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 32px auto;
    max-width: 100vw;
    position: relative;
}
.carousel-arrow {
    background: rgba(183,28,28,0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    margin: 0 8px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.carousel-arrow:hover {
    background: #b71c1c;
    transform: scale(1.08);
}
.carousel-track {
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 12px 0;
    width: 100%;
    max-width: 1200px;
    scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.menu-card {
    background: #fffbe7;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(181,101,29,0.10);
    min-width: 270px;
    max-width: 270px;
    flex: 0 0 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 0 18px 0;
    margin-bottom: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.menu-card:hover {
    box-shadow: 0 6px 24px rgba(183,28,28,0.13);
    transform: translateY(-4px) scale(1.03);
}
.menu-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 2px 8px rgba(181,101,29,0.07);
}
.menu-card-content {
    width: 100%;
    padding: 16px 18px 0 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.menu-card-content form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.menu-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #b71c1c;
    margin-bottom: 8px;
    text-align: left;
    text-transform: uppercase;
}
.menu-card-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.old-price {
    color: #b71c1c;
    text-decoration: line-through;
    font-size: 1.05rem;
    opacity: 0.7;
}
.sale-price {
    color: #388e3c;
    font-size: 1.13rem;
    font-weight: 700;
}
.sale-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #b71c1c;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 6px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(183,28,28,0.10);
}
.add-to-cart-btn {
    margin-top: 6px;
    width: auto;
    min-width: 120px;
    display: block;
}
@media (max-width: 900px) {
    .carousel-track {
        max-width: 98vw;
    }
    .menu-card, .carousel-track > .menu-card {
        min-width: 220px;
        max-width: 220px;
        flex: 0 0 220px;
    }
    .menu-card-img {
        height: 140px;
    }
}
@media (max-width: 600px) {
    .carousel-wrapper {
        flex-direction: column;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    .carousel-track {
        gap: 12px;
    }
    .menu-card-img {
        height: 90px;
    }
}
@media (max-width: 900px) {
    .menu-list {
        gap: 18px;
    }
    .product {
        padding: 14px 10px;
        min-width: 220px;
    }
    .hero-img {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 600px) {
    main {
        padding: 8px;
    }
    .menu-list {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .product {
        width: 95%;
        min-width: unset;
        padding: 10px 4px;
    }
    .hero-img {
        width: 100px;
        height: 70px;
    }
    h1 {
        font-size: 1.3rem;
    }
    h2 {
        font-size: 1.1rem;
    }
}
.hero-images {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 24px 0 32px 0;
}
.hero-img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(181,101,29,0.13);
    border: 2px solid #f7e7d3;
    background: #fffbe7;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f4f6fa;
    color: #222;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 24px;
    background: rgba(255,255,255,0.80);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

h1 {
    color: #b5651d;
    margin-bottom: 16px;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

nav {
    margin-bottom: 32px;
    text-align: right;
}
nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #b5651d;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #a0521d;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px 24px;
    margin-bottom: 18px;
    background: #fafbfc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s;
    max-width: 260px;
    width: 100%;
    box-sizing: border-box;
}
.product:hover {
    box-shadow: 0 4px 16px rgba(181,101,29,0.08);
}
.product h2 {
    margin: 0 0 6px 0;
    font-size: 1.3rem;
    color: #b5651d;
    text-align: center;
}
.product p {
    margin: 0 0 0 0;
    font-size: 1.1rem;
    text-align: center;
}
.product form {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.button {
    background: linear-gradient(90deg, #b5651d 60%, #eab676 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(181,101,29,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.button:hover {
    background: linear-gradient(90deg, #a0521d 60%, #eab676 100%);
    box-shadow: 0 4px 12px rgba(181,101,29,0.13);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}
.cart-table th, .cart-table td {
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    text-align: center;
}
.cart-table th {
    background: #f7e7d3;
    color: #b5651d;
    font-weight: 600;
}
.cart-table tr:nth-child(even) {
    background: #f9f6f2;
}
.cart-table tr:last-child th {
    background: #fffbe7;
    color: #a0521d;
}

/* Hide horizontal scrollbar for carousel-track (all browsers) */
.carousel-track {
    -ms-overflow-style: none !important; /* IE and Edge */
    scrollbar-width: none !important; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
    background: transparent !important;
}

@keyframes shake {
  0% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
  20%, 40%, 60%, 80% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}
@keyframes highlightPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,111,97,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(255,111,97,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,111,97,0); }
}

@media (max-width: 600px) {
  .menu-card-content {
    padding: 10px 6px 14px 6px;
  }
  .add-to-cart-form {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }
  .add-to-cart-btn {
    width: 100%;
    font-size: 1em;
    padding: 10px 0;
  }
  .qty-input {
    width: 36px !important;
    font-size: 1em;
  }
  .qty-btn {
    font-size: 1.1em;
    padding: 4px 10px;
  }
}
