/* style.css */
/* Basic Reset & Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Press Start 2P', cursive;
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.5;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #1a1a1a;
    text-align: center;
  }

  .hero button {

    background: #00ccff;
    color: #0d0d0d;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: background 0.3s ease;
    margin-top: 40px;

  }

  .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #00ff99;
    margin-bottom: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
    color: #00ff99;
  }
  .hero h2 {
    font-size: 1rem;
    color: #66ffcc;
  }
  
  /* Sections */
  section {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
  }
  section h2 {
    margin-bottom: 1rem;
    color: #00ccff;
    font-size: 1.2rem;
  }
  
  #about p {
    text-align: center;
  }
  
  /* Skills */
  #skills ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
  }
  #skills li {
    background: #333;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid #00ccff;
    border-radius: 4px;
  }
  
  /* Projects */
  .projects-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .project-card {
    background-size: cover;
    background-position: center;
    border: 2px solid #00ff99;
    border-radius: 8px;
    padding: 1rem;
    margin: 0.5rem;
    width: 250px;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px #000;
    transition: transform 0.3s ease;
  }
  .project-card:hover {
    transform: scale(1.05);
  }
  .project-card h3 {
    margin-bottom: 0.5rem;
    color: #00ff99;
  }
  .project-card a {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
    color: #1a1a1a;
    background: #00ff99;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .project-card a:hover {
    background: #00ccff;
  }
  
  /* Pixel Art Gallery */
  #art .art-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  #art .art-container img {
    width: 200px;
    height: 200px;
    image-rendering: pixelated;
    border: 2px solid #00ccff;
    margin: 0.5rem;
    transition: transform 0.3s;
  }
  #art .art-container img:hover {
    transform: scale(1.1);
  }
  
  /* Music Section */
  #music p {
    text-align: center;
    margin-bottom: 1rem;
  }
  #music .music-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  #music .music-list li {
    margin: 0.5rem 1rem;
  }
  #music .music-list a {
    text-decoration: none;
    color: #00ff99;
    border: 2px solid #00ff99;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
  }
  #music .music-list a:hover {
    background: #00ff99;
    color: #0d0d0d;
  }
  
  /* Contact Form */
  #contact form {
    display: flex;
    flex-direction: column;
  }
  #contact input,
  #contact textarea {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 2px solid #333;
    border-radius: 4px;
    background: #0d0d0d;
    color: #e0e0e0;
  }
  #contact button {
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    background: #00ccff;
    color: #0d0d0d;
    transition: background 0.3s ease;
  }
  #contact button:hover {
    background: #00ff99;
  }
  
  /* Footer */
  .footer {
    background: #1a1a1a;
    padding: 1rem;
    text-align: center;
    border-top: 2px solid #333;
    margin-top: 2rem;
  }
  .footer .social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
  .footer .social-links a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #00ccff;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer .social-links a:hover {
    color: #00ff99;
  }
  .footer p {
    font-size: 0.8rem;
    color: #666;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .projects-container,
    #art .art-container {
      flex-direction: column;
      align-items: center;
    }
    .profile-img {
      width: 100px;
      height: 100px;
    }
  }
/* Music Section */
#music .music-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  #music .music-item {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
  #music .music-btn {
    display: inline-block;
    font-family: inherit;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #00ff99;
    background: transparent;
    color: #00ff99;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  #music .music-btn:hover {
    background: #00ff99;
    color: #0d0d0d;
  }
  #music .player {
    margin-top: 1rem;
  }
  #music .player iframe {
    width: 100%;
    height: 200px;
    border: none;
  }


.light-mode {
  background: #f0f0f0;
  color: #1a1a1a;
}

.light-mode section {
  background: #ffffff;
  border-color: #dddddd;
}

.light-mode .hero {
  background: #ffffff;
}

.light-mode .hero h1 {
  color: #00cc88;
}

.light-mode .hero h2 {
  color: #00aa77;
}

.light-mode section h2 {
  color: #0099cc;
}

.light-mode #skills li {
  background: #f0f0f0;
  border-color: #0099cc;
  color: #1a1a1a;
}

.light-mode .footer {
  background: #ffffff;
  border-color: #dddddd;
}

.light-mode .footer p {
  color: #888888;
}

.light-mode #contact input,
.light-mode #contact textarea {
  background: #ffffff;
  border-color: #dddddd;
  color: #1a1a1a;
}
