/* Header Styles */

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  height: 100vh;
  max-height: calc(100vh - 158px);
}

.green-section {
  background-color: #457e55;
  width: 50%;
  min-height: 540px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.artist-header .logo {
  padding: 20px 30px;
  color: white;
  font-size: 18px;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
  line-height: 33.5px;
}

.artist-info-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.small-image {
  width: 465px;
  height: 310px;
  object-fit: cover;
}

.gray-section {
  background-color: #e8e8e8;
  width: 50%;
  min-height: 540px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  min-width: 100%;
  min-height: 100%;
  height: -webkit-fill-available !important;
}

.menu-text {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #333;
  text-decoration: none;
  z-index: 10;
}

.menu-text:hover {
  color: #ffffff;
}

.large-image {
  display: block;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: -webkit-fill-available;
  object-fit: cover;
}

.title-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px 20px 20px 20px;
  border-bottom: 1px solid #ddd;
}

.title-left,
.title-center,
.title-right {
  font-size: 32px;
  font-weight: 300;
}

.mobile-only {
  display: none;
}

/* Responsive Header - up to 768px */
@media (min-width: 699px) and (max-width: 1024px) {
  .header {
    flex-direction: column-reverse;
  }

  .mobile-only {
    display: block;
    height: 100%;
  }

  .menu-icon {
    text-align: end;
    position: absolute;
    top: 34px;
  }

  .mobile-only .artist-carousel,
  .mobile-only .artist-carousel .swiper-slide {
    height: 100%;
    min-height: 300px;
  }

  .desktop-only {
    display: none;
  }

  .green-section,
  .gray-section {
    width: 100%;
    height: auto;
  }

  .gray-section .swiper {
    display: none;
  }

  .green-section {
    padding: 153px 64px 152px 73px;
    min-height: 300px;
    height: calc(100% - 211px);
  }

  .green-section .logo {
    margin-bottom: 0;
    font-size: 16px;
    display: none;
  }

  .small-image {
    display: block;
    margin: auto;
  }

  .gray-section {
    padding: 0px 27px 0px 22px;
    background-size: contain;
    justify-content: flex-start;
    min-height: 211px;
    max-height: 211px;
    box-sizing: border-box;
  }

  .menu-text {
    top: 20px;
    right: 20px;
    font-size: 16px;
  }

  .title-section {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .mobile-only.title-section {
    padding: 0px;
    border-bottom: none;
    justify-content: flex-start;
    width: 100%;
    max-height: max-content;
  }

  .title-left,
  .title-center,
  .title-right {
    margin-bottom: 0;
    display: none;
  }

  .mobile-only .title-left,
  .mobile-only .title-center,
  .mobile-only .title-right {
    display: block;
    font-size: 50px;
    line-height: 33px;
  }

  .mobile-only .title-left {
    margin-bottom: 63px;
    margin-top: 34px;
  }

  .mobile-only .title-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 42px;
  }

  .title-left {
    display: block;
  }
}

/* Responsive Header - 350px to 699px (50% of tablet values) */
@media (min-width: 350px) and (max-width: 698px) {
  .header {
    flex-direction: column-reverse;
    max-height: calc(100vh - 115px);
  }

  .mobile-only {
    display: block;

    height: 100%;
  }

  .menu-icon {
    text-align: end;
    position: absolute;
    top: 17px; /* 50% of 34px */
  }

  .mobile-only .artist-carousel,
  .mobile-only .artist-carousel .swiper-slide {
    height: 100%;
    min-height: 150px; /* 50% of 300px */
  }

  .desktop-only {
    display: none;
  }

  .green-section,
  .gray-section {
    width: 100%;
    height: auto;
  }

  #menu-trigger{
    height: 27px; /* 50% of 54 */
    width: 26px; /* 50% of 54 */
  }

  .gray-section .swiper {
    display: none;
  }

  .green-section {
    padding: 76.5px 32px 76px 36.5px; /* 50% of 153, 64, 152, 73 */
    min-height: 150px; /* 50% of 300px */
    height: calc(100% - 105.5px); /* 50% of 211px */
  }

  .green-section .logo {
    margin-bottom: 0;
    font-size: 8px; /* 50% of 16px */
    display: none;
  }

  .small-image {
    display: block;
    margin: auto;
  }

  .gray-section {
    padding: 0px 13.5px 0px 11px; /* 50% of 27px, 22px */
    background-size: contain;
    justify-content: flex-start;
    min-height: 105.5px; /* 50% of 211px */
    max-height: 105.5px; /* 50% of 211px */
    box-sizing: border-box;
  }

  .menu-text {
    top: 10px; /* 50% of 20px */
    right: 10px; /* 50% of 20px */
    font-size: 8px; /* 50% of 16px */
  }

  .title-section {
    flex-direction: column;
    padding: 10px; /* 50% of 20px */
    gap: 0;
  }

  .mobile-only.title-section {
    padding: 0px;
    border-bottom: none;
    justify-content: flex-start;
    width: 100%;
    max-height: max-content;
  }

  .title-left,
  .title-center,
  .title-right {
    margin-bottom: 0;
    display: none;
  }

  .mobile-only .title-left,
  .mobile-only .title-center,
  .mobile-only .title-right {
    display: block;
    font-size: 29.5px;
    line-height: 29.5px; 
  }

  .mobile-only .title-left {
    margin-bottom: 31.5px; /* 50% of 63px */
    margin-top: 17px; /* 50% of 34px */
    max-width: 86vw;
  }

  .mobile-only .title-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 21px; /* 50% of 42px */
  }

  .title-left {
    display: block;
  }
}
