/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* Colors */
:root {
  --primary-green: #2ecc71;
  --light-green: #d4f1d4;
  --dark-green: #27ae60;
  --white: #ffffff;
  --gray: #666666;
}
/* --- Reset & base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

/* --- Navbar --- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e7d32; /* deep green */
  cursor: pointer;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links > li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #2e7d32;
}

/* --- Dropdown --- */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #333;
  font-weight: 400;
}

.dropdown-menu li a:hover {
  background-color: #e8f5e9; /* light green hover */
  color: #2e7d32;
}


.login-redirect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.login-redirect h2 {
  color: #1e7f3e;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.login-redirect .buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.login-redirect button {
  background-color: #1e7f3e;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.login-redirect button:hover {
  background-color: #16632a;
}

/* --- Mobile responsive --- */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 8px 16px #145a32;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links li a {
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }

  .nav-links.show {
    display: flex;
  }
}

.profile-menu {
  position: relative;
  margin-left: 1.5rem;
}
/* --- Profile Icon (SVG) --- */
.profile-menu {
  position: relative;
  margin-left: 1.5rem;
}

.profile-btn {
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.profile-btn:hover {
  background-color: #e8f5e9;
}

.profile-icon {
  width: 22px;
  height: 22px;
  stroke: #2e7d32;
  fill: none;
  stroke-width: 1.8;
}

/* Dropdown */
.profile-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 130%;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
}

.profile-dropdown li {
  list-style: none;
}

.profile-dropdown a {
  display: block;
  padding: 0.9rem 1.2rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.profile-dropdown a:hover {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.profile-menu:hover .profile-dropdown {
  display: block;
}

/* Button */
.profile-btn {
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  cursor: pointer;
}

/* Dropdown */
.profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px); /* tiny spacing */
  background: #fff;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: 1000;
}

/* 🔥 INVISIBLE HOVER BRIDGE */
.profile-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 100%;
  height: 10px;
}

/* Show dropdown when hovering anywhere */
.profile-menu:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   HERO SECTION
========================= */

.hero {
  background: linear-gradient(180deg, #ffffff, #f4fff8);
  padding: 5rem 2rem;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

/* Text */
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #27ae60;
  margin-bottom: 0.8rem;
}

.hero-text h1 {
  font-size: 3rem;
  color: #145a32;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(39,174,96,0.4);
}

/* Image */
.hero-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: auto auto 2rem;
  }

  .hero-image img {
    height: 420px;
  }
}
/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Slides */
.slides .slide {
  display: none;
  position: relative;
}

.slides .slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

.slides img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Slide Text Overlay */
.slides .slide-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: textSlide 1s forwards;
}

.slides .slide.active .slide-content {
  animation: textSlide 1s forwards;
}

.slides .slide-content .tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2ecc71;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.slides .slide-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.slides .slide-content p {
  font-size: 1rem;
  color: #f0fdf4;
}

/* Animations */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes textSlide {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .slides img { height: 300px; }
  .slides .slide-content { bottom: 20px; left: 20px; }
  .slides .slide-content h2 { font-size: 1.4rem; }
  .slides .slide-content p { font-size: 0.9rem; }
}

/* Content Section */
.content-section {
  padding: 3rem 2rem;
  background: var(--white);
}

.content-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-green);
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: var(--light-green);
  padding: 1.5rem;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.card a {
  color: var(--dark-green);
  font-weight: 500;
  text-decoration: none;
}

/* Featured Modern Section */
.featured-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #ffffff, #eef9f1);
  display: flex;
  justify-content: center;
}

.featured-card {
  max-width: 1100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.featured-image {
  position: relative;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(39, 174, 96, 0.6),
    rgba(0,0,0,0.2)
  );
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content .tag {
  color: #27ae60;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.featured-content h2 {
  font-size: 2.4rem;
  color: #145a32;
  margin-bottom: 1rem;
}

.featured-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn {
  width: fit-content;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(39,174,96,0.4);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 2rem;
  }
}
/* Alternate layout */
.featured-card.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.featured-card.reverse .featured-content {
  direction: ltr;
}

/* Small Featured Section */
.featured-mini {
  padding: 3rem 2rem;
  background: #f6fff8;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #145a32;
  margin-bottom: 2rem;
}

.mini-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);/*4 cards per row*/
  gap: 1.5rem;
}

.mini-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(39,174,96,0.25);
}

.mini-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.mini-content {
  padding: 1rem 1.2rem;
}

.mini-content span {
  font-size: 0.75rem;
  color: #27ae60;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mini-content h3 {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  color: #145a32;
}

.mini-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.8rem;
}

.mini-content a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #27ae60;
}

/* =========================
   CARD ENTRY ANIMATION
========================= */

.mini-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* stagger effect */
.mini-card:nth-child(1) { animation-delay: 0.1s; }
.mini-card:nth-child(2) { animation-delay: 0.2s; }
.mini-card:nth-child(3) { animation-delay: 0.3s; }
.mini-card:nth-child(4) { animation-delay: 0.4s; }
.mini-card:nth-child(5) { animation-delay: 0.5s; }
.mini-card:nth-child(6) { animation-delay: 0.6s; }
.mini-card:nth-child(7) { animation-delay: 0.7s; }
.mini-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   MODERN GLOW EFFECT
========================= */

.mini-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* soft professional glow */
.mini-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 30px rgba(39, 174, 96, 0.18),
    0 0 0 1px rgba(39, 174, 96, 0.12);
}
.mini-card img {
  transition: transform 0.5s ease;
}

.mini-card:hover img {
  transform: scale(1.05);
}

