@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900|Rancho');

:root {
    --ink: #1a110e;
    --cream: #fff8ef;
    --red: #c7371e;
    --gold: #f1b638
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--cream);
    color: #3d2c25;
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden
}

.site-header {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
    height: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: background .25s ease, box-shadow .25s ease;
    z-index: 100
}

.site-header.is-scrolled {
    background: rgba(21, 16, 13, .99);
    box-shadow: 0 5px 22px rgba(0, 0, 0, .35)
}

.navbar {
    padding: 8px 0
}

.navbar-brand img {
    height: 80px;
    width: auto
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 16px 13px !important;
    text-transform: uppercase
}

.navbar-nav .nav-link:hover,
.navbar-nav .order-link {
    color: #c7371e !important
}

.mirchi-hero,
.hero-slides,
.hero-slide {
    height: 720px
}

.mirchi-hero {
    background: #1b100b;
    position: relative
}

.hero-slide {
    background-position: center;
    background-size: cover;
    position: relative
}

.hero-slide:before {
    background: linear-gradient(90deg, rgba(14, 8, 5, .82), rgba(14, 8, 5, .2));
    content: "";
    inset: 0;
    position: absolute
}

.hero-slide-one {
    background-image: url("../img/slider-1.jpg")
}

.hero-slide-two {
    background-image: url("../img/slider2-bg1.jpg")
}

.hero-content {
    color: #fff;
    padding-top: 245px;
    position: relative
}

.eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase
}

.hero-content h1,
.hero-content h2 {
    font-family: Rancho, cursive;
    font-size: 68px;
    font-weight: 400;
    line-height: 1.05;
    margin: 16px 0
}

.hero-content h1 span,
.hero-content h2 span {
    color: var(--gold)
}

.hero-copy {
    font-size: 17px;
    margin-bottom: 28px;
    max-width: 480px
}

.mirchi-btn {
    background: var(--red);
    border: 0;
    color: #fff !important;
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 13px 21px;
    text-transform: uppercase
}

.mirchi-btn:hover {
    background: var(--gold);
    color: var(--ink) !important
}

.mirchi-btn i {
    margin-left: 10px
}

.mirchi-section {
    padding: 90px 0;
    scroll-margin-top: 78px
}

.section-heading {
    margin: 0 auto 45px;
    max-width: 720px;
    text-align: center
}

.section-heading h2 {
    color: var(--red);
    font-family: Rancho, cursive;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    margin: 5px 0 15px
}

.section-heading>p:last-child {
    margin: 0
}

.about-section,
.gallery-section,
.contact-section {
    background: #fff
}

.lead {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.45
}

.idea-card {
    border-left: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    margin-top: 26px;
    padding: 14px 20px
}

.idea-card strong {
    color: var(--red);
    font-size: 14px;
    text-transform: uppercase
}

.idea-card span {
    font-family: Rancho, cursive;
    font-size: 28px
}

.about-image {
    display: block;
    margin: auto;
    max-height: 330px;
    object-fit: cover;
    width: 100%
}

.menu-section,
.order-section {
    background: #f4e6d5
}

.highlight-card {
    background: #fff;
    border-top: 4px solid var(--red);
    height: 100%;
    padding: 30px;
    text-align: center;
    transition: box-shadow .3s ease, transform .3s ease
}

.highlight-card:hover {
    box-shadow: 0 14px 28px rgba(61, 44, 37, .12);
    transform: translateY(-5px)
}

.highlight-card i {
    color: var(--red);
    font-size: 28px
}

.highlight-card h3 {
    color: var(--ink);
    font-size: 18px;
    margin: 16px 0 8px
}

.menu-cta {
    text-align: center;
    margin-top: 40px
}

.menu-cta p {
    font-weight: 600;
    margin-bottom: 14px
}

.gallery-grid {
    display: grid;
    gap: 18px;
    grid-auto-rows: 220px;
    grid-template-columns: 1.15fr .85fr 1fr
}

.gallery-grid figure {
    background: var(--ink);
    border-radius: 4px;
    margin: 0;
    overflow: hidden;
    position: relative
}

