/* =================================================================
   STYLE SDIT FIRDAUS - Tema Islami Hijau TEGAS
   File: assets/css/style.css
   Warna Utama: #0A5C36 (Hijau Tua), #8BC53F (Lime), #0D6EFD accent biru
   Font: Inter + Amiri untuk nuansa Islami
================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Amiri:wght@700&display=swap');

:root {
  --firdaus-green: #0A5C36;
  --firdaus-green-light: #0E7A4A;
  --firdaus-lime: #8BC53F;
  --firdaus-lime-light: #A8D96F;
  --firdaus-cream: #F8FAF5;
  --firdaus-dark: #1A2E1A;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--firdaus-cream);
  color: #2D3A2D;
  line-height: 1.7;
}

/* Navbar */
.navbar-firdaus {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(10,92,54,0.08);
  padding: 0.8rem 0;
}
.navbar-firdaus .navbar-brand {
  font-family: 'Amiri', serif;
  font-weight: 700;
  color: var(--firdaus-green) !important;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-firdaus .navbar-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.navbar-firdaus .nav-link {
  font-weight: 500;
  color: #3A4A3A !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar-firdaus .nav-link:hover, .navbar-firdaus .nav-link.active {
  color: var(--firdaus-green) !important;
  background: rgba(10,92,54,0.08);
}
.btn-firdaus {
  background: var(--firdaus-green);
  color: white;
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
}
.btn-firdaus:hover {
  background: var(--firdaus-green-light);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10,92,54,0.25);
}
.btn-firdaus-lime {
  background: var(--firdaus-lime);
  color: var(--firdaus-dark);
  font-weight: 700;
}
.btn-firdaus-lime:hover {
  background: var(--firdaus-lime-light);
  color: var(--firdaus-dark);
}

/* Hero Slider */
.hero-firdaus {
  position: relative;
  background: linear-gradient(135deg, var(--firdaus-green) 0%, #0E7A4A 100%);
  overflow: hidden;
  padding: 6rem 0 5rem;
  color: white;
}
.hero-firdaus::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(139,197,63,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23F8FAF5' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,181.3C960,181,1056,203,1152,197.3C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}
.badge-tegas {
  background: rgba(139,197,63,0.2);
  border: 1px solid var(--firdaus-lime);
  color: var(--firdaus-lime);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Card */
.card-firdaus {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,92,54,0.07);
  transition: all 0.3s;
  background: white;
}
.card-firdaus:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,92,54,0.12);
}
.card-firdaus .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Sambutan */
.sambutan-box {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(10,92,54,0.08);
  border-left: 5px solid var(--firdaus-green);
}

/* Statistik */
.stat-firdaus {
  text-align: center;
  padding: 1.5rem;
}
.stat-firdaus .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--firdaus-green);
  line-height: 1;
}
.stat-firdaus .label {
  font-weight: 600;
  color: #5A6B5A;
  margin-top: 0.5rem;
}

/* Ekskul Icon */
.ekskul-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--firdaus-green), var(--firdaus-lime));
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* Footer */
.footer-firdaus {
  background: var(--firdaus-dark);
  color: #C8D8C8;
  padding-top: 4rem;
  margin-top: 4rem;
}
.footer-firdaus h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-firdaus a {
  color: #A8C4A8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-firdaus a:hover {
  color: var(--firdaus-lime);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
}

/* Visi Misi Box */
.visi-box {
  background: var(--firdaus-green);
  color: white;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.visi-box::after {
  content: '﷽';
  position: absolute;
  right: -10px;
  top: -10px;
  font-size: 8rem;
  opacity: 0.07;
  font-family: 'Amiri', serif;
}
.misi-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 12px;
}
.misi-list li i {
  color: var(--firdaus-green);
  margin-top: 4px;
}

/* Guru Card */
.guru-card {
  text-align: center;
  padding: 1.5rem;
}
.guru-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--firdaus-cream);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}
.guru-card .jabatan {
  font-size: 0.85rem;
  color: var(--firdaus-green);
  font-weight: 600;
  background: rgba(10,92,54,0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-firdaus { padding: 4rem 0 3rem; }
  .hero-firdaus h1 { font-size: 1.8rem; }
}
