* {
  color: #E5E7EB;
  font-family: helvetica;
  box-sizing: border-box;
}

a {
  color: #0763B5;
}

a:not(#website):not(#instagram):hover {
  text-decoration: underline;
}

body {
  background-color: #0E0E10;
  padding: 40px;
  font-weight: 200;
}

#summary-section {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto 40px auto;
}

.resume-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1140px;
  width: 100%;
  margin: 40px auto 0 auto;
  line-height: 1.6;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.column {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.left {
  max-width: 45%;
}

.right {
  max-width: 50%;
}

section {
  margin-bottom: 40px;
}

h2 {
  border-bottom: 2px solid #0763B5;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

ul {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.column h3 {
  margin-top: 20px;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 0;
}

.work-details, .program-details {
  font-size: 14px;
  margin-bottom: 16px;
  margin-top: 0;
  font-style: italic;
}

.hero {
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #E5E7EB;
  background-size: cover;
  background-position: center;
  height: 40vh;
  position: relative;
  display: flex;
  border-radius: 10px;
  padding: 0 40px;
}

.hero h1 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 80px;
  padding-bottom: 0;
  margin-bottom: 0;
  color: #0E0E10;
}

.hero p {
  color: #0E0E10;
}

#titles, #typed-text {
  font-weight: 100;
  text-transform: uppercase;
  margin: 0;
  font-size: 32px;
  color: #0E0E10;
  font-size: 45px;
}

#info {
  font-size: 18px;
  margin: 10px 0;
}

#socials {
  font-size: 18px;
  margin: 20px 0;
}

#info, #socials, a {
  text-decoration: none;
}

#website, #instagram, #about-link {
  border: 1px solid #0763B5;
  border-radius: 40px;
  padding: 6px 24px;
  margin: 0 10px;
  color: #0763B5;
  background-color: transparent;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
}

#website:hover, #instagram:hover, #about-link:hover {
  background-color: #0763B5;
  color: #E5E7EB;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 10px rgba(7, 99, 181, 0.3));
  text-decoration: none !important;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.badge:hover {
  transform: scale(1.08) rotate(1deg);
  filter: drop-shadow(0 4px 10px rgba(7, 99, 181, 0.3));
}

/* Responsive styles */

@media (max-width: 768px) {
  .resume-columns {
    flex-direction: column;
    padding: 0;
  }

  .left, .right {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 48px;
  }

  #titles, #typed-text {
    font-size: 18px;
  }

  #info, #socials {
    font-size: 16px;
  }

  h2 {
    font-size: 20px;
    margin-top: 0;
  }

  .column h3 {
    font-size: 18px;
  }

  .work-details, .program-details {
    font-size: 13px;
  }

  ul {
    font-size: 15px;
  }

  #website, #instagram {
    display: inline-block;
    margin: 10px 10px;
    font-size: 14px;
    padding: 5px 20px;
  }

  .badge {
    top: 10px;
    right: 10px;
    width: 50px;
  }

  #certifications {
    margin: 0;
  }

  #summary-section > h2 {
    text-align: left;
  }

  #summary-section {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  body {
    padding: 0 20px;
  }

  .hero {
    padding: 25px 20px;
    height: fit-content;
  }

  .hero h1 {
    font-size: 24px;
  }

  #titles, #typed-text {
    font-size: 14px;
  }

  #info, #socials {
    font-size: 12px;
  }

  h2 {
    font-size: 18px;
  }

  .column h3 {
    font-size: 14px;
  }

  .work-details, .program-details {
    font-size: 12px;
  }

  ul {
    font-size: 14px;
  }

  #website, #instagram {
    font-size: 12px;
    padding: 4px 18px;
  }

  .badge {
    width: 40px;
  }

  #summary-section {
    font-size: 14px;
  }

  .resume-columns {
    margin-top: 20px;
  }

  section {
    margin-bottom: 30px;
  }
}

/* Footer styles */
.site-footer {
  text-align: center;
  font-size: 14px;
  color: #E5E7EB;
  padding: 40px 0 20px;
  margin-top: 60px;
  border-top: 1px solid #1F2937;
  width: 100%;
  animation: fadeIn 1s ease;
}

.site-footer a {
  color: #0763B5;
  text-decoration: none;
  margin: 0 5px;
  display: inline-block;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .site-footer {
    font-size: 12px;
    padding: 30px 10px 20px;
  }

  .site-footer a {
    margin: 0 3px;
  }
}
.typewriter {
  font-size: 2.5rem;
  font-weight: 900;
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.15em solid transparent;
  width: fit-content;
  animation: typing 3s steps(20, end), blink-caret 0.75s step-end infinite;
}

.cursor {
  animation: blink-caret 0.75s step-end infinite;
  color: #0763B5;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  0%, 100% { opacity: 1 }
  50% { opacity: 0 }
}