.gallery-grid figure:after {
    background: linear-gradient(180deg, transparent 35%, rgba(15, 8, 5, .88));
    content: "";
    inset: 0;
    position: absolute
}

.gallery-grid img {
    height: 100%;
    object-fit: cover;
    opacity: .9;
    transition: transform .55s ease, opacity .55s ease;
    width: 100%
}

.gallery-grid figure:hover img {
    opacity: 1;
    transform: scale(1.08)
}

.gallery-grid figure:nth-child(1) {
    grid-row: span 2
}

.gallery-grid figure:nth-child(4) {
    grid-column: 2
}

.gallery-grid figure:nth-child(5) {
    grid-column: 3;
    grid-row: span 2
}

.gallery-grid figure:nth-child(6) {
    grid-column: 1 / span 2
}

.gallery-grid figcaption {
    bottom: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 18px;
    position: absolute;
    text-transform: uppercase;
    z-index: 1
}

.gallery-grid figcaption span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 4px
}

.gallery-grid figcaption strong {
    font-size: 15px;
    letter-spacing: .5px
}

.reviews-section {
    background: var(--ink);
    color: #fff
}

.reviews-section .section-heading h2 {
    color: var(--gold)
}

.reviews-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto 38px;
    text-align: left
}

.review-card {
    background: #281914;
    border: 1px solid rgba(241, 182, 56, .16);
    border-radius: 3px;
    padding: 28px;
    transition: border-color .3s ease, transform .3s ease
}

.review-card:hover {
    border-color: rgba(241, 182, 56, .6);
    transform: translateY(-5px)
}

.review-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 3px
}

.review-card blockquote {
    color: #f8eee5;
    font-family: Rancho, cursive;
    font-size: 23px;
    line-height: 1.35;
    margin: 18px 0 25px
}

.review-author {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    gap: 11px;
    padding-top: 16px
}

.review-avatar {
    align-items: center;
    background: var(--red);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 11px;
    font-weight: 800;
    height: 36px;
    justify-content: center;
    width: 36px
}

.review-author strong,
.review-author small {
    display: block
}

.review-author strong {
    font-size: 12px
}

.review-author small {
    color: #bda99a;
    font-size: 10px;
    margin-top: 2px
}

.review-actions {
    display: flex;
    gap: 16px;
    justify-content: center
}

.review-btn {
    border: 1px solid rgba(241, 182, 56, .6);
    color: #fff !important;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 190px;
    padding: 14px 20px;
    text-transform: uppercase
}

.review-btn span {
    color: var(--gold);
    font-family: Rancho, cursive;
    font-size: 27px;
    font-weight: 400
}

.review-btn:hover {
    background: var(--gold);
    color: var(--ink) !important
}

.order-callout {
    align-items: center;
    background: var(--ink);
    color: #fff;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    padding: 48px 56px
}

.order-callout h2 {
    color: var(--gold);
    font-family: Rancho, cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    margin: 6px 0 12px
}

.order-callout p:not(.eyebrow) {
    color: #eaded3;
    margin: 0;
    max-width: 650px
}

.order-callout-actions {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 17px
}

.order-callout-actions span {
    color: #d7c8ba;
    font-size: 11px;
    white-space: nowrap
}

.contact-section h3 {
    color: var(--red);
    font-family: Rancho, cursive;
    font-size: 34px
}

.contact-section p {
    font-size: 14px
}

.contact-section a {
    color: var(--red)
}

.contact-cards {
    row-gap: 24px
}

.contact-card {
    align-items: flex-start;
    background: var(--cream);
    border-left: 4px solid var(--red);
    display: flex;
    gap: 20px;
    height: 100%;
    padding: 28px
}

.contact-card-icon {
    align-items: center;
    background: var(--red);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 48px;
    height: 48px;
    justify-content: center
}

.contact-card h3 {
    margin: 3px 0 10px
}

.contact-card p {
    margin-bottom: 10px
}

.contact-meta {
    color: #6b5145;
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase
}

.contact-meta i {
    color: var(--red);
    margin-right: 6px
}

