/* ===========================
   Kasian Food
   Luxury Glass UI
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;900&display=swap');

*{
    font-family:'Vazirmatn', sans-serif;
}

:root{

--bg:#0b0b0d;
--gold:#D4AF37;
--white:#ffffff;
--text:#e8e8e8;
--glass:rgba(255,255,255,.08);
--border:rgba(255,255,255,.18);
--shadow:0 20px 60px rgba(0,0,0,.45);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
 font-family:'Vazirmatn', sans-serif;
}

body{

background:var(--bg);
color:var(--text);
overflow-x:hidden;

}

a{

text-decoration:none;
color:white;

}

ul{

list-style:none;

}


/*==========================
Header
==========================*/

.glass-header{

position:fixed;

top:20px;

left:50%;

transform:translateX(-50%);

width:92%;

height:75px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 40px;

background:var(--glass);

backdrop-filter:blur(18px);

border:1px solid var(--border);

border-radius:22px;

box-shadow:var(--shadow);

z-index:9999;

transition:.4s;

}

.logo{

color: #554a00;
width: 150px;
}

nav ul{

display:flex;

gap:35px;

}

nav a{

font-size:17px;

position:relative;

transition:.3s;

}

nav a:hover{

color:var(--gold);

}

nav a::after{

content:"";

position:absolute;

right:0;

bottom:-8px;

width:0;

height:2px;

background:var(--gold);

transition:.3s;

}

nav a:hover::after{

width:100%;

}


/*==========================
Menu Button
==========================*/

.menu-btn{

display:none;

font-size:30px;

cursor:pointer;

}


/*==========================
Hero
==========================*/

.hero{

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
    linear-gradient(
        rgba(0,0,0,.72),
        rgba(0,0,0,.75)
    ),
    url("../assets/imags/assedd.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 80% 30%,
    rgba(212,175,55,.18),
    transparent 35%),

    radial-gradient(circle at 20% 80%,
    rgba(255,255,255,.05),
    transparent 45%);

}

.hero-container{

    position:relative;

    z-index:5;

    max-width:1400px;

    width:100%;

    margin:auto;

    padding:120px 7%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

/*=====================
Text
=====================*/

.hero-content{

    flex:1;

}

.hero-badge{

    display:inline-block;

    padding:12px 25px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    color:#D4AF37;

    margin-bottom:25px;

}

.hero-content h1{

    color:#fff;

    font-size:72px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-content h1 span{

    color:#D4AF37;

}

.hero-content p{

    color:#ddd;

    font-size:18px;

    line-height:2;

    max-width:550px;

}

/*=====================
Buttons
=====================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#D4AF37;

    color:#111;

    padding:18px 38px;

    border-radius:50px;

    transition:.35s;

    font-weight:bold;

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 35px rgba(212,175,55,.35);

}

.btn-secondary{

    padding:18px 38px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    color:#D4AF37;

    transition:.35s;

    border-color:#D4AF37;

    font-size: 120%;

}

.btn-secondary:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.15);

}

/*=====================
Cards
=====================*/

.hero-features{

    display:flex;

    gap:15px;

    margin-top:45px;

}

.feature-box{

    width: 70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:15px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    transition:.35s;

    border-color: #D4AF37;

}

.feature-box i{

    font-size:24px;

    color:#D4AF37;

}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(212,175,55,.25);

}

/*=====================
Image
=====================*/

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

    position:relative;

}

.hero-glow{

    position:absolute;

    width:430px;

    height:430px;

    border-radius:50%;

    background:#D4AF37;

    filter:blur(120px);

    opacity:.20;

}

.hero-image img{

    width:100%;

    max-width:520px;

    position:relative;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 30px 60px rgba(0,0,0,.5));

}

@keyframes float{

50%{

transform:translateY(-18px);

}

}

/*=====================
Scroll
=====================*/

.scroll-down{

position:absolute;

bottom:25px;

left:50%;

transform:translateX(-50%);

width:32px;

height:55px;

border:2px solid rgba(255,255,255,.25);

border-radius:30px;

display:flex;

justify-content:center;

padding-top:8px;

}

.scroll-down span{

width:6px;

height:10px;

background:#D4AF37;

border-radius:20px;

animation:scroll 1.6s infinite;

}

@keyframes scroll{

100%{

transform:translateY(18px);

opacity:0;

}

}

/*=====================
Responsive
=====================*/

@media(max-width:992px){

.hero-container{

flex-direction:column-reverse;

text-align:center;

gap:45px;

padding:100px 25px;

}

.hero-content h1{

font-size:50px;

}

.hero-content p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.hero-image img{

max-width:360px;

}

}

@media(max-width:768px){

.hero{

min-height:100vh;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

.hero-features{

gap:10px;

}

.feature-box{

width:55px;

height:55px;

}

.hero-image img{

max-width:260px;

}

}

/*==========================
Glass Card
==========================*/

.glass-card{

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.16);

backdrop-filter:blur(20px);

border-radius:24px;

padding:35px;

transition:.4s;

box-shadow:var(--shadow);

}

