*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Vazirmatn',sans-serif;
    direction:rtl;
    background:#f8f8f5;
    color:#333;
    line-height:1.9;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    min-height:100vh;
    background:url("images/shalizar.jpg") center center/cover no-repeat;
    position:relative;
}

.overlay{
    background:rgba(0,0,0,.55);
    min-height:100vh;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 0;
}

.logo{
    color:#fff;
    font-size:30px;
    font-weight:800;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.navbar a:hover{
    color:#ffd54f;
}

.hero-content{
    text-align:center;
    color:#fff;
    margin-top:120px;
}

.hero-content h1{
    font-size:56px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    max-width:700px;
    margin:auto;
}

.btn{
    display:inline-block;
    margin-top:35px;
    background:#2e7d32;
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.btn:hover{
    background:#1b5e20;
}

/* ===== بخش‌ها ===== */

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    font-size:38px;
    margin-bottom:40px;
    color:#2e7d32;
}

.about p,
.cook p,
.contact p{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:18px;
}

/* ===== محصولات ===== */

.product-grid,
.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
    text-align:center;
    padding-bottom:20px;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card h3{
    margin:18px 0 10px;
    color:#2e7d32;
}

.card p{
    padding:0 15px;
}

.card strong{
    display:block;
    margin-top:15px;
    color:#d32f2f;
    font-size:20px;
}

/* ===== بسته‌بندی ===== */

.package-grid .card{
    padding:30px;
    font-size:22px;
    font-weight:bold;
}

/* ===== تماس ===== */

.contact{
    background:#2e7d32;
    color:#fff;
    text-align:center;
}

.contact h2,
.contact h3{
    color:#fff;
}

.contact .btn{
    background:#fff;
    color:#2e7d32;
    font-weight:bold;
}

.contact .btn:hover{
    background:#f1f1f1;
}

/* ===== فوتر ===== */

footer{
    background:#1b1b1b;
    color:#fff;
    text-align:center;
    padding:25px;
}

/* ===== نسخه موبایل ===== */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .navbar ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:18px;
    }

    section h2{
        font-size:30px;
    }
}

.whatsapp{
    position:fixed;
    bottom:20px;
    left:20px;
    width:65px;
    height:65px;
    z-index:999;
}

.whatsapp img{
    width:100%;
    border-radius:50%;
    box-shadow:0 6px 20px rgba(0,0,0,.3);
    transition:.3s;
}

.whatsapp img:hover{
    transform:scale(1.1);
   .order{
    padding:80px 0;
    background:#f3f8f3;
}

.order form{
    max-width:650px;
    margin:auto;
}

.order input,
.order select,
.order textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-family:inherit;
}

.order textarea{
    height:120px;
}

.order button{
    width:100%;
    background:#2e7d32;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

.order button:hover{
    background:#1b5e20;
}