.contact-actions {
    border-top: 1px solid #eadccc;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
    padding-top: 15px
}

.contact-actions a {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase
}

.contact-actions i {
    margin-right: 5px
}

.contact-bottom {
    align-items: center;
    border-top: 1px solid #eadccc;
    display: flex;
    justify-content: space-between;
    margin-top: 38px;
    padding-top: 25px
}

.contact-bottom p {
    margin: 0
}

.mirchi-footer {
    background: var(--ink);
    color: #c8b8aa;
    padding: 48px 0;
    text-align: center
}

.mirchi-footer img {
    height: 150px;
    margin-bottom: 10px
}

.mirchi-footer p {
    font-family: Rancho, cursive;
    font-size: 25px;
    margin: 0 0 20px
}

.mirchi-footer a {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase
}

.mirchi-footer small {
    display: block;
    margin-top: 20px
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.hero-content .eyebrow {
    animation: fadeUp .8s ease both
}

.hero-content h1,
.hero-content h2 {
    animation: fadeUp .8s .12s ease both
}

.hero-content .hero-copy,
.hero-content .mirchi-btn {
    animation: fadeUp .8s .24s ease both
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media (min-width:768px) and (max-width:991px) {
    .navbar-nav {
        background: var(--ink);
        padding: 10px;
        text-align: center
    }

    .navbar-nav .nav-link {
        padding: 10px !important
    }

    .hero-content {
        padding-left: 30px;
        padding-right: 30px
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 58px
    }

    .mirchi-section {
        padding: 75px 0
    }

    .contact-card {
        padding: 22px 18px
    }
}

@media (max-width:767px) {
    .navbar {
        padding: 5px 15px
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, .35)
    }

    .navbar-collapse {
        background: var(--ink);
        margin: 5px -15px -5px
    }

    .navbar-nav .nav-link {
        padding: 9px !important
    }

    .mirchi-hero,
    .hero-slides,
    .hero-slide {
        height: 620px
    }

    .hero-content {
        padding: 185px 20px 0
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 46px
    }

    .hero-copy {
        font-size: 15px
    }

    .mirchi-btn {
        font-size: 10px;
        padding: 12px 15px
    }

    .mirchi-section {
        padding: 65px 0
    }

    .section-heading {
        margin-bottom: 32px;
        padding: 0 10px
    }

    .section-heading h2 {
        font-size: 43px
    }

    .lead {
        font-size: 19px
    }

    .highlight-card {
        margin-bottom: 18px;
        padding: 24px
    }

    .gallery-grid {
        gap: 10px;
        grid-auto-rows: 150px;
        grid-template-columns: 1fr 1fr
    }

    .gallery-grid figure:nth-child(1) {
        grid-row: span 2
    }

    .gallery-grid figure:nth-child(4) {
        grid-column: 1;
    }

    .gallery-grid figure:nth-child(5) {
        grid-column: auto;
        grid-row: span 1
    }

    .gallery-grid figure:nth-child(6) {
        grid-column: 1 / span 2
    }

    .gallery-grid figcaption {
        padding: 11px
    }

    .gallery-grid figcaption strong {
        font-size: 11px
    }

    .gallery-grid figcaption span {
        font-size: 8px
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        margin: 0 10px 30px
    }

    .review-card {
        padding: 22px
    }

    .review-card blockquote {
        font-size: 21px
    }

    .review-actions {
        align-items: stretch;
        flex-direction: column;
        margin: 0 20px
    }

    .review-btn {
        min-width: 0
    }

    .order-callout {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
        padding: 32px 24px
    }

    .order-callout h2 {
        font-size: 42px
    }

    .order-callout-actions {
        width: 100%
    }

    .order-callout-actions span {
        white-space: normal
    }

    .contact-card {
        gap: 13px;
        padding: 20px 15px
    }

    .contact-card-icon {
        flex-basis: 40px;
        height: 40px
    }

    .contact-card h3 {
        font-size: 30px
    }

    .contact-actions {
        gap: 10px
    }

    .contact-actions a {
        font-size: 10px
    }

    .contact-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px
    }

    .mirchi-footer {
        padding: 38px 15px
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal,
    .hero-content .eyebrow,
    .hero-content h1,
    .hero-content h2,
    .hero-content .hero-copy,
    .hero-content .mirchi-btn {
        animation: none;
        opacity: 1;
        transform: none
    }

    .highlight-card,
    .review-card {
        transition: none
    }
}

/* Google Reviews section: keep the original layout, but give its heading and actions a stronger finish. */
.reviews-section .section-heading {
    margin-bottom: 24px;
    position: relative
}

.reviews-section .section-heading:after {
    background: var(--gold);
    content: "";
    display: block;
    height: 2px;
    margin: 20px auto 0;
    width: 46px
}

.reviews-section .section-heading h2 {
    font-size: 60px;
    margin-bottom: 0
}

.reviews-section .review-note {
    color: #e6d8ce;
    margin: 0 auto 28px;
    max-width: 560px
}

.reviews-section .review-actions {
    border-top: 1px solid rgba(241, 182, 56, .2);
    gap: 18px;
    margin: 0 auto;
    padding-top: 24px
}

.reviews-section .review-btn {
    background: #241713;
    border-radius: 3px;
    min-width: 210px;
    transition: background .25s ease, border-color .25s ease, transform .25s ease
}

.reviews-section .review-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px)
}

