:root{
  --main:#16a085;
  --bg:#fafafa; /* Açıq ağ arxa fon */
  --card:#ffffff;
  --text:#111;
}

body.dark{
  --bg:#0e1117;
  --card:#151a23;
  --text:#f1f1f1;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,sans-serif;
  background: linear-gradient(180deg,#ffffff,var(--bg)); /* Bannerdən card altına səliqəli keçid */
  color:var(--text);
}

/* HAMBURGER */
.hamburger{
  position:absolute;
  top:15px;
  right:15px;
  width:30px;
  height:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  z-index:3000;
}

.hamburger span{
  height:3px;
  background:#fff;
  border-radius:3px;
}

/* MENU */
.menu{
  position:fixed;
  top:0;
  right:-320px;
  width:320px;
  height:100%;
  background:var(--card);
  padding:80px 20px 20px 20px;
  transition:right 0.3s ease;
  z-index:9999;
}

.menu.active{right:0}

/* CLOSE X */
.close-btn{
  position:absolute;
  top:20px;
  right:20px;
  font-size:28px;
  color:#e74c3c;
  cursor:pointer;
  z-index:10000;
  background:transparent;
  border:none;
}

/* Rəng seçimi və dark toggle */
.menu h4,
.colors,
.dark-toggle{
  margin-top:20px;
}

.colors span{
  width:22px;
  height:22px;
  border-radius:50%;
  display:inline-block;
  margin:6px;
  cursor:pointer;
}

.dark-toggle{
  margin-top:20px;
  cursor:pointer;
}

/* BANNER */
.banner{
  height:220px;
  background:url('https://portall.info/vehyevi/banner.jpeg') center/cover;
}

/* CARD */
.card{
  max-width:420px;
  margin:-20px auto 30px;
  background:var(--card);
  border-radius:22px;
  padding:20px;
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.logo{
  width:110px;
  height:110px;
  background:#fff;
  border-radius:50%;
  margin:-70px auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo img{width:65%}

h1,.arabic{text-align:center}
.arabic{font-size:32px}

h1{
  font-size: 26px; /* istədiyin ölçünü yaz */
}


/* ACCORDION */
.acc-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:14px;
  margin-top:10px;
  background:var(--main);
  color:#fff;
  font-weight:bold;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.panel{
  display:none;
  padding:10px;
  border-left:4px solid var(--main);
  overflow:hidden;
  transition:height 0.3s ease;
}

/* SUB ACCORDION */
.sub-acc .sub-btn{
  width:100%;
  padding:10px 14px;
  margin:8px 0;
  border:none;
  background:#f0f0f0;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.sub-acc .sub-panel{
  display:none;
  padding:8px 10px;
  margin-bottom:6px;
  background:#f9f9f9;
  border-radius:8px;
  font-size:14px;
  overflow:hidden;
  transition:height 0.25s ease;
}

/* MEDIA */
audio{
  width:100%;
  margin:8px 0;
  border-radius:12px;
}

.dua{
  background:var(--main);
  color:#fff;
  padding:10px;
  border-radius:12px;
  text-align:center;
  margin:10px 0;
}

/* SOCIAL */
.social{
  display:flex;
  justify-content:center;
  gap:25px;
  font-size:22px;
  margin:20px 0;
}

.social a{
  transition: color 0.3s;
}

.social a:hover{
  color: var(--main);
}

footer{
  text-align:center;
  font-size:13px;
  opacity:.6;
}

.float-right{
  margin-left:auto;
}

.social a {
  color: #16a085; /* standart rəng */
  transition: color 0.3s;
}







/* NAMAZ VAXTLARI */
.prayer-box{
  margin:25px auto;
  padding:16px;
  border-radius:16px;
  background:var(--card);
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  max-width: 900px;
  text-align:center;
}

.prayer-box h2{
  margin:0;
  color:var(--main);
}

.prayer-date{
  font-size:14px;
  opacity:.7;
  margin:6px 0 14px;
}

.prayer-table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
  text-align:center;
}

.prayer-table th, .prayer-table td{
  padding:10px;
  border:1px solid rgba(0,0,0,.08);
}

body.dark .prayer-table th, body.dark .prayer-table td{
  border-color: rgba(255,255,255,.1);
}

.prayer-table th{
  background: rgba(0,119,255,.1);
  color: var(--main);
}

body.dark .prayer-table th{
  background: rgba(0,119,255,.2);
}

.prayer-table td:last-child{
  font-weight:bold;
  color:var(--main);
}

body.dark .prayer-box{
  background:#151a23;
}

body.dark .prayer-date{
  color:#ccc;
}






/* FONT SIZE MENYU */
.font-size-menu{
  margin-top:20px;           /* Dark/Light altına məsafə */
  display:flex;
  gap:12px;                  /* Düymələr arası məsafə */
}

.font-size-menu a{
  width:36px;                /* Social iconlara uyğun ölçü */
  height:36px;
  border-radius:50%;
  background:var(--main);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:bold;
  text-decoration:none;       /* Alt xətt olmasın */
  cursor:pointer;
  transition:0.2s;
}

.font-size-menu a:hover{
  opacity:0.85;
}



.logo{
  width:110px;
  height:110px;
  background:#fff;
  border-radius:50%;
  margin:-70px auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative; /* pseudo-element üçün vacib */
  z-index:1;
}

/* Logonu əhatə edən Instagram-style dairə */
.logo::before{
  content:"";
  position:absolute;
  top:-6px;          /* logodan kənara çıxma məsafəsi */
  left:-6px;
  width:calc(100% + 12px);  /* logonun ölçüsü + kənar */
  height:calc(100% + 12px);
  border-radius:50%;
  border:6px solid var(--main); /* əsas rəng */
  box-sizing:border-box;
  z-index:-1;        /* logonun arxasında görünsün */
  transition: border-color 0.3s; /* rəng dəyişəndə animasiya */
}





.site-name {
  text-align: center;      /* Mətni üfüqi olaraq mərkəzləşdirir */
  display: block;           /* H1 default block elementdir, amma bəzən explicit yazmaq yaxşıdır */
  font-size: 26px;          /* İstəyə görə ölçü */
  font-weight: bold;
}

.site-name .verify {
  color: var(--main);       /* Sayt rənginə uyğun */
  margin-left: 6px;         /* Ad ilə işarə arasında məsafə */
  font-size: 22px;           /* İstəyə görə ölçü */
  vertical-align: middle;    /* H1 mətni ilə eyni xəttdə olsun */
}





/* Əsr sətirini gizlədir */
#Asr {
  display: none;
}

/* Və ya tam tr-i gizlətmək üçün */
#Asr {
  display: none;
}
#Asr::parent {
  display: none;
}











