@font-face {
  font-family: 'AljazeeraRegular';
  src: url('../fonts/AL-JAZEERA-ARABIC-REGULAR.TTF') format('truetype');
  /* font-weight: 200;
  font-style: normal;
  font-display: swap; */
}

@font-face {
  font-family: 'AljazeeraLight';
  src: url('../fonts/AL-JAZEERA-ARABIC-LIGHT.TTF') format('truetype');

}

@font-face {
  font-family: 'AlsharkLight';
  src: url('../fonts/ALSHARKTITLE-LIGHT.OTF') format('truetype');

}

@font-face {
  font-family: 'AlsharkBlack';
  src: url('../fonts/ALSHARKTITLE-BLACK.OTF') format('truetype');

}

@font-face {
  font-family: 'AlsharkBold';
  src: url('../fonts/ALSHARKTITLE-BOLD.OTF') format('truetype');

}

:root {
  --charcoal: #383838;
  --gold: #a47e0a;
  --gold-light: #c9a020;
  --gold-pale: #f5e9c8;
  --ivory: #faf8f3;
  --white: #ffffff;
  --gray-100: #f4f4f2;
  --gray-200: #e8e6e0;
  --gray-500: #9a9489;
  --gray-700: #5a5650;
  --shadow-sm: 0 2px 12px rgba(56, 56, 56, 0.08);
  --shadow-md: 0 8px 32px rgba(56, 56, 56, 0.12);
  --shadow-lg: 0 20px 60px rgba(56, 56, 56, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-ar: 'AljazeeraLight', 'Cairo', 'Tajawal', sans-serif;
  --font-la: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
h1{
  font-family: 'AlsharkBold', 'Cairo', 'Tajawal', sans-serif;
}

h2{
  font-family: 'AlsharkLight', 'Cairo', 'Tajawal', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ar);
  font-size: 18px;
  background: var(--white);
  color: var(--charcoal);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

body.ltr {
  direction: ltr;
  font-family: var(--font-la);
}

a {
  color: inherit;
}

.site-main {
  min-height: 40vh;
}

.topbar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 7px 0;
  position: relative;
  z-index: 200;
}

.topbar-inner,
.header-inner,
.section-inner,
.footer-inner,
.footer-bottom,
.hero-inner,
.donate-inner,
.prayer-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: var(--font-ar);
  transition: var(--transition);
  text-decoration: none;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  font-size: 0.78rem;
}

header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 70px;
  height: 70px;
  position: relative;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.logo-text .ar {
  font-size: 0.89rem;
  color: var(--charcoal);
  font-weight: 700;
}

.logo-text .de {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-family: var(--font-la);
  font-weight: 500;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 14px;
  left: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-list a:hover::after,
.nav-list .current-menu-item > a::after {
  transform: scaleX(1);
}

.nav-list .current-menu-item > a,
.nav-list a:hover {
  color: var(--charcoal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: var(--transition);
  font-size: 1.1rem;
  text-decoration: none;
}

.icon-btn:hover {
  background: var(--gray-100);
}

.donate-btn,
.btn-primary,
.btn-outline {
  border: none;
  border-radius: 32px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.donate-btn {
  background: var(--gold);
  color: #fff;
  padding: 9px 20px;
  font-size: 0.85rem;
}

.donate-btn:hover {
  background: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-list,
.mobile-nav-list li {
  list-style: none;
}

.mobile-nav-list a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  border-bottom: 1px solid var(--gray-100);
  display: block;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--charcoal);
    max-height: 550px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
              /* radial-gradient(circle at center, rgba(56, 56, 56, 0) 40%, rgba(56, 56, 56, 0.65) 100%), */
              linear-gradient(to right , rgba(56, 56, 56, 0) 40%, rgba(56, 56, 56, 0.65) 100%),
              linear-gradient(to bottom, rgba(56, 56, 56, 0) 40%, rgba(56, 56, 56, 0.65) 100%),
              linear-gradient(to left, rgba(56, 56, 56, 0) 40%, rgba(56, 56, 56, 0.65) 100%),
              /* linear-gradient(to top, rgba(56, 56, 56, 0) 40%, rgba(56, 56, 56, 0.65) 100%), */
              url('../images/hero.jpeg') center/cover no-repeat;
  max-height: 550px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 56, 56, 0.55) 0%, rgba(56, 56, 56, 0.1) 60%, transparent 100%);
  max-height: 550px;

}

