/* ===== HERO SECTION ===== */
.hero {
  background-color: #0b0f0b;
  padding: 80px 10%;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* ===== PROFILE SECTION ===== */
.profile-section {
  margin-top: 60px;
  padding: 30px;
  border: 1px solid rgba(57, 255, 20, 0.18);
  border-radius: 14px;
  background: rgba(57, 255, 20, 0.04);
  box-shadow:
    0 0 16px rgba(57, 255, 20, 0.05),
    0 0 32px rgba(0, 0, 0, 0.22);
}

.profile-section h2 {
  margin-top: 0;
  margin-bottom: 18px;
  text-align: center;
}

.profile-section p {
  color: #c8c8c8;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: center;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.focus-card {
  border: 1px solid rgba(57, 255, 20, 0.16);
  background: rgba(57, 255, 20, 0.03);
  padding: 24px;
  border-radius: 12px;
  transition: 0.25s ease;
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 18px rgba(57, 255, 20, 0.06),
    0 0 30px rgba(0, 0, 0, 0.2);
}

.focus-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.focus-card p {
  color: #c8c8c8;
  line-height: 1.7;
  margin: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.stat-card {
  border: 1px solid rgba(57, 255, 20, 0.14);
  background: rgba(57, 255, 20, 0.03);
  padding: 22px;
  border-radius: 12px;
  text-align: center;
}

.stat-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1rem;
}

.stat-card p {
  margin: 0;
  color: #c8c8c8;
  line-height: 1.6;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 25px;
}

.interest-card {
  position: relative;
  min-height: 260px;
  max-height: 260px;
  border: 1px solid rgba(57, 255, 20, 0.14);
  background: rgba(57, 255, 20, 0.03);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.interest-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 18px rgba(57, 255, 20, 0.08),
    0 0 30px rgba(0, 0, 0, 0.25);
}

.interest-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.interest-card:hover .interest-image {
  opacity: 1.25;
  transform: scale(1);
}

.interest-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 24px;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 11, 0.88),
    rgba(11, 15, 11, 0.72)
  );
}

.interest-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #39ff14;
}

.interest-card p {
  margin: 0;
  color: #c8c8c8;
  line-height: 1.7;
}

/* ===== Green Glass Card ===== */
.hero-image {
  padding: 16px;
  border-radius: 22px;

  /* GLASS needs transparency */
  background: rgba(57, 255, 20, 0.08);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  /* “glass edge” + glow */
  border: 1px solid rgba(57, 255, 20, 0.18);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.65),
    0 0 28px rgba(57, 255, 20, 0.18);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.hero-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ONLY the image card hovers */
.hero-image:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.8),
    0 0 45px rgba(57, 255, 20, 0.35);
}

.hero-text {
  max-width: 600px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  color: #39FF14;
  margin-bottom: 10px;
}

.hero-text h3 {
  color: #C8C8C8;
  margin-bottom: 20px;
}

.hero-text p {
  color: #aaa;
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.hero-tags span {
  border: 1px solid #39ff14;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(57, 255, 20, 0.08);
  color: #39ff14;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.08);
}