.glass-card:hover{

transform:translateY(-10px);

border-color:var(--gold);

box-shadow:0 25px 55px rgba(212,175,55,.2);

}

/*==========================
About
==========================*/

.about{

padding:120px 8%;

}

.about-container{

display:flex;

align-items:center;

justify-content:space-between;

gap:70px;

}

.about-text{

flex:1;

}

.section-title{

color:var(--gold);

font-size:18px;

font-weight:700;

}

.about h2{

font-size:48px;

margin:20px 0;

color:#fff;

}

.about p{

line-height:2.2;

color:#d9d9d9;

font-size:17px;

margin-bottom:40px;

}

.about-image{

flex:1;

}

.about-image img{

width:100%;

border-radius:30px;

box-shadow:0 25px 60px rgba(0,0,0,.4);

transition:.4s;

}

.about-image img:hover{

transform:scale(1.03);

}

.about-cards{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.about-cards .glass-card{

text-align:center;

padding:30px;

}

.about-cards h3{

color:var(--gold);

font-size:30px;

margin-bottom:10px;

}

.about-cards span{

color:#fff;

}

/*==========================
Menu Section
==========================*/

.menu-section{

padding:120px 8%;

}

.menu-card{

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

background:rgba(255,255,255,.07);

backdrop-filter:blur(25px);

border:1px solid rgba(255,255,255,.12);

border-radius:35px;

padding:60px;

box-shadow:0 30px 70px rgba(0,0,0,.35);

transition:.4s;

}

.menu-card:hover{

transform:translateY(-10px);

box-shadow:0 35px 80px rgba(212,175,55,.15);

}

.menu-text{

flex:1;

}

.menu-text span{

color:var(--gold);

font-size:18px;

font-weight:700;

}

.menu-text h2{

font-size:52px;

margin:18px 0;

color:#fff;

}

.menu-text p{

line-height:2.2;

color:#ddd;

margin-bottom:35px;

font-size:17px;

}

.menu-bts{

display:inline-flex;

align-items:center;

justify-content:center;

width:220px;

height:60px;

border-radius:50px;

background:var(--gold);

color:#111;

font-weight:700;

transition:.35s;

}

.menu-bts:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.menu-image{

flex:1;

text-align:center;

}

.menu-image img{

width:100%;

max-width:500px;

border-radius:30px;

transition:.4s;

}

.menu-image img:hover{

transform:scale(1.05);

}
/*==========================
Foods
==========================*/

.foods{

padding:120px 8%;

}

.section-header{

text-align:center;

margin-bottom:70px;

}

.section-header span{

color:var(--gold);

font-size:18px;

font-weight:700;

}

.section-header h2{

font-size:52px;

color:#fff;

margin:15px 0;

}

.section-header p{

color:#cfcfcf;

}

.foods-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.food-card{

background:rgba(255,255,255,.07);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.12);

border-radius:30px;

overflow:hidden;

transition:.35s;

}

.food-card:hover{

transform:translateY(-10px);

border-color:var(--gold);

}

.food-card img{

width:100%;

height:260px;

object-fit:cover;

transition:.4s;

}

.food-card:hover img{

transform:scale(1.08);

}

.food-content{

padding:25px;

}

.food-content h3{

font-size:28px;

color:white;

margin-bottom:12px;

}

.food-content p{

line-height:2;

color:#ddd;

margin-bottom:20px;

}

.food-bottom{

display:flex;

justify-content:space-between;

align-items:center;

}

.food-price{

font-size:22px;

font-weight:bold;

color:var(--gold);

}

.food-btn{

width:120px;

height:45px;

border:none;

border-radius:30px;

cursor:pointer;

background:var(--gold);

font-weight:bold;

transition:.3s;

}

.food-btn:hover{

transform:scale(1.05);

}
/*==========================
 Club Customers
==========================*/


.club-section{

padding:120px 8%;

display:flex;

justify-content:center;

}



.club-card{

width:100%;

max-width:1100px;

background:

linear-gradient(
135deg,
rgba(212,175,55,.18),
rgba(255,255,255,.06)
);

backdrop-filter:blur(25px);

border:1px solid rgba(255,255,255,.18);

border-radius:40px;

padding:70px 50px;

text-align:center;

box-shadow:
0 30px 80px rgba(0,0,0,.45);

position:relative;

overflow:hidden;

}



.club-card::before{

content:"";

position:absolute;

width:300px;

height:300px;

background:#D4AF37;

filter:blur(120px);

opacity:.25;

top:-100px;

left:-100px;

}



.club-content{

position:relative;

z-index:2;

}



.club-label{

color:var(--gold);

font-size:20px;

font-weight:bold;

}



.club-content h2{

font-size:55px;

color:white;

margin:20px 0;

}



.club-content p{

max-width:750px;

margin:auto;

line-height:2.3;

font-size:18px;

color:#ddd;

}



.club-features{

display:flex;

justify-content:center;

gap:25px;

margin:45px 0;

flex-wrap:wrap;

}