.mini-card a {
  position: relative;
  color: #1e7f3e;
  font-weight: 600;
}

.mini-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #27ae60;
  transition: width 0.3s ease;
}

.mini-card:hover a::after {
  width: 100%;
}

@media (max-width: 768px) {
  .mini-card:hover {
    transform: none;
    box-shadow:
      0 8px 24px rgba(0,0,0,0.08);
  }

  .mini-card:hover img {
    transform: none;
  }
}
/* =========================
   GLASSMORPHISM CARDS
========================= */

.mini-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.mini-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.75);

  box-shadow:
    0 14px 36px rgba(39, 174, 96, 0.18),
    inset 0 0 0 1px rgba(39, 174, 96, 0.15);
}

.mini-card img {
  transition: transform 0.5s ease;
}

.mini-card:hover img {
  transform: scale(1.06);
}

.mini-content {
  padding: 1.2rem;
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.4),
    transparent
  );
}

.mini-card a {
  color: #1e7f3e;
  font-weight: 600;
  position: relative;
}

.mini-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #27ae60;
  transition: width 0.3s ease;
}

.mini-card:hover a::after {
  width: 100%;
}

@media (max-width: 768px) {
  .mini-card {
    backdrop-filter: blur(8px);
  }

  .mini-card:hover {
    transform: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  }

  .mini-card:hover img {
    transform: none;
  }
}

/* =========================
   FEATURED HIGHLIGHTS GRID
========================= */

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mini-grid {
    grid-template-columns: 1fr;
  }
}

/* Portrait Image Section */
.image-feature {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
}

.image-wrapper {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* Text */
.image-text .tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #27ae60;
}

.image-text h2 {
  font-size: 2.2rem;
  color: #145a32;
  margin-bottom: 1rem;
}

.image-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Mobile */
@media (max-width: 900px) {
  .image-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-wrapper img {
    height: 420px;
  }

  .image-text h2 {
    font-size: 1.8rem;
  }
}

/* Reverse Image Section (image on right) */
.image-feature.reverse {
  grid-template-columns: 1fr 320px; /* text left, image right */
}

.image-feature.reverse .image-wrapper {
  order: 2; /* ensures image is visually second */
}

.image-feature.reverse .image-text {
  order: 1; /* text stays first */
}

/* Mobile still stacks nicely */
@media (max-width: 900px) {
  .image-feature.reverse {
    grid-template-columns: 1fr;
  }

  .image-feature.reverse .image-wrapper img {
    height: 420px;
  }

  .image-feature.reverse .image-text h2 {
    font-size: 1.8rem;
  }
}

/* Portrait Mirrored Section */
.image-feature.reverse-portrait {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 320px; /* text left, image right */
  gap: 3rem;
  align-items: center;
  direction: rtl; /* flip order */
}

.image-feature.reverse-portrait .image-text {
  direction: ltr; /* text stays normal */
}

/* Portrait image style */
.image-feature.reverse-portrait .image-wrapper {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-feature.reverse-portrait .image-wrapper img {
  width: 100%;
  height: 560px; /* portrait tall */
  object-fit: cover;
  display: block;
}

/* Text */
.image-feature.reverse-portrait .image-text .tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #27ae60;
}

.image-feature.reverse-portrait .image-text h2 {
  font-size: 2.2rem;
  color: #145a32;
  margin-bottom: 1rem;
}

.image-feature.reverse-portrait .image-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .image-feature.reverse-portrait {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-feature.reverse-portrait .image-wrapper img {
    height: 420px;
  }

  .image-feature.reverse-portrait .image-text h2 {
    font-size: 1.8rem;
  }
}


/* Optional: give section a bit more breathing room */
.image-feature.reverse {
  margin-top: 8rem;
}

.quran-quote {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  position: relative;
}

.quran-quote-card {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #145a32, #27ae60);
  border-radius: 16px;
  padding: 2rem 2rem 2rem 5rem; /* extra left space for floating icon */
  box-shadow: 0 10px 25px rgba(39,174,96,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quran-quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(39,174,96,0.5);
}

/* Floating Icon */
.quran-quote-img {
  position: absolute;
  left: -40px;  /* float outside the card */
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  overflow: hidden;
}

.quran-quote-img img {
  width: 60%;
  height: 60%;
  object-fit:contain;
}

/* Text */
.quran-quote-text blockquote {
  color: #fff;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
}
/* quran-quote */
.quran-quote-text blockquote span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #e0f7e9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .quran-quote-card {
    flex-direction: column;
    padding: 2rem 2rem 2rem 2rem;
    text-align: center;
  }

  .quran-quote-img {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }
}

/* --- Modern Footer --- */
footer {
  background: #145a32; /* dark green for footer */
  color: #f0fdf4; /* soft off-white */
  text-align: center;
  padding: 2rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: #2ecc71;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
}
/* === Character Section === */
.character-section {
  background: #f8fbf9;
  padding: 6rem 1.5rem;
}

.character-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  color: #1e7f3e;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #145a32;
  margin-bottom: 1rem;
}

.section-header p {
  color: #555;
  line-height: 1.6;
}

/* Grid */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Cards */
.character-card {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.character-card h3 {
  color: #1e7f3e;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.character-card p {
  color: #555;
  line-height: 1.6;
}

/* Hover effect */
.character-card:hover {
  transform: translateY(-6px);
  border-color: #cde9d8;
  box-shadow: 0 20px 40px rgba(30, 127, 62, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.9rem;
  }

  .character-section {
    padding: 4rem 1.2rem;
  }
}