*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.55;
}

/* ------- Utilities ------- */
a { text-decoration: none; color: inherit; }

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  background: #000;
  color: #fff;
  transition: background 0.25s ease;
}
.btn:hover { background: #3b0fa3; }

.gradient-text {
  background: linear-gradient(90deg, #d6001c 0%, #3b0fa3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

/* Simple icon placeholder */
.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background: #000;
  mask: url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xOC44IDRIMTQuOGEtMi41IDIuNSAwIDAgMC0yLjUgMi41djE0YTEuNSAxLjUgMCAwIDEgMyAwVjExSDIwVjYuNWEyLjUgMi41IDAgMCAwLTIuNS0yLjV6TTE0LjUgMEMxMS4yOSAwIDkgMi4yOSA5IDUuNUM5IDguNzEgMTEuMjkgMTEgMTQuNSAxMWMzLjIxIDAgNS41LTIuMjkgNS41LTUuNUMyMCAyLjI5IDE3LjcxIDAgMTQuNSAwem0wIDcuNWMtMS4xNiAwLTIuMS0uOTQtMi4xLTJzLjk0LTIgMi4xLTJjMS4xNiAwIDIuMS45NCAyLjEgMnMtLjk0IDItMi4xIDJ6Ii8+PC9zdmc+'); 
  mask-size: contain;
  mask-repeat: no-repeat;
}
.icon--email-large { width: 32px; height: 32px; vertical-align: middle; }

/* ------- HERO ------- */
.hero { padding: 70px 0 0; }

.hero__media-mobile{display:none}
.hero__inner {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 0%;
  align-items: center;
}

.hero__text { flex: 1 1 45%; }

.hero__headline {
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 1.1;
}
.hero__name { font-weight: 800; }

.hero__subtitle { margin: 20px 0 18px; font-size: 2rem; text-wrap: nowrap;}
.hero__school   { font-weight: 600; }
.email    { height: 2rem; display:block; margin-bottom: 20px}

.hero__media { flex: 1 1 50%; text-align: right; }
.hero__portrait {
  width: 80%;
  max-width: 150%;
  /* border-radius: 6px; */
  object-fit: cover;
  display: inline-block;
  bottom: -8px;
  position: relative;
}

/* divider */
.hero__divider-wrap {
  width: 92%;
  max-width: 1400px;
  margin: 0px auto 0;
}
.hero__divider {
  height: 6px;
  border: 0;
  width: 100%;
  background: linear-gradient(90deg, #d6001c 0%, #3b0fa3 100%);
  border-radius: 3px;
}

/* ------- TAGLINE ------- */
.tagline { text-align: center; padding: 38px 0 52px; }
.tagline__text {
  font-size: 3rem;
  font-weight: 700;
  font-style: normal;
}

/* ------- ABOUT ------- */
.about { padding: 60px 0 80px; }
.about__inner {
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 6%;
  align-items: center;
}

.about__profile { flex: 1 1 36%; text-align: center; }
.about__image-wrap { width: 300px; height: 300px; margin: 0 auto 32px; }
.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__name { font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; }

.about__details { flex: 1 1 58%; }

.about__motto {
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.32;
}

.about__paragraph {
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 650px;
}

.about__internships {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
  vertical-align: center;
}
.about__internships-count {
  font-size: 3rem;
  font-weight: 800;
  margin-right: 6px;
}

/* ------- SKILLS / EXPERIENCE ------- */
.skills {
  background: linear-gradient(135deg, #d6001c 0%, #3b0fa3 100%);
  color: #fff;
  padding: 110px 0 140px;
}

.skills__inner {
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 8%;
}

.skills__summary { flex: 1 1 38%; }

.skills__label      { font-size: 0.9rem; font-weight: 600; opacity: 0.7; margin-bottom: 16px; }
.skills__headline    { font-size: 2.2rem; font-weight: 800; margin-bottom: 28px; }
.skills__description { font-size: 1rem; margin-bottom: 44px; max-width: 460px; }

.timeline {
  flex: 1 1 44%;
  list-style: none;
}
.timeline__item + .timeline__item { margin-top: 48px; }

.timeline__date    { font-size: 1rem; font-weight: 600; opacity: 0.85; }
.timeline__company { font-size: 0.75rem; opacity: 0.75; }
.timeline__title   { font-size: 1.25rem; font-weight: 800; margin-top: 6px; line-height: 1.32; }

/* ------- CONTACT ------- */
.contact { padding: 110px 0 130px; text-align: center; }

.contact__headline { font-size: 2.2rem; font-weight: 800; margin-bottom: 34px; }
.contact__text     { font-size: 1rem; margin-bottom: 36px; }
.contact__email    { font-size: 1.35rem; font-weight: 700; margin-bottom: 26px; }
.contact__or       { font-size: 0.95rem; margin-bottom: 20px; }

/* ------- Responsive Tweaks (desktop-first) ------- */

@media (max-width: 992px) {
  .hero__inner,
  .about__inner,
  .skills__inner { flex-direction: column; text-align: center; }
  .hero__media { margin-top: 40px; }
  .about__profile{ margin-bottom: 30px;}
  .about__name,.about__image,.about__image-wrap{display:none}
  .about{padding-top: 0px}
  .email{margin: 0 auto; margin-bottom: 20px}
  .hero__subtitle{font-size:1.5rem}
  .tagline__text{font-size:2rem}
  .hero__linkedin{display:none}
  .hero__media-mobile{display:block; margin-bottom: 30px}
  .greeting{display:none}
  .hero__name{text-wrap: nowrap; font-size: 3rem}
  .hero__media{display:none}
  .skills__description{margin: 30px auto}
  #contactme{margin: 0 auto; margin-bottom: 30px}
}

@media (max-width: 667px) {

  .hero__name{text-wrap: nowrap; font-size: 2rem}
  .hero__subtitle{font-size:1rem}
  .hero__media{display:none}
  #contactme{display:none}
  .tagline{padding-bottom: 0px}
  .skills{padding-top: 60px; padding-bottom: 60px}
}

@media (max-width: 400px) {

  .hero__name{text-wrap: nowrap; font-size: 1.4rem}
  .hero__subtitle{font-size:1rem}
  .hero__media{display:none}
  .timeline__company{display:none}
  .btn--linkedin-large{width: 80%}
  .contact__text{width: 80%; margin: 20px auto}
  .email{width: 80%; height: auto}
}