/* ==========================
        GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/* ==========================
        RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#F7F2E8;
    color:#333;
    overflow-x:hidden;

}

/* ==========================
        HEADER
========================== */

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 80px;

    background:rgba(255,248,239,.92);
    backdrop-filter:blur(12px);

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    z-index:999;

}

.logo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #8B5E3C;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

nav ul{

    display:flex;
    list-style:none;
    gap:45px;

}

nav ul li a{

    text-decoration:none;
    color:#4C321B;

    font-weight:600;
    font-size:17px;

    transition:.3s;

}

nav ul li a:hover{

    color:#2F6B2F;

}

/* ==========================
        HERO
========================== */

.hero{

    min-height:100vh;

    background:

    linear-gradient(rgba(248,243,233,.55),
    rgba(248,243,233,.55)),

    url("../images/hero.png");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    padding-top:90px;

}

.hero-content{

    width:1200px;
    max-width:92%;
    margin:0 auto;

    display:flex;
    justify-content:center;
    align-items:center;

}

.hero-text{

    width:55%;

}

.hero-text h3{

    color:#2F6B2F;

    font-size:30px;

    font-family:'Playfair Display',serif;

}

.line{

    width:120px;
    height:3px;

    background:#2F6B2F;

    margin:18px 0 30px;

}

.hero-text h1{

    font-size:82px;

    line-height:88px;

    color:#4C321B;

    font-family:'Playfair Display',serif;

}

.hero-text p{

    margin-top:28px;

    font-size:22px;

    line-height:38px;

    color:#4C321B;

}

.btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:35px;

    padding:18px 38px;

    background:#2F6B2F;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.btn:hover{

    background:#4C321B;

}

.hero-image{

    display:flex;

    justify-content:flex-end;

}

.hero-image img{

    width:640px;

    filter:drop-shadow(0 25px 35px rgba(0,0,0,.18));

}
/*=========================================
        FLOATING STATUS CARD
=========================================*/

.status-card{

    width:1200px;
    max-width:92%;
    margin:0 auto;
    position:relative; 
    z-index:10;
    justify-content:center;
    align-items:center;

}

.card{

    background:#fff;
    border-radius:30px;

    display:grid;
    grid-template-columns:1fr 2px 1fr;

    align-items:center;

    padding:45px 55px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    position:relative;

    overflow:hidden;

}

/* Decorative Circle */

.card::before{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(47,107,47,.05);

    right:-120px;
    top:-120px;

}

.divider{

    width:2px;
    height:140px;

    background:#E6DED2;

    margin:0 auto;

}

/*=========================
        LEFT SIDE
=========================*/

.left-card{

    display:flex;
    align-items:center;
    gap:22px;

}

.pot{

    width:85px;
    height:85px;

    object-fit:contain;

}

.left-card h4{

    color:#999;
    font-size:14px;
    letter-spacing:2px;

    margin-bottom:12px;

}

.left-card h2{

    color:#2F6B2F;
    font-size:32px;

    margin-bottom:12px;

    font-weight:700;

}

.left-card p{

    font-size:18px;
    color:#555;

}

/*=========================
        RIGHT SIDE
=========================*/
.right-card{

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:40px;

    height:100%;

}
.order-text{

    font-size:18px;
    color:#555;
    margin:25px 0 25px;
    line-height:30px;

}

.order-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 28px;

    background:#FC8019;   /* Swiggy Orange */

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.order-btn:hover{

    background:#e56f10;

    transform:translateY(-3px);

}

.zomato-btn{
    background:#E23744;
    margin-top:15px;
}

.zomato-btn:hover{
    background:#c91d2f;
}
/*=========================
        FOOD IMAGE
=========================*/

.right-card img{

    position:absolute;

    right:-10px;

    bottom:-15px;

    width:180px;

}

/*=========================
        FOOD IMAGE
=========================*/

.food{

    position:absolute;

    right:25px;

    bottom:20px;

    width:150px;

    opacity: 0.9;

    pointer-events:none;

    filter: brightness(100%);


}

/*=========================
        CARD HOVER
=========================*/

.card:hover{

    transform:translateY(-6px);

    transition:.35s;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}
/*=========================================
            ABOUT SECTION
=========================================*/

.about{

    padding:120px 0;

    background:#FFFDF8;

}