.hero-inner {
  position: relative;
  z-index: 2;
  /* padding-top: 80px; */
  padding-bottom: 180px;
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 40px;
  min-height: 500px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(164, 126, 10, 0.25);
  border: 1px solid rgba(164, 126, 10, 0.5);
  color: var(--gold-pale);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 13px 28px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.prayer-widget {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.prayer-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.prayer-title {
  font-size: 1.1rem;
  font-weight: 800;
}

.prayer-date {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: left;
}

.prayer-widget-head-grid {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 4px;
  margin-bottom: 6px;
}

.prayer-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  gap: 8px;
}

.prayer-row.next {
  background: var(--gold-pale);
  border-radius: 8px;
  padding: 9px 10px;
  margin: 0 -10px;
}

.prayer-name {
  font-size: 0.88rem;
  font-weight: 700;
}

.prayer-col-header{
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-la);
}

.prayer-time {
  font-size: 0.85rem;
  text-align: center;
  font-family: var(--font-la);
}

.prayer-time.highlight {
  color: var(--gold);
  font-weight: 700;
}

section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}

.view-all {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.depts-bg,
.contact-bg {
  background: var(--ivory);
}

.depts-grid,
.team-grid,
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.dept-card,
.team-card,
.ikz-post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-decoration: none;
}

.dept-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.dept-name {
  font-size: 1rem;
  font-weight: 800;
}

.dept-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.depts-page-grid,
.depts-page-showcase-grid {
  grid-template-columns: 1fr;
}

.depts-page-grid .dept-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 36%) 1fr;
  gap: 0;
  align-items: stretch;
}

.dept-card-media {
  min-height: 220px;
  background: var(--gray-100);
  overflow: hidden;
}

.dept-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dept-card-body {
  padding: 24px;
}

.depts-page-grid .dept-icon {
  margin-bottom: 14px;
}

.depts-page-grid .dept-name {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.depts-page-grid .dept-desc {
  font-size: 0.92rem;
  line-height: 1.7;
}

.dept-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.depts-page-showcase-grid .dept-showcase-card {
  display: grid;
  grid-template-columns: minmax(300px, 38%) 1fr;
  min-height: 280px;
}

.depts-page-showcase-grid .dept-showcase-media {
  height: 100%;
  min-height: 280px;
}

.depts-page-showcase-grid .dept-showcase-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dept-showcase-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.dept-showcase-media {
  height: 220px;
  background: var(--gray-100);
  overflow: hidden;
}

.dept-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dept-showcase-body {
  padding: 22px 24px 26px;
}

.dept-showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.dept-showcase-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.dept-showcase-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.7;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.col-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
}

.col-block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
}

.news-item,
.activity-item,
.article-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}

.news-thumb,
.article-img {
  width: 68px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-200);
  flex-shrink: 0;
}

.news-thumb img,
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-title,
.activity-title,
.article-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.news-item-date,
.activity-time,
.article-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.activity-date-badge {
  background: var(--gold);
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 50px;
  text-align: center;
}

.donate-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.donate-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
}

.donate-inner {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.donate-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.donate-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.donate-amounts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.amount-btn {
  border: 1px solid rgba(164, 126, 10, 0.5);
  background: rgba(164, 126, 10, 0.1);
  color: var(--gold-pale);
  padding: 10px 22px;
  border-radius: 24px;
  cursor: pointer;
}

.amount-btn.active {
  background: var(--gold);
  color: #fff;
}

.donate-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin-bottom: 6px;
  display: block;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #fff;
}

.donate-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 32px;
  font-weight: 800;
  cursor: pointer;
}

.payment-badges {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-block {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-form .form-label {
  color: var(--gray-700);
}

.contact-form .form-input {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--charcoal);
}

.contact-form textarea.form-input {
  min-height: 110px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  background: var(--charcoal);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 32px;
  font-weight: 800;
  cursor: pointer;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 220px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 260px;
}

.contact-details {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  gap: 10px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  background: #272727;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 14px 0 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.78rem;
}

.inner-hero {
  background: var(--charcoal);
  padding: 60px 24px;
  text-align: center;
}

.inner-hero-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #fff;
}

.inner-hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 8px;
}

.prayer-page-layout {
  background: var(--ivory);
  padding: 56px 0 80px;
}

.prayer-page-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.prayer-side-column {
  display: grid;
  gap: 16px;
}

