@font-face {
    font-family: "Vazir";
    src: url(../fonts/Vazir-Regular.ttf);
}

@font-face {
  font-family: "Lalezar";
  src: url("../fonts/Lalezar-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-color: #000000;
  --accent-color: #dadada;    /* طلایی گرم کافه */
  --blur-bg: rgba(255,255,255,0.7);
  --text-color: #222;
  --radius: 1.6rem;
  --shadow: 0 10px 20px rgba(0,0,0,.08);
  --font-title: "Lalezar", sans-serif;
  --font-body: "IRANSansX", "SF Pro Display", sans-serif;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
}

*{
    font-family: "Vazir";
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

section{
    padding:2rem 9%;
}

.heading {
  font-family: "Lalezar", cursive;
  color: #fff; /* رنگ متن اصلی قابل دید */
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4),
               0 0 30px rgba(255, 220, 160, 0.3);
  -webkit-text-stroke: 0 transparent; /* حذف خط بیرونی */
}

.heading span {
  font-family: "Lalezar", cursive;
  background: linear-gradient(90deg, #f1dcba, #fff3d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 220, 170, 0.4);
}

.btn {
  background-color: #ffffff;          /* رنگ پس‌زمینه دکمه */
  color: #4b2e1a;                     /* رنگ متن */
  font-family: "Lalezar", cursive;    /* فونت لاله‌زار */
  font-size: 1.8rem;                  /* اندازه متن دکمه */
  border: none;                       /* بدون حاشیه */
  border-radius: 16px;                /* گوشه‌های گرد – قابل تغییر */
  box-shadow: 0 2px 20px rgba(29, 29, 29, 0.473); /* سایه – قابل تنظیم */
  padding: 1.2rem 2.5rem;             /* فاصله داخلی */
  cursor: pointer;
  transition: all 0.3s ease;
            /* انیمیشن لطیف */
           align-self: flex-start; /* برای جدا کردن از محور وسط */
margin-top: 8rem;

}

.btn:hover {
  background-color: #cfa96b;          /* طلایی گرم (هاور) */
  color: #ffffff;                     /* سفید روی طلایی */
  box-shadow: 0 10px 25px rgba(207, 169, 107, 0.4);
  transform: translateY(-2px);
}


/* ----------- ساختار کلی هدر (Glass iOS centered) ----------- */
/* ******** اصلاح نهایی هدر ******** */
.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 92%;
  height: 10%;
  padding: 0.6rem 1.8rem;
  border-radius: 10px;

  background: rgba(25, 25, 25, 0.45);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ---------- لوگو ---------- */
.header .logo {
  font-family: "Lalezar", cursive;
  font-size: 2.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4),
               0 0 20px rgba(207, 169, 107, 0.5);
}

.header .logo i {
  font-size: 2.1rem;
  color: #fff;
}

/* ---------- دکمه رزرو یا مشاهده منو ---------- */
.header .btn {
  background-color: #fff3dc;
  color: #43210a;
  font-family: "Lalezar", cursive;
  font-size: 1.6rem;
  border: none;
  border-radius: 10px;
  padding: 1rem 1.8rem;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(207, 169, 107, 0.35);
  transition: all 0.25s ease;

align-self: center;    /* 👈 دکمه رو در محور عمودی وسط‌چین می‌کنه */
  margin-top: 0 !important; /* 👈 حذف فاصله اضافی بالاش */
  position: relative;    /* 👈 جای گذاری دقیق */
  top: 0;  
}



.home{
    min-height: 100vh;
    padding-top: 12rem;
    background: url(../image/adrien-olichon-RCAhiGJsUUE-unsplash.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.home .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:1.5rem;
}

.home .row .content{
    flex:1 1 42rem;
}

.home .row .image{
    flex:1 1 42rem;
    padding-top: 10rem;
    text-align: center;
}

.home .row .image img{
    height:35rem;
    animation: float 4s linear infinite;
}

@keyframes float{
    0%, 100%{
        transform: translateY(0rem);
    }
    50%{
        transform: translateY(-7rem);
    }
}

.home .row .content h3 {
    font-family: "Lalezar", cursive;
    font-size: 15rem;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4),
                 0 0 30px rgba(200, 180, 120, 0.2);
    margin-top: 20rem; /* این فاصله رو بر اساس نیاز تغییر بده */
}


.home .image-slider{
    text-align: center;
    padding:3rem 0;
}

.home .image-slider img{
    height:9rem;
    margin:0 .5rem;
    cursor: pointer;
    margin-top: 5rem;
}

.home .image-slider img:hover{
    transform: translateY(-2rem);
}

.about {
  background: linear-gradient(135deg, #000000, #3a3a3a); /* گرادینت طلایی لطیف */
}


.about .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:1.5rem;
}

.about .row .image{
    flex:1 1 42rem;
}

.about .row .image img{
    width: 100%;
    animation:aboutImage 4s linear infinite;
}

@keyframes aboutImage {
    0%, 100%{
        transform: scale(.9);
        border-radius: var(--border-radius-hover);
    }
    50%{
        transform: scale(.8);
        border-radius: var(--border-radius);
    }
}
/*
.about .row .content{
    flex:1 1 42rem;
}
    */

.about .row .content .title{

    font-family: "Lalezar", cursive;
    font-size: 3.25rem;
    color: rgb(255, 255, 255);
    line-height: 1.8;
   /* text-shadow: 0 0 15px rgba(255, 255, 255, 0.4),
                 0 0 30px rgba(200, 180, 120, 0.2); */
}

.about .row .content p{
    color: #fdf7ec;
    font-size: 1.5rem;
    line-height: 1.8;
    padding:1rem 0;
}

.about .row .content .icons-container{
    display: flex;
    flex-wrap: wrap;
    gap:1rem;
    padding-top: 3rem;
}

.about .row .content .icons-container .icons{
    flex:1 1 15rem;
    padding:1.5rem;
    text-align: center;
    border:var(--border);
    border-radius: var(--border-radius);
}

.about .row .content .icons-container .icons img{
    height: 5rem;
}

.about .row .content .icons-container .icons h3 {
  font-family: "Lalezar", cursive; /* 👈 فونت لاله‌زار برای حس کافه */
  font-size: 1.9rem;                /* کمی بزرگ‌تر برای نمایش گرم‌تر */
  padding-top: 1rem;
  background: linear-gradient(90deg, #f1dcba, #fff3d6); /* 👈 گرادینت طلایی گرم تا روشن */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* 👈 متن از گرادینت پر میشه */
  text-shadow: 0 0 15px rgba(255, 215, 160, 0.4),
               0 0 30px rgba(255, 220, 170, 0.25); /* 👈 سایه‌ی نرم درخشان */
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}


.menu{
    background: url(../image/SHOM.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.menu .box-container{
    display: flex;
    flex-wrap: wrap;
    gap:2rem;
    justify-content: center;
}

/* ======= بازطراحی کارت‌های منو به سبک iOS-Glass ======= */
.menu .box-container .box {
  flex: 1 1 30rem;
  padding: 2.5rem 2rem;
  
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 2rem;
}

/* افکت طلایی در هاور */
.menu .box-container .box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
      inset 0 2px 4px rgba(255, 255, 255, 0.4),
      0 10px 30px rgba(245, 218, 150, 0.35);
}

.menu .box-container .box img {
    height: 8rem;
   /* margin-left: -6rem; */
    margin-bottom: 1.5rem;   /* 👈 عکس کمی بالاتر میره */
    border-radius: 12px;   /* گردی قبلی برای ظرافت */
    object-fit: cover;  
      box-shadow:
      inset 0 30px 8px rgba(0, 0, 0, 0.733),
      0 10px 30px rgba(0, 0, 0, 0.664);
    
      }

.menu .box-container .box .content h3 {
  font-family: "Lalezar", cursive;
  font-size: 2.6rem;
  background: linear-gradient(90deg, #ffe6b0, #fffbe8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 220, 180, 0.35);
}



.menu .box-container .box:hover .content h3 {
  color: #c49a6b;                 /* طلایی‌کافه وقتی هاور می‌کنی */
  text-shadow: 0 0 20px rgba(196, 154, 107, 0.7),
               0 0 40px rgba(255, 222, 180, 0.5);
}

.menu .box-container .box .content p {
  font-size: 1.55rem;
  color: #ddd;
  line-height: 2.2;
  margin: 1rem 0 0.8rem 0;
}



.menu .box-container .box .content span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #f9e0b6;
  margin-top: 1.2rem;
}

.menu .box-container .box:hover .content span {
  color: #d2a660; /* طلایی گرم */
  text-shadow: 0 0 20px rgba(255, 220, 170, 0.8),
               0 0 35px rgba(255, 220, 160, 0.6);
}

.review .review-slider{
    padding:7rem 0;
}

.review .review-slider .box{
    border:var(--border);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    z-index: 0;
    padding:2rem;
}

.review .review-slider .box .fa-quote-left{
    position: absolute;
    top:2rem; left: 2.5rem;
    font-size: 6rem;
    color:#ccc;
    z-index: -1;
}

.review .review-slider .box .fa-quote-right{
    position: absolute;
    bottom:2rem; right: 2.5rem;
    font-size: 6rem;
    color:#ccc;
    z-index: -1;
}

.review .review-slider .box:hover .fa-quote-left{
    top:-6.5rem;
}

.review .review-slider .box:hover .fa-quote-right{
    bottom:-6.5rem;
}

.review .review-slider .box img{
    height:7rem;
    width:7rem;
    border-radius: 50%;
    margin-bottom: .7rem;
}

.review .review-slider .box .stars{
    padding:.5rem 0;
}

.review .review-slider .box .stars i{
    font-size: 1.7rem;
    color:var(--main-color);
}

.review .review-slider .box p{
    font-size: 1.6rem;
    color:var(--main-color);
    padding:1rem 0;
    line-height: 1.8;
}

.review .review-slider .box h3{
    font-size: 2.2rem;
    color:var(--main-color);
    line-height: 1.8;
}

.review .review-slider .box span{
    font-size: 1.5rem;
    color:var(--main-color);
}

.swiper-pagination-bullet{
    height:1.5rem;
    width:1.5rem;
    border-radius: 0;
}

.swiper-pagination-bullet-active{
    background:var(--main-color);
}

.book{
    background: linear-gradient(135deg, #000000, #3a3a3a);
    background-position: center;
    background-size: cover;
}

.book form{
    margin:0 auto 2rem auto;
    max-width: 60rem;
    border-radius: var(--border-radius-hover);
    padding:3rem;
    border:var(--border);
}

.book form .box{
    width:100%;
    padding:1rem 1.2rem;
    border-radius: .5rem;
    font-size: 1.6rem;
    background:none;
    text-transform: none;
    color:var(--main-color);
    border:var(--border);
    margin:.7rem 0;
}

.book form .box:focus{
    border:var(--border-hover);
}

.book form textarea{
    height:15rem;
    resize: none;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
    gap:1.5rem;
}

.footer .box-container .box h3 {
  font-family: "Lalezar", cursive;   /* 👈 فونت لاله‌زار */
  font-size: 2.5rem;
  padding: 1rem 0;
  color: #ffffff;                    /* 👈 طلایی گرم برای هماهنگی با تم کافه */
  letter-spacing: 0.5px;

  /* ✨ افکت درخشش نرم (Glow) */
  text-shadow: 
    0 0 6px rgba(255, 220, 180, 0.6),
    0 0 14px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(0, 0, 0, 0.35);
  
  transition: all .3s ease;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding:1rem 0;
    color: #ffffff;
}

.footer .box-container .box a i{
    padding-right: .5rem;
}

.footer .box-container .box a:hover i{
    padding-right: 2rem;
}

.footer .credit{
    text-align: center;
    font-size: 2rem;
    padding:2rem 1rem;
    margin-top: 1rem;
    color: #ffffff;
}

.footer
{
   background: linear-gradient(135deg, #000000, #3a3a3a);
}
.footer .credit a span {
/*  font-family: "Lalezar", cursive;   /* فونت لاله‌زار */
  font-size: 2rem;
  color: #bca8ff;                    /* 👈 بنفش لطیف */
  border-bottom: none;               /* ❌ حذف خط زیر */
  text-shadow: 
    0 0 6px rgba(255,255,255,0.6),
    0 0 12px rgba(188,168,255,0.45),
    0 0 18px rgba(0, 0, 0, 0.945);  /* ✨ افکت Glow ریز */
  transition: all .3s ease;
}

.footer .credit a span:hover {
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255,255,255,0.8),
    0 0 20px rgba(188,168,255,0.6),
    0 0 40px rgba(188,168,255,0.4);
}



.about .row .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* جلوگیری از وسط‌کشیدن دکمه */
}

.about .row .content .btn {
  margin-top: 2rem;        /* فاصله‌ی واضح بین پاراگراف و دکمه */
}









@media (max-width: 768px) {
  .home .row .content h3 {
    font-size: 4rem; /* همون مقدار فعلی موبایل که داری */
    margin-bottom: 5rem; /* 👈 فاصله از دکمه اضافه شد */
  }

  .btn {
    margin-top: 5rem; /* 👈 فاصله بیشتر مخصوص موبایل */
  }
}





/* media queries  */

@media(max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:2rem;
    }

    section{
        padding:2rem;
    }

}


@media (max-width: 768px) {
  .about .row .content .btn {
    margin-top: 5rem; /* فاصله بیشتر در موبایل برای نفس کشیدن متن */
  }
}


@media(max-width:768px){

    .heading{
        font-size: 6rem;
    }

    .heading span{
        font-size: 2.3rem;
    }

    #menu-btn{
        display: initial;
    }

    #menu-btn.fa-times{
        transform:rotate(180deg);
    }

    .header .navbar{
        position: absolute;
        top:99%; left:0; right:0;
        background:#fff;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .header .navbar a{
        display: block;
        font-size: 2.2rem;
        margin:0;
        padding:1.5rem 2rem;
    }

    .home{
        text-align: center;
    }

    .home .row .content h3{
        font-size: 5.5rem;
    }

    .menu .box-container .box{
        margin-left: 0;
        margin-top: 6rem;
        flex-flow: column;
        text-align: center;
    }

    .menu .box-container .box img{
        margin-left: 0;
        margin-top: -6rem;
    }

}

@media(max-width:450px){

    html{
        font-size: 50%;
    }

    .home .row .image img{
        height: auto;
        width: 100%;
    }
    

    /* ===== موبایل - تنظیم فاصله‌ها ===== */
@media (max-width: 768px) {
  .menu .box-container {
    flex-direction: column;
    gap: 3rem;
  }

  .menu .box-container .box {
    margin: 0 auto;
    width: 85%;
    height: 85%;
    padding: 2rem 1.6rem;
  }

  .menu .box-container .box img {
    margin: -3rem auto 1.6rem;
  }

  .menu .box-container .box .content p {
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.9;
  }

  .menu .box-container .box .content span {
    margin-top: 1rem;
  }
}

}