@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Karla:ital,wght@0,200..800;1,200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    background-color: #F4F3F2;
  }
  .mobile-nav-toggle {
    display: none;
    position: fixed;
    right: 1rem;
    padding: 0rem 0rem;
    border: none;
    background: none;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
    z-index: 1001;
  }
  @media (max-width: 768px) {
    #about-page .section-title {
      margin-bottom: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    @media (max-width: 768px) {
      .title,
      .section-title {
        margin-top: 80px;
      }
      .mobile-nav-toggle {
        display: block;
        
      }
    }
    @media (max-width: 768px) {
      .profile-animate {
        animation: profileScaleIn 1..5s ease-out forwards !important;
        animation-delay: 0.5s !important;
        animation-fill-mode: both;
      }
    }
    .nav-wrapper {
      flex-direction: row;
      align-items: right;
      padding: 1rem;
      
    }
    .divider {
      display: none !important;
    }
    
  
    .nav-bar {
      display: none;
      flex-direction: column;
      align-items: center;
      background: white;
      position: fixed;
      top:0px;
      left: 0;
      padding-top: 80px;
      right: 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      z-index: 1000;
      animation: none !important;
      transition: none !important;
    }
  
    .nav-bar.active {
      display: flex;
      background: white;
    }
  
    nav a {
      padding: 30px;
      font-size: 16px;
    }
   
    
  }
  
  
  @keyframes fadeOutPage {
    from { opacity: 1; }
    to { opacity: 0; }
  }
  
  @keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  #content {
    animation: fadeInPage 1.5s ease-in-out;
  }
  
  .fade-out {
    animation: fadeOutPage 2.5s ease-in-out forwards;
  }
  
  
  @keyframes appear {
    from {
      opacity: 0;
      transform: scale(0.95) translateY(20px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  @keyframes appeared {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes profileScaleIn {
    from {
      transform: scale(1.05);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes nameScaleOut {
    from {
      transform: scale(0.96);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .scroll-animate {
    animation: appear 1.2s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 45%;
  }
 
  .nav-animate {
    animation: appeared 1.8s ease-out forwards;
    animation-delay: 2s;
    animation-fill-mode: both;
  }
  
  .name-animate {
    animation: nameScaleOut 1s ease-out forwards;
    animation-delay: 0.5s;
    animation-fill-mode: both;
  }
  
  .title-animate {
    animation: appeared3 1s ease-out forwards;
    animation-delay: 1.5s;
    animation-fill-mode: both;
  }
  
  .profile-animate {
    animation: profileScaleIn 1.8s ease-out forwards;
    animation-delay: 2.3s;
    animation-fill-mode: both;
  }
  .div-animate {
    animation: fadeInPage 1.8s ease-out forwards;
    animation-delay: 2s;
    animation-fill-mode: both;
  }
  
  header {
    position: relative;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 1.4rem;
    padding-bottom: 2rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    
  }
  nav a {
    text-decoration: none;
    color: #101010;
    padding: 16px 30px;
    border: 1.5px solid #c3c3c3;
    border-radius: 50px;
    background-color: transparent;
    transition: 
      border 0.3s ease, 
      color 0.3s ease, 
      background-color 0.5s ease-out; 
    }
  nav a:hover {
    border: 1.5px solid #5ba8ff;
    color: #5ba8ff;
  }
  .nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .divider {
    border-top: 2px solid #B0B0B0;
    margin: 4px auto 40px auto;
    width: calc(100% - 150px);
    max-width: 650px;
  }
 .divider_small {
  border-top: 2px solid #B0B0B0;
  margin: 10px auto 28px auto;
  max-width: 40px;
  }
  .empty-div {
    height: 250px;
    width: 100%;
    background-color: transparent;
  }
  
  .banner-img {
    height: 60px;
  }

  .name {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 10px;
    font-weight: 250;
    padding: 10px 30px;
    text-align: center;
    font-size: 48px;
    margin: 40px 0 20px 0;
  }
  

  .profile-container {
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 1.3px;
    font-weight: 330;
    text-align: center;
    font-size: 17px;
    margin: 4px auto 40px auto;
    width: calc(100% - 150px);
    max-width: 650px;
    line-height: 2;
  }
  
  .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccc;
  }
  
  .title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 380;
    letter-spacing: 8px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 80px;
  }
  @media (max-width: 768px) {
    footer {
      font-size: 14px;
      padding: 12px;
    }
    footer .footer-content {
      flex-direction: row;
      align-items: center;
      text-align: center;
      gap: 8px;
    }
    .footer-content span {
      font-size: 14px;
    }
    .linkedin-icon {
      width: 18px;
      height: 18px;
    }
  }
  
  footer {
    font-family: 'Karla', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f0f0f0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 20px;
  }
  
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    text-align: center;
  }
  
  
  .footer-separator {
    font-weight: bold;
    color: #999;
    gap: 10px;
  }

  .linkedin-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  .copy-btn {
    cursor: pointer;
    color: rgb(16, 16, 16);
    text-decoration: underline;
  }
  .profile-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto 40px auto;
    align-items: flex-start;
    justify-content: center;
  }
  
  .profile-text {
    flex: 1 1 300px;
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    letter-spacing: 1.3px;
    font-weight: 330;
    line-height: 2;
    text-align: left;
    max-width: 600px;
  }
  
  .profile-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 200px;
  }
  
  .profile-images img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    object-fit: cover;
  }
  .profile-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
  }
  
  
  .profile-row .side-image {
    flex: 0 0 230px;
  }
  
  .profile-row .side-image img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  .profile-row .profile-text {
    flex: 1 1 500px;
    max-width: 600px;
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    letter-spacing: 1.3px;
    font-weight: 330;
    line-height: 2;
    text-align: left;
  }
  
  
  .profile-row .profile-text {
    flex: 1 1 400px;
    max-width: 600px;
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    letter-spacing: 1.3px;
    font-weight: 330;
    line-height: 2;
    text-align: left;
  }
  
  .album-gallery {
    padding: 1rem 0;
    max-width: 800px;          
    margin: 0 auto;             
  }
  
  .album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
  }
 
  .about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .about-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  
  .about-side-image {
    width: 200px;
    height: 260px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    margin-top: 20px;

  }
  @media (max-width: 768px) {
    .about-images {
      gap: 1rem;
    }
    .about-side-image {
      width: 140px;
      height: 180px;
    }
  }  
  .about-text {
    max-width: 650px;
    font-size: 17px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    text-align: center;
    line-height: 2;
    letter-spacing: 1.2px;
    flex: 1;
  }
  
    
    .left-img {
      margin-top: -20px;
      margin-bottom: 60px;
    }
    
    .right-img {
      margin-top: 70px;
    }

  
  .album-grid img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .album-grid img:hover {
    transform: scale(1.05);
  }
  
  .scores-page {
    text-align: center;
    padding: 2rem;
  }
  
  .video-container {
    margin-bottom: 2rem;
  }
  
  .music-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 80%;
    font-size: 1rem;
  }
  
  .music-table th, .music-table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
  }
  
  .music-table th {
    background-color: #f0f0f0;
  }
  
  .music-table td button {
    margin: 0 5px;
    padding: 5px 10px;
    cursor: pointer;
  }
  .contact-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Noto Sans', sans-serif;
  }
  
  .contact-form {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 2rem;
    padding-right: 3.4rem;
    width: 100%;
    max-width: 630px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
  }
  
  .contact-form label {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #333;
  }
  
  .contact-form input,
  .contact-form textarea {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: 'Noto Sans', sans-serif;
    width: 100%;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .form-actions {
    display: flex;
    justify-content: right;
    padding-left: 35.8rem;
  }
  
  .form-actions button {
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    padding-right: 1.5rem;
    transition: background 0.3s ease;
  }
  @media (max-width: 768px) {
    .contact-form {
      padding: 1rem;
      padding-right: 2.5rem;
      max-width: 90%;
    }
    .form-actions {
      display: flex;
      justify-content: right;
      padding-left: 20rem;
      
    }
    .form-actions button {
      padding: 0.9rem 1.3rem;
      font-size: 0.9rem;
    }
  }
  
  .form-actions button:hover {
    opacity: 0.9;
  }
  
  .score-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
  }

  .section-title {
    letter-spacing: 5px;
    font-size: 18px;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  @media (max-width: 768px) {
    .section-title {
      letter-spacing: 5px;
      font-size: 18px;
      color: #333;
      margin-top: 4rem;
      margin-bottom: 30px;
      text-align: center;
    }
  }

  .play-button {
    width: 48px;
    height: 48px;
    background-color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    cursor: pointer;
  }

  .play-button::before {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent white;
    display: inline-block;
    margin-left: 4px;
  }

  .play-button.pause::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 16px;
    background: white;
    mask: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
  }

  .time-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #444;
    margin-top: 5px;
  }

  #track-title {
    margin: 10px 0 40px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .tracklist {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
  }

  .tracklist li {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease;
  }
  .tracklist li.playing {
    font-weight: bold;
    color: #111;
  }
  
  .tracklist li:hover {
    background-color: #f0f0f0;
  }

  .tracklist .duration {
    color: #999;
    font-size: 14px;
  }