.prayer-side-card {
  min-height: 175px;
  padding: 22px;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.prayer-next-card,
.prayer-date-card,
.prayer-table-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.prayer-next-card {
  text-align: center;
}

.prayer-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.prayer-card-label {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.prayer-card-icon {
  font-size: 1.1rem;
}

.prayer-next-name {
  font-size: 1.3rem;
  /* margin-bottom: 6px; */
}

.prayer-next-time {
  font-size: 1.3rem;
  color: var(--charcoal);
  font-family: var(--font-la);
  margin-bottom: 14px;
}

.prayer-countdown-box {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  display: grid;
  gap: 4px;
}

.prayer-countdown-box span {
  font-size: 0.8rem;
  color: var(--charcoal);
}

.prayer-countdown-box strong {
  color: var(--gold);
  font-family: var(--font-la);
  font-size: 1.05rem;
}

.prayer-side-card .jumuah-main {
  gap: 10px;
}

.prayer-side-card .jumuah-main h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.prayer-side-card .jumuah-main p {
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.prayer-side-card .jumuah-times {
  grid-template-columns: 1fr;
}

.prayer-side-card .jumuah-time-box {
  padding: 10px;
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--charcoal);
}

.prayer-side-card .jumuah-time-box span {
  color: var(--charcoal);
}

.prayer-side-card .jumuah-time-box strong {
  color: var(--gold);
}

.prayer-date-card {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: #fff;
}

.prayer-date-icon {
  font-size: 1.25rem;
}

.prayer-date-greg {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.prayer-date-hijri {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.prayer-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--gray-200);
}

.prayer-table-head h3 {
  font-size: 1.3rem;
}

.prayer-table-head button {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.prayer-table-body {
  padding: 4px 0;
}

.prayer-month-meta {
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 12px 22px 0;
}

.prayer-month-table-wrap {
  overflow-x: auto;
  padding: 10px 0 2px;
}

.prayer-month-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.prayer-month-table th,
.prayer-month-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  font-size: 0.88rem;
}

.prayer-month-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--gray-100);
  color: var(--charcoal);
  font-weight: 700;
}

.prayer-month-table td {
  font-family: var(--font-la);
}

.prayer-month-table .day-col {
  font-family: var(--font-ar);
  font-weight: 700;
  color: var(--charcoal);
}

.prayer-month-table tr.is-today td {
  background: var(--gold-pale);
}

.prayer-month-table tbody tr:hover td {
  background: #f8f6ef;
}

.prayer-table-row {
  display: grid;
  grid-template-columns: 1fr 110px 170px;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--gray-100);
}

.prayer-table-row:last-child {
  border-bottom: 0;
}

.prayer-row-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.prayer-row-time {
  text-align: center;
  font-family: var(--font-la);
  font-size: 0.95rem;
}

.prayer-row-note {
  color: var(--gray-500);
  font-size: 0.84rem;
  text-align: left;
}

.prayer-table-row.is-current {
  background: var(--gold-pale);
}

.prayer-live-badge {
  justify-self: start;
  background: rgba(164, 126, 10, 0.16);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.jumuah-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--charcoal), #4b4b4b);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-md);
}

.jumuah-banner-side.prayer-side-card {
  margin-top: 0;
  padding: 22px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.jumuah-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.jumuah-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(164, 126, 10, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jumuah-main h3 {
  margin-bottom: 8px;
}

.jumuah-main p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  max-width: 640px;
}

.jumuah-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 10px;
}

.jumuah-time-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.jumuah-time-box span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
}

.jumuah-time-box strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-la);
  font-size: 1.05rem;
}

.jumuah-banner-side {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .prayer-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .jumuah-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .jumuah-times {
    grid-template-columns: 1fr;
  }
}

.ikz-post-card {
  overflow: hidden;
}

.ikz-post-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.ikz-post-body {
  padding-top: 16px;
}

.ikz-post-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ikz-single {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 24px;
}

.ikz-single-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.ikz-single-cover {
  margin: 20px 0;
}

.ikz-single-content {
  line-height: 1.85;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About page team layout */
.about-team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.about-team-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.about-team-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team-info {
  padding: 1.25rem 1.25rem 1.5rem;
}

.about-team-info h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}

.about-team-role {
  margin: 0 0 .75rem;
  color: #0f172a;
  font-weight: 600;
}

.about-team-bio {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: .95rem;
}