/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #F5F7FA;
  color: #1A1A1A;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-bottom: 2px solid #e0e0e0;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6C63FF;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
  color: #6C63FF;
}

/* Hero Image */
.image-wrapper {
  width: 175px;
  height: 175px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  bottom: 200px;
  z-index: 2;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.whitebar, .blackbar {
  width: 100vw;
  height: 120px;
}

.whitebar {
  background-color: #ffffff;
}

.blackbar {
  background-color: #6C63FF;
}

.main-content {
  max-height: 240px;
}

/* About */
.about {
  width: 60vw;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6C63FF;
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  margin-top: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.download-btn:hover {
  background-color: #FFD166;
  color: #1A1A1A;
  cursor: pointer;
}


.other-content {
  display: flex;
  gap: 100px;
  padding: 15px;
  justify-content: space-around;
}

.pod {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
}

.pod p {
  background-color: #ffffff;
  padding: 10px 15px;
  border-radius: 10px;
  color: #6C63FF;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pod > div:hover p {
  background-color: #6C63FF;
  color: #ffffff;
}

.fel, .kinya {
  position: relative;
  font-style: italic;
  font-size: larger;
  font-weight: lighter;
}

.fel {
  top: 40px;
  left: 300px;
  color: #FFD166;
}

.kinya {
  left: 800px;
  color: #ffffff;
}

/* My Works */
.my-works {
  padding: 40px 60px;
  background-color: #ffffff;
  border-top: 2px solid #e0e0e0;
  text-align: center;
}

.my-works h2 {
  color: #6C63FF;
}

.my-works p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.audio-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.audio-sample {
  background-color: #F5F7FA;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  width: 300px;
}

.audio-sample h4 {
  margin-bottom: 10px;
}

audio {
  width: 100%;
  outline: none;
}

/* Contact */
.contact-section {
  padding: 20px 60px;
  background-color: #6C63FF;
  color: #ffffff;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
}

.contact-info a {
  color: #FFD166;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  background-color: #FFD166;
  color: #1A1A1A;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #ffffff;
  color: #6C63FF;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .navbar .logo {
    font-size: 1.2rem;
  }

  .navbar .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 0;
  }

  .navbar .nav-links li a {
    font-size: 0.95rem;
  }

  .image-wrapper {
    width: 120px;
    height: 120px;
    bottom: 170px;
  }

  .other-content {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .about {
    width: 100%;
  }

  .about p, .other-content p {
    font-size: 1rem;
  }

  .about button {
    margin: 20px auto 0 auto;
  }
}

@media (max-width: 600px) {
  .audio-sample {
    width: 100%;
  }

  .my-works {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .fel h1,
  .kinya h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .fel h1,
  .kinya h1 {
    font-size: 1.2rem;
  }
}