.container{

    width:1200px;

    max-width:92%;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.about-img{

    text-align:center;

}

.about-img img{

    width:100%;

    max-width:500px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.about-text h2{

    font-family:'Playfair Display',serif;

    font-size:52px;

    color:#4C321B;

    margin-bottom:25px;

}

.about-text p{

    font-size:20px;

    line-height:38px;

    color:#666;

    margin-bottom:35px;

}

.btn2{

    display:inline-block;

    padding:16px 35px;

    background:#2F6B2F;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.btn2:hover{

    background:#4C321B;

}

/*=========================================
            MENU SECTION
=========================================*/

.menu{

    padding:120px 0;

    background:#F8F4EC;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-family:'Playfair Display',serif;

    font-size:55px;

    color:#4C321B;

}

.section-title p{

    margin-top:12px;

    color:#777;

    font-size:20px;

}

.menu-container{

    width:1200px;

    max-width:92%;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

.menu-list{

    background:#fff;

    border-radius:25px;

    padding:45px;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.menu-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #eee;

    font-size:20px;

    color:#4C321B;

}

.menu-item:last-child{

    border-bottom:none;

}

.menu-image{

    text-align:center;

}

.menu-image img{

    width:100%;

    max-width:520px;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.15));

    transition:.35s;

}

.menu-image img:hover{

    transform:scale(1.03);

}
/*=========================================
            GALLERY
=========================================*/

.gallery{

    padding:120px 0;

    background:#FFFDF8;

}

.gallery-grid{

    width:1200px;

    max-width:92%;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.gallery-grid img:hover{

    transform:translateY(-8px);

}

/*=========================================
            CONTACT
=========================================*/

.contact{

    padding:120px 0;

    background:#F8F4EC;

    text-align:center;

}

.contact h2{

    font-family:'Playfair Display',serif;

    font-size:55px;

    color:#4C321B;

    margin-bottom:30px;

}

.contact p{

    font-size:22px;

    color:#666;

    margin-bottom:18px;

}

.contact i{

    color:#2F6B2F;

    margin-right:10px;

}

/*=========================================
            FOOTER
=========================================*/

footer{

    background:#2F6B2F;

    color:#fff;

    text-align:center;

    padding:25px;

}

footer p{

    font-size:17px;

    letter-spacing:1px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero-content,
.container,
.menu-container{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-image{

    justify-content:center;

    margin-top:40px;

}

.hero-image img{

    width:420px;

}

.card{

    grid-template-columns:1fr;

    gap:35px;

}

.divider{

    display:none;

}

.right-card{

    padding-left:0;

}

.gallery-grid{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

header{

    flex-direction:column;

    height:auto;

    padding:18px;

}

nav ul{

    flex-wrap:wrap;

    gap:20px;

    justify-content:center;

    margin-top:15px;

}

.hero{

    padding-top:140px;

}

.hero-text h1{

    font-size:52px;

    line-height:60px;

}

.hero-text p{

    font-size:18px;

    line-height:30px;

}

.hero-image img{

    width:320px;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.about-text h2,
.section-title h2,
.contact h2{

    font-size:40px;

}

}

/*=========================================
        SCROLL ANIMATION
=========================================*/

.hidden{

    opacity:0;

    transform:translateY(50px);

    transition:.8s;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.rest-message{

    text-align:center;

    padding:50px 30px;

    background:#FFF8E8;

    border-radius:20px;

    border:2px dashed #d6b36a;

}

.rest-message h2{

    color:#4C321B;

    margin-bottom:20px;

}

.rest-message p{

    color:#555;

    line-height:1.8;

}
/*=========================
    CLOSED MESSAGE
=========================*/

.closed-message{

    width:100%;

    padding:40px;

    text-align:center;

    background:#FFF8F8;

    border:2px dashed #d9534f;

    border-radius:15px;

}

.closed-message h3{

    color:#d9534f;

    margin-bottom:15px;

    font-size:28px;

}

.closed-message p{

    color:#555;

    line-height:1.8;

    font-size:17px;

}

/* ================= REVIEWS ================= */

.reviews{
    padding:80px 10%;
    background:#fffaf3;
}

.reviews-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:40px;
}

.review-card{
    background:#ffffff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-5px);
}

.review-stars{
    color:#f4b400;
    font-size:20px;
    margin-bottom:10px;
}

.review-text{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

.review-name{
    font-weight:600;
    color:#8B5E3C;
}

.review-form{
    max-width:600px;
    margin:60px auto 0;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.review-form input,
.review-form select,
.review-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.review-form textarea{
    resize:none;
}

.review-form button{
    background:#8B5E3C;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.review-form button:hover{
    background:#6d452c;
}

/* ================= LOCATIONS ================= */

.locations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 35px;
}

.location-box {
    width: 280px;
    text-align: center;
}

.location-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.location-box h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.location-box p {
    margin-top: 6px;
    font-size: 16px;
}

.location-divider {
    width: 1px;
    height: 90px;
    background: #8b6f47;
}

.contact-email {
    margin-top: 35px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}

.contact-email i {
    margin-right: 8px;
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .locations {
        flex-direction: column;
        gap: 25px;
    }

    .location-divider {
        width: 180px;
        height: 1px;
    }

    .location-box {
        width: 100%;
    }

}

/* =========================================
        MOBILE RESPONSIVE FINAL FIX
========================================= */

@media (max-width: 700px) {

    /* ---------- HEADER ---------- */

    header {
        height: 82px;
        padding: 10px 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        width: 55px;
        height: 55px;
        border-width: 2px;
    }

    nav ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        margin: 0;
        align-items: center;
        justify-content: flex-end;
    }

    nav ul li a {
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }


    /* ---------- SECTION SCROLL FIX ---------- */

    .about,
    .menu,
    .gallery,
    .reviews,
    .contact {
        scroll-margin-top: 90px;
    }


    /* ---------- HERO ---------- */

    .hero {
        padding-top: 105px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        width: 92%;
        max-width: 92%;
        flex-direction: column;
        display: flex;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h3 {
        font-size: 22px;
    }

    .hero-text h1 {
        font-size: 44px;
        line-height: 50px;
    }

    .hero-text p {
        font-size: 17px;
        line-height: 28px;
    }

    .line {
        margin: 15px auto 25px;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
        margin-top: 35px;
    }

    .hero-image img {
        width: 280px;
        max-width: 90%;
    }


    /* ---------- STATUS CARD ---------- */

    .status-card {
        width: 92%;
        max-width: 92%;
    }

    .card {
        padding: 30px 22px;
        border-radius: 22px;
        gap: 25px;
    }

    .left-card {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 12px;
    }

    .pot {
        width: 65px;
        height: 65px;
    }

    .left-card h2 {
        font-size: 27px;
    }

    .left-card p {
        font-size: 16px;
    }

    .right-card {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .order-text {
        font-size: 16px;
        line-height: 26px;
        margin: 15px 0 20px;
    }

    .order-btn {
        width: 100%;
        justify-content: center;
    }

    .food {
        width: 100px;
        right: 5px;
        bottom: 5px;
        opacity: .15;
    }


    /* ---------- ABOUT ---------- */

    .about {
        padding: 80px 0;
    }

    .container {
        width: 92%;
        max-width: 92%;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img img {
        max-width: 100%;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 38px;
    }

    .about-text p {
        font-size: 17px;
        line-height: 30px;
    }


    /* ---------- MENU ---------- */

    .menu {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 38px;
        line-height: 48px;
    }

    .section-title p {
        font-size: 17px;
        line-height: 28px;
    }

    .menu-container {
        width: 92%;
        max-width: 92%;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .menu-list {
        padding: 25px 22px;
        border-radius: 22px;
    }

    .menu-item {
        font-size: 18px;
        padding: 16px 0;
    }

    .menu-image img {
        max-width: 90%;
    }


    /* ---------- GALLERY ---------- */

    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        width: 92%;
        max-width: 92%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid img {
        height: 250px;
        border-radius: 18px;
    }


    /* ---------- REVIEWS ---------- */

    .reviews {
        padding: 70px 6%;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 22px;
    }


    /* ---------- CONTACT ---------- */

    .contact {
        padding: 80px 20px;
    }

    .contact h2 {
        font-size: 38px;
    }

    .contact p {
        font-size: 17px;
        line-height: 28px;
    }


    /* ---------- FOOTER ---------- */

    footer {
        padding: 20px 15px;
    }

    footer p {
        font-size: 14px;
        line-height: 24px;
    }

}
