/* GENERAL */

body{
  margin:0;
  background:#fff;
  color:#111;
  font-family:'Vazirmatn', sans-serif;
  text-align:center;
  direction:rtl;
}

.section{
  padding:60px 20px;
}

/* HERO */

.hero{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background:url("hero.webp") center/cover no-repeat;
  position:relative;
  color:#fff;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

.hero h1{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin:0;
  z-index:1;
}

.persian-date{
  font-size:24px;
  margin-top:10px;
  z-index:1;
  position:relative;
}

.time-range{
  display:block;
  font-size:13px;
  margin-top:4px;
}

/* Scroll Arrow */

.scroll-down{
  position:absolute;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  gap:6px;
}

.scroll-down span{
  width:12px;
  height:12px;
  border-bottom:2px solid #fff;
  border-right:2px solid #fff;
  transform:rotate(45deg);
  animation:arrow 2s infinite;
}

.scroll-down span:nth-child(2){
  animation-delay:.3s;
}

@keyframes arrow{
  0%{opacity:0; transform:rotate(45deg) translateY(0);}
  50%{opacity:1;}
  100%{opacity:0; transform:rotate(45deg) translateY(10px);}
}

/* COUNTDOWN */

.countdown-section{
  padding:40px 10px;
}

.countdown-wrapper{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.count-box{
  width:120px;
  height:120px;
  background:#939a9f;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
  transition:.3s;
}

.count-box span{
  font-size:34px;
  font-weight:600;
}

.count-box p{
  margin-top:6px;
  font-size:13px;
  opacity:.9;
}

/* CARD */

.card{
  max-width:700px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

h2{
  margin-bottom:20px;
  font-size:22px;
  font-weight:500;
}

/* BUTTON */

.button{
  display:inline-block;
  margin-top:20px;
  padding:12px 28px;
  background:#111;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  transition:.3s;
}

.button:hover{
  transform:scale(1.05);
}

/* MAP */

iframe{
  width:100%;
  height:300px;
  border:none;
  border-radius:12px;
}

/* GUIDE */

.guide-gallery{
  display:flex;
  justify-content:center;
  margin-top:15px;
}

.guide-gallery img{
  width:280px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.guide-text{
  margin-top:15px;
  font-size:14px;
  opacity:.8;
}

/* FOOTER */

footer{
  margin-top:60px;
  padding-bottom:30px;
  font-size:14px;
  color:#555;
}

/* MOBILE */

@media(max-width:600px){

.count-box{
  width:90px;
  height:90px;
}

.count-box span{
  font-size:26px;
}

.hero h1{
  font-size:34px;
}

}