.club-feature{

background:rgba(255,255,255,.09);

border:1px solid rgba(255,255,255,.15);

padding:18px 25px;

border-radius:20px;

color:white;

backdrop-filter:blur(15px);

}



.club-btn{

display:inline-flex;

align-items:center;

justify-content:center;

height:60px;

padding:0 45px;

border-radius:50px;

background:var(--gold);

color:#111;

font-weight:800;

transition:.35s;

}



.club-btn:hover{

transform:translateY(-7px);

box-shadow:
0 20px 40px rgba(212,175,55,.4);

}

//*==========================
 Phone Order
==========================*/

.phone-order{

width:100%;

padding:120px 20px;

box-sizing:border-box;

}

.phone-order-container{


max-width:1200px;

width:100%;

margin:0 auto;

padding:60px;

border-radius:40px;

display:flex;

align-items:center;

justify-content:space-between;

gap:80px;


position:relative;

overflow:hidden;

background:rgba(255,255,255,.08);

backdrop-filter:blur(30px);

border:1px solid rgba(255,255,255,.12);

box-shadow:0 35px 80px rgba(0,0,0,.45);

}

.phone-order-container::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:#D4AF37;

filter:blur(150px);

opacity:.18;

left:-120px;

top:-120px;

}

.phone-order-container::after{

content:"";

position:absolute;

width:300px;

height:300px;

background:#D4AF37;

filter:blur(140px);

opacity:.12;

right:-120px;

bottom:-120px;

}

.phone-order-image,
.phone-order-content{

position:relative;

z-index:2;

}

.phone-order-image{

flex:1;

text-align:center;

}

.phone-order-image img{

width:100%;

max-width:360px;

transition:.5s;

filter:drop-shadow(0 30px 50px rgba(0,0,0,.45));

}

.phone-order-container:hover .phone-order-image img{

transform:translateY(-12px) rotate(-5deg);

}

.phone-order-content{

flex:1;

}

.phone-tag{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:rgba(212,175,55,.15);

color:var(--gold);

font-weight:bold;

margin-bottom:20px;

}

.phone-order-content h2{

font-size:52px;

color:#fff;

margin-bottom:25px;

}

.phone-order-content p{

font-size:18px;

line-height:2.2;

color:#ddd;

margin-bottom:40px;

}

.phone-order-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:12px;

width:250px;

height:62px;

border-radius:50px;

background:linear-gradient(135deg,#D4AF37,#F5D76E);

color:#111;

font-weight:800;

font-size:18px;

transition:.4s;

overflow:hidden;

position:relative;

}

.phone-order-btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:70%;

height:100%;

background:rgba(255,255,255,.4);

transform:skewX(-25deg);

transition:.7s;

}

.phone-order-btn:hover::before{

left:150%;

}

.phone-order-btn:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(212,175,55,.45);

}

.footer{

margin-top:120px;

padding:70px 8% 25px;

background:rgba(255,255,255,.04);

backdrop-filter:blur(20px);

border-top:1px solid rgba(255,255,255,.1);

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

}

.footer-box h3{

color:var(--gold);

margin-bottom:20px;

}

.footer-box p{

color:#bbb;

line-height:2;

}

.footer-box a{

display:block;

margin-bottom:12px;

color:#ddd;

transition:.3s;

}

.footer-box a:hover{

color:var(--gold);

padding-right:8px;

}

.footer-bottom{

text-align:center;

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.08);

color:#888;

}

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-box a:hover{

padding-right:0;

}

}

/*==========================
Preloader
==========================*/

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#050505;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

transition:opacity .8s ease,visibility .8s;

}

.loader-content{

position:relative;

}

.loader-content img{

width:350px;

animation:logoFloat 2s ease-in-out infinite;

filter:drop-shadow(0 0 25px rgba(212,175,55,.35));

}

/* نور عبوری */

.loader-content::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:20%;

height:70%;

background:linear-gradient(

90deg,

transparent,

rgba(44, 33, 2, 0.85),

transparent

);

transform:skewX(-2deg);

animation:shine 1.8s linear infinite;

}

@keyframes shine{

100%{

left:160%;

}

}

@keyframes logoFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

#preloader.hide{

opacity:0;

visibility:hidden;

}

.content-section{


padding:100px 0;

background:#141414;


}
.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}
.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.gallery-card{

background:rgb(0, 0, 0);

border-radius:30px;

overflow:hidden;

box-shadow:

0 20px 50px rgba(0,0,0,.08);

transition:.4s;

}



.gallery-card:hover{

transform:translateY(-10px);

box-shadow:

0 30px 70px rgba(0,0,0,.15);

}



.gallery-image{

height:260px;

overflow:hidden;

position:relative;

}



.gallery-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}



.gallery-card:hover img{

transform:scale(1.08);

}



.gallery-card h3{

padding:25px 25px 10px;

font-size:24px;

color:#ffffff;

}



.gallery-card p{

padding:0 25px 30px;

color:#666;

line-height:2;

}

.icon1{

    width: 5px;

}