/* ===========================
   RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Vazirmatn',sans-serif;
    background:#111;
    color:#fff;
}

a{
    text-decoration:none;
    color:inherit;
}

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

/* ===========================
   HEADER
=========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(200,169,106,.15);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:48px;
    letter-spacing:8px;
    color:#C8A96A;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    transition:.3s;
}

nav a:hover{
    color:#C8A96A;
}

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

.hero{

    position:relative;

    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
    url("../images/hero.jpg");

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

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

    text-align:center;

}

.hero-content{
    z-index:2;
}

.hero-content span{

    color:#C8A96A;

    letter-spacing:4px;

    font-size:16px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:110px;

    letter-spacing:12px;

    margin:20px 0;

}

.hero-content h2{

    font-size:34px;

    margin-bottom:25px;

}

.hero-content p{

    color:#ddd;

    font-size:20px;

    line-height:2;

}

.btn{

    display:inline-block;

    margin-top:40px;

    background:#C8A96A;

    color:#111;

    padding:18px 45px;

    border-radius:50px;

    font-weight:bold;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-5px);

    background:#fff;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

header .container{

flex-direction:column;

height:auto;

padding:18px 0;

}

.logo{

font-size:36px;

margin-bottom:15px;

}

nav{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.hero-content h1{

font-size:60px;

letter-spacing:6px;

}

.hero-content h2{

font-size:24px;

}

.hero-content p{

font-size:16px;

padding:0 20px;

}

.btn{

padding:15px 35px;

}

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

.about{

padding:120px 0;

background:#181818;

}

.about-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.about-content span{

color:#C8A96A;

letter-spacing:4px;

}

.about-content h2{

font-size:42px;

margin:20px 0;

}

.about-content p{

line-height:2;

color:#ccc;

font-size:18px;

}

.features{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-top:40px;

}

.feature{

background:#222;

padding:25px;

border-radius:18px;

text-align:center;

transition:.3s;

}

.feature:hover{

transform:translateY(-8px);

border:1px solid #C8A96A;

}

.feature h3{

margin-top:15px;

font-size:20px;

}

@media(max-width:768px){

.about-container{

grid-template-columns:1fr;

}

.features{

grid-template-columns:1fr;

}

} 
/* ===========================
   MENU PAGE
=========================== */

.menu-page{
    padding:100px 0;
    background:#111;
}

.section-title{
    text-align:center;
    color:#C8A96A;
    font-size:42px;
    margin-bottom:60px;
    font-family:'Playfair Display',serif;
}

.category{
    background:#1a1a1a;
    border:1px solid rgba(200,169,106,.2);
    border-radius:20px;
    padding:30px;
    margin-bottom:35px;
    transition:.3s;
}

.category:hover{
    transform:translateY(-5px);
    border-color:#C8A96A;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.category h3{
    color:#C8A96A;
    margin-bottom:20px;
    font-size:28px;
}

.category ul{
    list-style:none;
    padding:0;
}

.category li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#eee;
    font-size:18px;
}

.category li:last-child{
    border-bottom:none;
}

@media(max-width:768px){

.section-title{
    font-size:30px;
}

.category{
    padding:22px;
}

.category h3{
    font-size:22px;
}

.category li{
    font-size:16px;
}

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

.gallery{

padding:120px 0;

background:#111;

text-align:center;

}

.gallery h2{

font-size:42px;

color:#C8A96A;

margin-bottom:15px;

}

.gallery p{

color:#aaa;

margin-bottom:50px;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:20px;

}

.gallery-grid img{

width:100%;

height:280px;

object-fit:cover;

border-radius:20px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

box-shadow:0 20px 40px rgba(0,0,0,.45);

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

.contact{

padding:120px 0;

background:#181818;

text-align:center;

}

.contact h2{

font-size:42px;

color:#C8A96A;

margin-bottom:15px;

}

.contact-subtitle{

color:#aaa;

margin-bottom:50px;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-bottom:50px;

}

.contact-card{

background:#222;

padding:35px;

border-radius:20px;

transition:.3s;

border:1px solid rgba(200,169,106,.15);

}

.contact-card:hover{

transform:translateY(-8px);

border-color:#C8A96A;

}

.contact-card h3{

margin-bottom:15px;

color:#C8A96A;

}

.contact-card p{

font-size:18px;

color:#eee;

}

.contact-card a{

color:#fff;

}

.contact-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.whatsapp{

background:#25D366;

color:#fff;

}

.whatsapp:hover{

background:#1DA851;

}

@media(max-width:768px){

.contact h2{

font-size:32px;

}

.contact-card{

padding:25px;

}

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

.footer{

background:#0b0b0b;

padding:70px 0 25px;

border-top:1px solid rgba(200,169,106,.15);

}

.footer-logo{

text-align:center;

margin-bottom:45px;

}

.footer-logo h2{

font-size:48px;

color:#C8A96A;

letter-spacing:6px;

font-family:'Playfair Display',serif;

}

.footer-logo p{

color:#999;

margin-top:10px;

}

.footer-info{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:35px;

text-align:center;

margin-bottom:40px;

}

.footer-info h3{

color:#C8A96A;

margin-bottom:12px;

}

.footer-info p{

color:#ddd;

line-height:1.8;

}

.footer-info a{

color:#ddd;

text-decoration:none;

}

.footer-info a:hover{

color:#C8A96A;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding-top:20px;

text-align:center;

color:#888;

font-size:14px;

} 
/* ===== Mobile Menu ===== */

.menu-toggle{
display:none;
font-size:34px;
color:#C8A96A;
cursor:pointer;
}

.nav-links{
display:flex;
gap:35px;
}

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{

display:none;

position:absolute;

top:80px;

right:20px;

width:220px;

background:#111;

padding:20px;

border-radius:15px;

flex-direction:column;

box-shadow:0 15px 40px rgba(0,0,0,.5);

}

.nav-links.active{

display:flex;

}

}