.restaurant-about{
    padding:120px 0;
    background:#f8f7f4;
    overflow:hidden;
}

.restaurant-about .container{
    width:min(1200px,90%);
    margin:auto;
}

/* ======================
   HEADING
====================== */

.section-heading{
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(201,169,97,.1);
    color:#c9a961;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    margin-top: 30px;
}

.section-heading h2{
    font-size:3.5rem;
    line-height:1.2;
    color:#1f2937;
    margin-bottom:25px;
}

.section-heading p{
    color:#6b7280;
    line-height:1.9;
    font-size:1.05rem;
}

/* ======================
   CONTENT
====================== */

.restaurant-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:100px;
}

.restaurant-image{
    overflow:hidden;
    border-radius:30px;
    position:relative;
}

.restaurant-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:30px;
    transition:.6s ease;
}

.restaurant-image:hover img{
    transform:scale(1.08);
}

.restaurant-text .content-tag{
    color:#c9a961;
    text-transform:uppercase;
    font-weight:600;
    letter-spacing:2px;
}

.restaurant-text h3{
    font-size:3rem;
    line-height:1.2;
    margin:20px 0;
    color:#111827;
}

.restaurant-text p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:20px;
}

/* ======================
   FEATURES
====================== */

.restaurant-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

.feature{
    background:#fff;
    padding:18px 20px;
    border-radius:15px;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 25px rgba(0,0,0,.04);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

/* ======================
   HIGHLIGHTS
====================== */

.dining-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.highlight-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    border:1px solid rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.highlight-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#c9a961;
    transform:scaleX(0);
    transition:.4s;
}

.highlight-card:hover::before{
    transform:scaleX(1);
}

.highlight-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.highlight-card h3{
    color:#111827;
    margin-bottom:15px;
    font-size:1.3rem;
}

.highlight-card p{
    color:#6b7280;
    line-height:1.8;
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:992px){

    .restaurant-content{
        grid-template-columns:1fr;
        gap:50px;
    }

    .restaurant-image img{
        height:450px;
    }

    .dining-highlights{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:2.5rem;
    }

    .restaurant-text h3{
        font-size:2.2rem;
    }
}

@media(max-width:768px){

    .restaurant-features{
        grid-template-columns:1fr;
    }

    .dining-highlights{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:2rem;
    }

    .restaurant-text h3{
        font-size:1.8rem;
    }

    .restaurant-image img{
        height:350px;
    }
}
