body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: black;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
}

p {
  line-height: 1.5;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

header {
  background-color: #9b00ff;
  padding: 8px 0;
  position: relative;
}

header h2 {
  margin: 0;
  padding-left: 20px;
  font-size: 22px;
  color: #ffffff;
}

header img {
  width: 90px;
  height: auto;
  display: block;
  margin: 0;
}

header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:hover {
  color: #ffcdfc;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #ffffff;
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.header-icons img {
  width: 36px;
}

@media (max-width: 767px) {
  .header-icons {
    display: none;
  }
}
.mobile-socials {
  margin-top: 40px;
  text-align: center;
}

.mobile-socials p {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.social-icons-mobile {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons-mobile img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-box {
  width: 38px;
  height: 38px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 20px;
  height: 20px;
}

.icon-box:hover {
  border-color: #ff00d0;
}

#hamburger {
  font-size: 32px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

#hamburger:hover {
  color: #ff00d0;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.overlay.open {
  display: flex;
}

#close {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.overlay li {
  margin: 20px 0;
}

.overlay a {
  color: white;
  font-size: 32px;
  text-decoration: none;
}

.overlay a:hover {
  color: #ff00d0;
}

@media (max-width: 767px) {
  header img {
    width: 70px;
  }
  .main-nav {
    display: none;
  }
  #hamburger {
    display: block;
  }
}
footer.footer {
  background-color: #9b00ff;
  padding: 10px 0;
  margin-top: 40px;
}

.footer_div_1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-name {
  margin: 0;
  font-size: 14px;
}

.footer p {
  color: #fff;
}

.footer_div_2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 767px) {
  .footer-right {
    display: none;
  }
}
.line-separator {
  width: 90%;
  margin: 50px auto;
  border: none;
  border-top: 3px solid #9b00ff;
}

#player-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.video-controls.hidden {
  display: none;
}

.video-controls {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 20px;
  background-image: linear-gradient(to bottom, rgba(155, 0, 255, 0.2), rgba(155, 0, 255, 0.6));
  display: flex;
  transition: all 0.2s ease-in-out;
}

.video-controls.hide {
  opacity: 0;
  pointer-events: none;
}

button {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.fa,
.fa-solid {
  color: #ffffff;
  font-size: 28px;
  margin-left: 20px;
}

.fa-volume-up {
  margin-left: auto;
}

/* Range Reset */
input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  cursor: pointer;
  width: 400px;
}

input[type=range]:focus {
  outline: none;
}

/* Chrome, Safari */
input[type=range]::-webkit-slider-runnable-track {
  background-color: #ff00d0;
  border-radius: 8px;
  height: 8px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -4px;
  background-color: #9b00ff;
  border-radius: 8px;
  height: 16px;
  width: 16px;
}

input[type=range]:focus::-webkit-slider-thumb {
  outline: 3px solid #9b00ff;
  outline-offset: 2px;
}

/* Firefox */
input[type=range]::-moz-range-track {
  background-color: #ff00d0;
  border-radius: 8px;
  height: 8px;
}

input[type=range]::-moz-range-thumb {
  background-color: #9b00ff;
  border: none;
  border-radius: 8px;
  height: 16px;
  width: 16px;
}

input[type=range]:focus::-moz-range-thumb {
  outline: 3px solid #9b00ff;
  outline-offset: 2px;
}

.intro {
  text-align: center;
  margin-top: 10px;
}