.reviews-section .review-btn i {
    color: var(--gold);
    margin-left: 6px
}

.reviews-section .review-btn:hover i {
    color: var(--ink)
}

@media (max-width:767px) {
    .reviews-section .section-heading h2 {
        font-size: 45px
    }

    .reviews-section .review-note {
        font-size: 14px;
        padding: 0 16px
    }

    .reviews-section .review-actions {
        gap: 12px;
        padding-top: 20px
    }

    .reviews-section .review-btn {
        min-width: 0;
        width: 100%
    }
}

/* Final alignment pass for the fixed header, review actions, and footer. */
.site-header .navbar>.container {
    align-items: center;
    display: flex;
    min-height: 55px
}

.site-header .navbar-brand {
    align-items: center;
    display: flex;
    margin-right: auto
}

.site-header .navbar-collapse {
    align-items: center;
    flex-grow: 0
}

.site-header .navbar-nav {
    align-items: center
}

.site-header.is-scrolled .navbar {
    padding-bottom: 8px;
    padding-top: 8px
}

.site-header.is-scrolled .navbar-brand img {
    height: 48px
}

.site-header.is-scrolled .navbar-nav .nav-link {
    padding-bottom: 13px !important;
    padding-top: 13px !important
}

.reviews-section .review-btn {
    background: transparent;
    color: #fff !important
}

.reviews-section .review-btn:hover,
.reviews-section .review-btn:focus {
    background: var(--red);
    border-color: var(--red);
    color: #fff !important
}

.reviews-section .review-btn:hover span,
.reviews-section .review-btn:focus span,
.reviews-section .review-btn:hover i,
.reviews-section .review-btn:focus i {
    color: #fff
}

.mirchi-footer .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

.mirchi-footer img {
    display: block;
    margin: 0 auto 14px
}

.mirchi-footer p {
    margin-left: auto;
    margin-right: auto
}

.mirchi-footer small {
    display: block;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:991px) {
    .site-header .navbar>.container {
        min-height: 55px
    }

    .site-header .navbar-collapse {
        background: var(--ink);
        margin: 5px 0 0;
        padding: 8px 12px
    }

    .site-header .navbar-nav {
        align-items: stretch;
        text-align: center
    }

    .site-header .navbar-nav .nav-link {
        padding: 9px !important
    }
}

@media (max-width:767px) {
    .site-header {
        height: 64px
    }

    .site-header .navbar {
        padding: 5px 15px
    }

    .site-header .navbar-brand img {
        height: 44px
    }

    .site-header.is-scrolled .navbar-brand img {
        height: 44px
    }

    .mirchi-footer {
        padding: 42px 15px
    }

    .mirchi-footer img {
        height: 58px
    }

    .mirchi-footer p {
        font-size: 22px
    }
}