@font-face {
    font-family: "Peyda";
    src: url("../fonts/Peyda.woff2") format("woff2");
    font-weight: 700;
}



body{
    margin:0;
    font-family: "Vazirmatn", sans-serif;
    background:#0E0E10;
    color:white;
    direction:rtl;
}

h1, h2, h3 {
    font-family: "Peyda", "Vazirmatn", sans-serif;
}


/* ================= NAVBAR ================= */
.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:min(1100px,80%);
    padding:16px 28px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:rgba(10,10,12,.55);
    backdrop-filter:blur(18px);

    border:1px solid rgba(201,166,107,.15);
    border-radius:18px;

    z-index:1000;
}


/* logo */
.logo h2{
    font-size:1.1rem;
    font-weight:500;
    letter-spacing:1px;
    color:#fff;
}

/* links */
.nav-links{
    display:flex;
    gap:28px;
    list-style:none;
}

.nav-links a{
    color:rgba(255,255,255,.75);
    font-size:.95rem;
    position:relative;
    transition:.3s;
}

.nav-links a:hover{
    color:#C9A66B;
}

.nav-links a::after{
    content:"";
    position:absolute;
    right:0;
    bottom:-6px;
    width:0;
    height:1px;
    background:#C9A66B;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* CTA button */
.btn.small{
    padding:10px 18px;
    border-radius:999px;
    background:transparent;
    border:1px solid #C9A66B;
    color:#C9A66B;
    font-size:.9rem;
    transition:.3s;
}

.btn.small:hover{
    background:#C9A66B;
    color:#000;
    transform:translateY(-2px);
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    background:
        linear-gradient(
            135deg,
            rgba(10,10,12,.95),
            rgba(20,15,18,.92)
        ),
        url("../img/marble.webp");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../img/noise.png");
    opacity:0.06;
    pointer-events:none;
}

.hero-content{
    width:min(700px,90%);
    margin-right:8%;
}

.tag{
    color:#C9A66B;
    letter-spacing:1px;
    font-size:.9rem;
}

.hero h1{
    font-size:4rem;
    margin:15px 0;
    line-height:1.2;
}

.hero p{
    color:#bbb;
    max-width:600px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* ================= BUTTONS ================= */

.btn{
    padding:12px 22px;
    border-radius:999px;
    text-decoration:none;
    transition:.3s;
}

.btn.primary{
    background:#C9A66B;
    color:#000;
}

.btn.primary:hover{
    transform:translateY(-3px);
}

.btn.ghost{
    border:1px solid #C9A66B;
    color:#C9A66B;
}

.btn.ghost:hover{
    background:#C9A66B;
    color:#000;
}


/* ================= ABOUT ================= */

.container{
    width: min(1200px, 92%);
    margin: 20px auto;
}

.about{
    background: #0E0E10;
    color:#fff;
    position:relative;
}

.about .container{
    margin: 20px auto;
}

/* GRID */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    max-width: 1200px;
    margin: 0 auto;
}

/* TEXT */
.about-text .section-subtitle{
    color:#C9A66B;
    letter-spacing:2px;
    font-size:.9rem;
}

.about-text h2{
    font-size:3rem;
    margin:15px 0 25px;
    line-height:1.3;
}

.about-text p{
    color:rgba(255,255,255,.75);
    margin-bottom:18px;
    line-height:2;
    font-size:1.05rem;
}

/* IMAGE */

.about-image{
    display:flex;
    justify-content:center;
}

.about-image img{
    width: 100%;
    max-width: 420px;
    max-height: 600px;
    object-fit: cover;
    border-radius:18px;
    filter:contrast(1.05) brightness(.9);
    box-shadow:0 25px 60px rgba(0,0,0,.4);
    transition:.4s ease;
}

.about-image img:hover{
    transform:scale(1.02);
}

@media (max-width: 768px){

    .about-image img{
        max-height: 420px;   /* smaller on mobile */
        max-width: 100%;
        margin: 0 auto;
    }

}

/* SIGNATURE */
.about-signature{
    margin-top:30px;
    display:flex;
    align-items:center;
    gap:15px;
}

.signature-name{
    color:#C9A66B;
    font-weight:500;
}

.signature-line{
    flex:1;
    height:1px;
    background:linear-gradient(to left, transparent, #C9A66B);
}

/* RESPONSIVE */
@media(max-width:900px){
    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-text h2{
        font-size:2.2rem;
    }

    .about-signature{
        justify-content:center;
    }
}



@media (max-width: 768px){

    .navbar{
        flex-direction:column;
        gap:12px;
        padding:14px 18px;
    }

    .nav-links{
        gap:14px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.6rem;
        text-align:center;
    }

    .hero p{
        text-align:center;
        font-size:1rem;
    }

    .hero-content{
        margin:auto;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .about-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }

}

/* ================= SIGNATURE DISHES ================= */

.signature{
    background: linear-gradient(
        180deg,
        #0E0E10,
        #141416
    );
    color: #F7F2EC;
    padding: 120px 0;
}

.signature .section-subtitle{
    color: #C9A66B;
    font-weight: 600;
}

.signature .section-title{
    color: #F7F2EC;
}

.signature .section-desc{
    color: #A8A8A8;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.9;
}

/* GRID */
.signature-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.dish-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,166,107,0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
}

.dish-card:hover{
    transform: translateY(-10px);
    border-color: rgba(201,166,107,0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* IMAGE */
.dish-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.9);
}

/* CONTENT */
.dish-content{
    padding: 20px;
}

.dish-content h3{
    color: #C9A66B;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.dish-content p{
    color: #A8A8A8;
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* BOTTOM */
.dish-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-bottom span{
    color: #F7F2EC;
    font-weight: bold;
}

/* BUTTON */
.dish-bottom button{
    background: #7A1E2C;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s;
}

.dish-bottom button:hover{
    background: #C9A66B;
    color: #0E0E10;
}

/* RESPONSIVE */
@media (max-width: 900px){
    .signature-grid{
        grid-template-columns: 1fr;
    }
}


/* ================= MENU TABS ================= */

.menu-tabs{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:40px 0;
    flex-wrap:wrap;
}

.tab{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,166,107,0.2);
    color: #F7F2EC;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s;
}

.tab:hover{
    border-color: #C9A66B;
    color: #C9A66B;
}

.tab.active{
    background: #7A1E2C;
    border-color: #7A1E2C;
    color: white;
}

/* CONTENT */
.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

/* MENU GRID */

.menu .section-subtitle{
    color: #C9A66B;
    font-weight: 600;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

/* ITEM */
.menu-item{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,166,107,0.15);
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
}

.menu-item:hover{
    transform: translateY(-6px);
    border-color: rgba(201,166,107,0.4);
}

.menu-item h3{
    color: #C9A66B;
    margin-bottom: 6px;
}

.menu-item p{
    color: #A8A8A8;
    margin-bottom: 10px;
}

.menu-item span{
    color: #F7F2EC;
    font-weight: bold;
}

/* ================= WHY US ================= */

.whyus{
    background: linear-gradient(
        135deg,
        #0E0E10,
        #141416
    );
    color: #F7F2EC;
    padding: 120px 0;
    position: relative;
}

/* subtitle + title */
.whyus .section-subtitle{
    color: #C9A66B;
    font-weight: 600;
}

.whyus .section-title{
    color: #F7F2EC;
}

.whyus-desc{
    color: #A8A8A8;
    max-width: 650px;
    margin-bottom: 50px;
    line-height: 1.9;
}

/* GRID */
.whyus-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */
.why-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,166,107,0.15);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover{
    transform: translateY(-10px);
    border-color: rgba(201,166,107,0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ICON */
.why-card i{
    font-size: 2rem;
    color: #C9A66B;
    margin-bottom: 15px;
    background: rgba(201,166,107,0.1);
    padding: 14px;
    border-radius: 14px;
}

/* TEXT */
.why-card h3{
    color: #F7F2EC;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-card p{
    color: #A8A8A8;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px){
    .whyus-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px){
    .whyus-grid{
        grid-template-columns: 1fr;
    }
}

/* ================= BANNER CTA ================= */

.banner{
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: url("../img/banner-food.jpg") center/cover no-repeat;
    color: #F7F2EC;
    overflow: hidden;
}

/* dark cinematic overlay */
.banner-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(14,14,16,0.85),
        rgba(14,14,16,0.55),
        rgba(122,30,44,0.35)
    );
}