.intro-title {
  font-size: 34px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

.intro-subtext {
  font-size: 20px;
  margin-bottom: 50px;
}

.intro-video-wrap {
  width: 75%;
  margin: 0 auto;
}

.intro-video {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .intro-video {
    width: 100%;
    height: auto;
  }
  .intro-video-wrap {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
.section-title {
  text-align: center;
  font-size: 22px;
  margin: 20px 0;
}

.about-text, .skills-text {
  font-size: 15px;
  line-height: 1.5;
  padding: 20px;
}

.about-section,
.skills-section {
  padding: 45px 0;
}

.about-wrapper {
  background-color: rgba(155, 0, 255, 0.13);
  border-radius: 35px;
  padding: 34px;
  margin: 10px 0 45px;
  border: 2px solid rgba(155, 0, 255, 0.18);
}

/* Photo frames */
.about-image-box,
.skills-image-box {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 26px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image */
.about-img {
  width: 100%;
  max-width: 280px;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-text,
.skills-text {
  font-size: 15px;
  line-height: 1.7;
}

.about-text p,
.skills-text p {
  margin: 0 0 14px;
}

.about-text {
  padding-left: 28px;
}

.skills-text {
  padding-right: 28px;
}

@media (max-width: 767px) {
  .about-wrapper {
    padding: 22px;
    border-radius: 28px;
  }
  .about-image-box,
  .skills-image-box,
  .about-text,
  .skills-text {
    grid-column: 1/-1;
  }
  .about-text,
  .skills-text {
    padding-left: 0;
    padding-right: 0;
    margin-top: 18px;
  }
  .skills-image-box {
    margin-top: 18px;
  }
}
.projects-section {
  padding: 40px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  justify-items: center;
  margin-top: 30px;
}

.project-item {
  text-align: center;
}

.project-box {
  width: 300px;
  height: 300px;
  background-color: rgba(155, 0, 255, 0.1333333333);
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.project-box:hover {
  transform: scale(1.05);
}

.project-img {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-label {
  margin-top: 10px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .project-box {
    width: 240px;
    height: 240px;
  }
  .project-img {
    width: 180px;
    height: 180px;
  }
}
.social-icon {
  width: 50px;
  height: auto;
  background-color: #9b00ff;
  padding: 5px;
  border-radius: 30%;
  cursor: pointer;
}

.contact-content {
  background-color: #ffffff;
  padding: 40px 20px;
}

.contact-box {
  background-color: #9b00ff;
  border: #ff00d0 10px solid;
  border-radius: 30px;
  padding: 40px;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.contact-box h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-box label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.contact-box button {
  background-color: #ffffff;
  color: #9b00ff;
  font-size: 18px;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.contact-box button:hover {
  background-color: #f2f2f2;
}

.contact-extra {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.social-section {
  text-align: center;
  margin-bottom: 50px;
}

.social-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.github-section {
  text-align: center;
  margin-bottom: 60px;
}

.github-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.github-btn {
  background-color: #9b00ff;
  color: #ffffff;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.github-btn:hover {
  background-color: #ff00d0;
}

@media (max-width: 767px) {
  .social-row {
    gap: 25px;
  }
  .github-btn {
    width: 70%;
    max-width: 260px;
  }
}
.single-project-section {
  padding: 40px 0 60px;
}

.subsection-title {
  text-align: center;
  font-size: 18px;
  margin: 10px 0 25px;
}

.project-hero-box {
  max-width: 700px;
  height: 400px;
  margin: 30px auto 40px;
  background-color: rgba(155, 0, 255, 0.1333333333);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.project-hero-box img {
  height: 300px;
}

.project-hero-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.project-small-image-wrap {
  display: flex;
  justify-content: center;
}

.project-small-image-box {
  width: 220px;
  height: 220px;
  background-color: rgba(155, 0, 255, 0.1333333333);
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.project-small-img {
  max-width: 90%;
  border-radius: 18px;
  height: auto;
}

.project-about-text {
  font-size: 14px;
  line-height: 1.5;
}

.project-info {
  grid-column: 1/-1;
  max-width: 750px;
  margin: 0 auto 40px;
}

.project-info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-bottom: 24px;
}

.project-info-label {
  font-weight: 600;
  font-size: 18px;
}

.project-info-text {
  font-size: 14px;
}

.project-info-text p {
  margin: 0 0 4px;
}

.project-goal-text {
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 14px;
  line-height: 1.5;
}

.project-mockup-large {
  max-width: 900px;
  height: 500px;
  border-radius: 18px;
  margin: 40px auto;
  background-color: rgba(155, 0, 255, 0.1333333333);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.project-large-img {
  max-width: 90%;
  height: auto;
}

.project-buttons-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.project-btn {
  display: block;
  width: 260px;
  margin: 0 auto 15px;
  padding: 14px 0;
  background-color: #9b00ff;
  border-radius: 10px;
  border: 1px solid rgba(155, 0, 255, 0.1333333333);
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
}

.project-btn:hover {
  background-color: rgba(155, 0, 255, 0.1333333333);
  color: #ffffff;
}

@media (max-width: 767px) {
  .project-hero-box {
    height: 220px;
    margin-top: 20px;
  }
  .project-small-image-box {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
  }
  .project-about-text {
    grid-column: 1/-1;
    padding: 0 20px;
  }
  .project-info {
    padding: 0 20px;
  }
  .project-info-row {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .project-info-label {
    font-size: 16px;
  }
  .project-mockup-large {
    height: 360px;
    margin: 30px auto;
  }
  .project-goal-text {
    padding: 0 20px;
  }
}
.beats-section {
  padding: 45px 0;
}

/* Intro container */
.beats-intro-box {
  background-color: rgba(155, 0, 255, 0.13);
  border-radius: 35px;
  padding: 34px;
  margin: 10px 0 45px;
  border: 2px solid rgba(155, 0, 255, 0.18);
}

/* Photo frame */
.beats-photo-box {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 26px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beats-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Text */
.beats-intro-text {
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.7;
}

.beats-intro-text p {
  margin: 0 0 14px;
}

.beats-intro-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

/* Ableton screenshot */
.beats-work-box {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.beats-work-img {
  width: 100%;
  max-width: 820px;
  border-radius: 22px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 12px;
  border: 2px solid rgba(155, 0, 255, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* Beats title */
.beats-grid-title {
  text-align: center;
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.2;
}

/* Beat cards */
.beat-card {
  background-color: rgba(155, 0, 255, 0.13);
  border-radius: 28px;
  padding: 24px 22px;
  margin-top: 20px;
  text-align: center;
  border: 2px solid rgba(155, 0, 255, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease;
}

.beat-card:hover {
  transform: scale(1.02);
}

.beat-title {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.2;
}

/* Audio player */
.beat-audio {
  width: 100%;
}

/* Beat cover */
.beat-cover {
  margin-top: 18px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  padding: 14px;
  border: 2px solid rgba(155, 0, 255, 0.18);
}

.beat-cover-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
  display: block;
  transition: transform 0.22s ease;
}

.beat-cover-img:hover {
  transform: scale(1.02);
}

/* Mobile */
@media (max-width: 767px) {
  .beats-intro-box {
    padding: 22px;
    border-radius: 28px;
  }
  .beats-photo-box,
  .beats-intro-text {
    grid-column: 1/-1;
  }
  .beats-intro-text {
    padding-left: 0;
    margin-top: 18px;
  }
  .beats-intro-title {
    text-align: center;
    font-size: 20px;
  }
  /* Hide Ableton screenshot on mobile */
  .beats-work-box {
    display: none;
  }
  .beat-cover {
    padding: 12px;
  }
}
.resume-button-wrap {
  text-align: center;
  margin-top: 35px;
}

.resume-button {
  display: inline-block;
  background-color: #9b00ff;
  padding: 16px 38px;
  border-radius: 28px;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.resume-button:hover {
  background-color: #ff00d0;
  transform: scale(1.04);
}

.resume-section {
  padding: 45px 0;
}

.resume-viewer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.resume-pdf {
  width: 100%;
  max-width: 900px;
  height: 1100px;
  border-radius: 28px;
  border: 2px solid rgba(155, 0, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.resume-download-wrap {
  text-align: center;
  margin-top: 30px;
}/*# sourceMappingURL=main.css.map */