@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Inter:wght@300;400;500&display=swap");

/* =============== GLOBAL LAYOUT =============== */

body {
  margin: 0;
  padding: 0;
  background: #fcf4e6;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* Soft, ultra-light starfield */
.stars {
  position: fixed;
  width: 200vw;
  height: 200vh;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.07; /* MUCH lighter so it doesn't dirty the white */
  animation: drift 70s linear infinite;
  transform: translate(-25vw, -25vh);
}

@keyframes drift {
  0% {
    transform: translate(-25vw, -25vh);
  }
  100% {
    transform: translate(-5vw, -5vh);
  }
}

.container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}

/* =============== HEADER SECTION =============== */

.header-block {
  text-align: center;
  margin-bottom: 50px;
}

.headshot {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4aa3ff;
  box-shadow: 0 0 10px rgba(74, 163, 255, 0.25); /* softer glow */
  margin: 0 auto 18px auto;
  display: block;
}

.title {
  font-family: "Orbitron", sans-serif;
  font-size: 46px;
  color: #4aa3ff;
  text-shadow: 0 0 8px rgba(74, 163, 255, 0.35); /* softer neon */
  margin-bottom: 6px;
}

.subtitle {
  font-size: 16px;
  color: #6f7a85;
  margin-bottom: 35px;
}

/* =============== SECTION PANELS =============== */

.section {
  background: rgba(255, 255, 255, 0.75); /* lighter glass panel */
  padding: 22px;
  margin-bottom: 40px;
  border-left: 4px solid #4aa3ff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05); /* modern soft shadow */
}

.section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  color: #4aa3ff;
  margin-top: 0;
}
.section p {
  font-size: 20px;
}

/* Links */
a {
  color: #2f8fff;
  text-decoration: none;
}

a:hover {
  text-shadow: 0 0 6px rgba(47, 143, 255, 0.6);
}

/* =============== CARD GRID =============== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* wider cards */
  gap: 26px;
}

.card p {
  font-size: 20px; /* bigger text */
  line-height: 1.45;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #c7e2ff;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

/* Card images */
.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 0 8px rgba(74, 163, 255, 0.15);
}

/* Card links */
.card-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.card-links a {
  color: #2f8fff;
  font-weight: 600;
}

/* =============== AKEER FOUNDATION CARD =============== */

.akeer-wide-card {
  background: rgba(255, 255, 255, 0.82);
  padding: 26px;
  border-radius: 10px;
  border: 1px solid #c7e2ff;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  font-size: 20px; /* bigger text */
}

.akeer-image {
  width: 90%;
  max-height: 360px;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(74, 163, 255, 0.18);
}

.akeer-button {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(74, 163, 255, 0.18);
  border: 1px solid #4aa3ff;
  border-radius: 6px;
  color: #4aa3ff;
  font-family: "Orbitron", sans-serif;
  transition: 0.25s;
}

.akeer-button:hover {
  background: rgba(74, 163, 255, 0.3);
  box-shadow: 0 0 8px rgba(74, 163, 255, 0.4);
}

/* =============== AUDIO PLAYER =============== */

.audio-block {
  margin-top: 12px;
  text-align: center;
}

.audio-player {
  width: 100%;
  max-width: 360px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(74, 163, 255, 0.18);
}