/* content */
.banner-content{
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 0;
}

.banner-subtitle{
    color: #C9A66B;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.banner h2{
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 18px;
}

.banner p{
    color: #A8A8A8;
    margin-bottom: 28px;
    line-height: 1.9;
}

/* button refinement inside banner */
.banner .btn.primary{
    color: white;
    background: #7A1E2C;
    box-shadow: 0 15px 40px rgba(122,30,44,0.35);
}

.banner .btn.primary:hover{
    background: #C9A66B;
    color: #0E0E10;
}


/* ================= GALLERY ================= */

.gallery{
    background: #0E0E10;
    color: #F7F2EC;
    position: relative;
}

.gallery .section-title{
    color: #C9A66B;
    font-weight: 600;
}

.gallery-desc{
    color: #A8A8A8;
    max-width: 650px;
    margin-bottom: 50px;
}

/* GRID */
.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* ITEM */
.gallery-item{
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(201,166,107,0.15);
    transition: 0.35s ease;
}

/* IMAGE */
.gallery-item img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
    filter: brightness(0.9) contrast(1.05);
}

/* HOVER EFFECT */
.gallery-item:hover{
    transform: translateY(-6px);
    border-color: rgba(201,166,107,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.gallery-item:hover img{
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px){
    .gallery-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-item img{
        height: 220px;
    }
}

/* ================= CONTACT ================= */

.contact{
    background: linear-gradient(
        180deg,
        #0E0E10 0%,
        #17121C 30%,
        #37323C 100%
    );

    padding-top: 140px;
    padding-bottom: 120px;

    position: relative;
}

/* add soft separation glow from previous section */
.contact::before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(14,14,16,0.9),
        transparent
    );
    pointer-events: none;
}

