* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
  background: #050814;
  color: #eaeaea;
  overflow-x: hidden;
}

/* BACKGROUND BLOBS */
.bg-blur {
  position: fixed;
  width: 450px;
  height: 450px;
  filter: blur(150px);
  opacity: 0.55;
  z-index: -1;
}

.bg-blur.one {
  background: #7f5af0;
  top: -150px;
  left: -150px;
}

.bg-blur.two {
  background: #2cb67d;
  bottom: -150px;
  right: -150px;
}

/* HERO */
.hero {
  padding: 100px 8% 80px;
  max-width: 1100px;
  margin: auto;
}

.badge {
  padding: 7px 16px;
  background: linear-gradient(90deg, #7f5af0, #2cb67d);
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 3.8rem;
}

.subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-top: 10px;
}

.hero-text {
  max-width: 680px;
  margin-top: 20px;
  line-height: 1.7;
  opacity: 0.85;
}

/* HERO ACTIONS */
.hero-actions {
  margin-top: 28px;
}

/* RESUME BUTTON */
.resume-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #7f5af0, #2cb67d);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.resume-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

/* SECTIONS */
.section {
  padding: 30px 8%;
  max-width: 1000px;
  margin: auto;
}

.section.alt {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 36px;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.section-desc {
  opacity: 0.8;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* VIDEOS */
iframe {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* RESUME LIST */
.resume-list {
  margin-top: 20px;
  padding-left: 20px;
}

.resume-list li {
  margin-bottom: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* FOOTER */
footer {
  padding: 55px 20px;
  text-align: center;
  opacity: 0.5;
  font-size: 0.9rem;
}

.linkedin-btn {
  display: inline-block;
  padding: 14px 32px;
  margin-left: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a66c2, #004182);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.linkedin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

/* BASE HEADING DIVIDER */
.heading-divider {
  height: 3px;
  margin: 14px 0 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7f5af0, #2cb67d);
}

/* SHORT TITLES */
.heading-divider.esm {
  width: 80px;
}

.heading-divider.sm {
  width: 150px;
}

/* MEDIUM TITLES */
.heading-divider.md {
  width: 360px;
}

/* LONG TITLES */
.heading-divider.lg {
  width: 660px;
}

/* SKILLS SECTION */
.section.skill {
  padding: 30px 2%;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.skill-pill {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #eaeaea;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}

.skill-pill:hover {
  background: linear-gradient(90deg, #7f5af0, #2cb67d);
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE (MOBILE & TABLET)
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  iframe {
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 70px 6% 60px;
  }

  .linkedin-btn {
    margin-top: 15px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .resume-btn,
  .linkedin-btn {
    margin-left: 0;
    width: fit-content;
  }

  .section {
    padding: 50px 6%;
  }

  .section h2 {
    font-size: 1.7rem;
  }

  iframe {
    height: 260px;
  }

  .resume-list {
    padding-left: 16px;
  }

  .section.skill {
    padding: 50px 6%;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  iframe {
    height: 220px;
  }

  footer {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .heading-divider {
    width: 50%;
    max-width: 180px;
    min-width: 70px;
  }

  .heading-divider.esm {
    width: 40px;
  }

  .heading-divider.sm {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .heading-divider {
    width: 60%;
    max-width: 150px;
    min-width: 60px;
  }
}