/* Reset & base styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  background-color: #101D0D;
  color: #1FE11C;
  font-family: 'Arial', sans-serif;
}

/* Header */
header {
  background-color: #101D0D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
}

.logo {
  height: 80px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li a {
  text-decoration: none;
  color: #1FE11C;
  font-size: 24px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.05s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #B8F5B7;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active:hover {
  color: #B8F5B7;
}

.nav-links li a:hover::after,
.nav-links li a.active:hover::after {
  width: 100%;
  background-color: #B8F5B7;
}

.nav-links li a.active {
  color: #1FE11C;
}

.nav-links li a.active::after {
  width: 100%;
  background-color: #1FE11C;
}

/* MAIN CONTENT */
main {
  padding: 40px 20px;
  text-align: center;
}

.artist-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.underline {
  width: 50px;
  border: 2px #1FE11C;
  margin: 0 auto 40px auto;
}

.artist-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #1FE11C;
  padding: 40px;
  margin: 0 auto;
  max-width: 95%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .artist-profile {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}

.artist-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 50%;
}

.artist-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: none;
}

.artist-info {
  flex: 1;
  text-align: left;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.artist-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 2px solid #1FE11C;
  padding: 40px;
  margin: 0 auto;
  width: fit-content;
  max-width: 95%;
  box-sizing: border-box;
}

.phonetic,
.location,
.genre,
.release {
  font-size: 1.1rem;
  margin: 5px 0;
  margin-left: 50px;
}

.contact-section {
  margin-top: 20px;
  margin-left: 50px;
}

.contact-label {
  font-weight: bold;
  margin-bottom: 5px;
  margin-left: 0px;
}

.links {
  margin-top: 0px;
  margin-left: 50px;
}

.button-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #101D0D;
  color: #1FE11C;
  text-decoration: none;
  margin: 0px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.button-link:hover {
  color: #B8F5B7;
}

.artist-info a:hover {
  color: #B8F5B7;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #101D0D;
  padding: 20px 60px;
  flex-wrap: wrap;
  position: relative;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.5;
  color: #1FE11C;
  margin: 0;
  align-self: flex-start;
  margin-top: 200;
}

.footer-right {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
}

.contact {
  text-align: right;
}

.contact p {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #1FE11C;
}

.contact a {
  color: #1FE11C;
  text-decoration: underline;
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
  margin-left: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  height: 24px;
}

.artist-info a {
  color: #1FE11C;
  text-decoration: none;
}
.artist-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  transition: opacity 1.25s ease-in-out;
}
