/* ===== HERO SECTION ===== */
#hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  flex: 1;
  padding: 0 80px;
}

/* --- LEFT COLUMN --- */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero-photo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #00f5c4, #6c63ff);
}

.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero-name {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

/* --- RIGHT COLUMN --- */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-welcome {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #a78bfa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  font-weight: 500;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00f5c4 0%, #38bdf8 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.3;
}

.hero-about {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, #00f5c4, #6c63ff);
  color: #0a0f1e;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  border-color: #00f5c4;
  color: #00f5c4;
  transform: translateY(-2px);
}

/* --- CREDENTIAL STRIP --- */
.hero-strip {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.strip-divider {
  color: rgba(255, 255, 255, 0.2);
}

.strip-badge {
  background: rgba(0, 245, 196, 0.12);
  color: #00f5c4;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 245, 196, 0.35);
  font-size: 0.8rem;
  font-weight: 500;
}

/* --- SECTION HEADING --- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px 0 36px 0;
}

.projects-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

.section-divider::before {
  content: '';
  height: 1px;
  width: 40px;
  background: #00f5c4;
  flex-shrink: 0;
}

.section-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(0,245,196,0.4), transparent);
}

.section-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: 60px 24px 32px;
    gap: 36px;
    text-align: center;
  }

  .hero-right {
    align-items: center;
  }

  .hero-about {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-name {
    font-size: 1.9rem;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-strip {
    padding: 14px 20px;
    gap: 8px 14px;
  }

  .strip-divider {
    display: none;
  }
}