.contact .section-subtitle{
    color: #C9A66B;
    font-weight: 600;
}

/* spacing improvement */
.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;

    margin-top: 40px;
}

/* LEFT SIDE */
.contact-info .section-title{
    margin-bottom: 18px;
}

.contact-desc{
    color: #777;
    margin-bottom: 25px;
    line-height: 1.9;
}

.contact-details p{
    margin-bottom: 12px;
    color: #666;
}

/* SOCIAL ICONS */
.socials{
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.socials a{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #C9A66B;
    background: rgba(201,166,107,0.15);
    color: #C9A66B;
    transition: 0.3s ease;
}

.socials a:hover{
    background: #C9A66B;
    color: white;
    transform: translateY(-4px);
}

/* RESERVATION CARD */
.reservation-card{
    background: #0E0E10;
    color: #F7F2EC;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border: 1px solid #E9B68B;
}

.reservation-card h3{
    margin-bottom: 10px;
}

.reservation-card p{
    color: #A8A8A8;
    margin-bottom: 20px;
}

/* FORM */
.reservation-card form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reservation-card input,
.reservation-card textarea{
    padding: 14px;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: inherit;
}

.reservation-card textarea{
    min-height: 100px;
    resize: none;
}

/* RESPONSIVE */
@media (max-width: 900px){
    .contact-grid{
        grid-template-columns: 1fr;
    }

    .reservation-card{
        margin-top: 20px;
    }
}

/* ================= FOOTER ================= */

.footer{
    background: #0E0E10;
    color: #F7F2EC;
    padding: 70px 0 20px;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* BRAND */
.footer-brand h3{
    color: #C9A66B;
    margin-bottom: 10px;
}

.footer-brand p{
    color: #A8A8A8;
    line-height: 1.8;
}

/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-social h4{
    margin-bottom: 12px;
    color: #C9A66B;
}

.footer-links a{
    display: block;
    color: #A8A8A8;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #F7F2EC;
    transform: translateX(-5px);
}

/* SOCIAL */
.social-icons{
    display: flex;
    gap: 12px;
}

.social-icons a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201,166,107,0.1);
    color: #C9A66B;
    transition: 0.3s;
}

.social-icons a:hover{
    background: #C9A66B;
    color: #0E0E10;
    transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom{
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #777;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px){
    .footer-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px){
    .footer-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons{
        justify-content: center;
    }
}






@media (max-width: 480px){

    .nav-links{
        display:none; /* optional: we can add burger menu later */
    }

    .hero h1{
        font-size:2.2rem;
    }

    .btn{
        width:100%;
        text-align:center;
    }
}

@media (max-width: 768px){
    .banner{
        background-attachment: scroll;
    }
}

/* ================= BANNER RESPONSIVE FIX ================= */

@media (max-width: 900px){

    .banner{
        min-height: 45vh;
        text-align: center;
    }

    .banner-content{
        padding: 60px 20px;
        margin: auto;
    }

    .banner h2{
        font-size: 2.2rem;
    }
}

@media (max-width: 600px){

    .banner h2{
        font-size: 1.8rem;
        line-height: 1.6;
    }

    .banner p{
        font-size: 0.95rem;
    }

    .banner .btn{
        width: 100%;
    }
}
