* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
  }
  
  
  .navbar {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    position: relative;
  }
  
  
  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }
  
  .nav-links a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .nav-links a:hover {
    background-color: white;
    color: black;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  
  .menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
  }
  

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Button to open dropdown */
  .dropbtn {
    background-color: black;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* Dropdown links container */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    z-index: 1;
    flex-direction: column;
    text-align: left;
  }
  
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: white;
    color: black;
  }
  
  /* Show dropdown on hover (desktop) */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropbtn {
    background-color: white;
    color: black;
  }
  



  .logo-top {
    width: 100%;               /* full width container */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      align-items: flex-start; /* align children (links) to the left */
    }
  
    .dropdown {
      width: 100%;
    }
  
    .dropbtn {
      text-align: left;
      width: 100%;
    }
  
    .dropdown-content {
      width: 100%;
    }
  
    .dropdown-content a {
      width: 100%;
    }
  }
  


  #portfolio {
    text-align: center;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
  }
  
  #portfolio img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
  
  #portfolio p {
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
    color: white; /* ensure it's white just in case */
  }
  .artist-profile {
    max-width: 800px;
    margin: 3rem auto;
    padding: 1rem;
    text-align: center;
  }
  
  .artist-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
  }
  
  .artist-photo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }
  
  .artist-bio {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
  }
  
  .artist-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 15px;
    color: white;
    background-color: #222;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .artist-links a:hover {
    background-color: white;
    color: black;
  }
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: black;
      padding: 1rem 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a,
    .dropbtn {
      width: 100%;
      text-align: left;
      padding: 12px 20px;
    }
  
    .dropdown-content {
      position: static;
      display: none;
      background-color: #111;
    }
  
    .dropdown:hover .dropdown-content {
      display: block;
    }
  
    .menu-toggle {
      display: flex;
    }
  }
    