@import url(font.css);

:root {
  --primary-color: #FFE600;
  --text-color: #262424;
  --bg-color: #F6F6F6;
  --bg-secondary-color: #E6E6E6;
  --bg-contact-color: #FCDE00;
  --text-hint-color: #858585;
  --text-hint-secondary-color: #484848;
  --text-highlight-secondary-color: #F3F3F3;
  --btn-bg-color: #090909;
  --btn-bg-hover-color: #2c2c2c;
  --text-grey-color: #9EA3A6;
}

html {
  scroll-behavior: smooth;
}

/* General Body Styles */
body {
  margin: 0;
  font-family: 'AttenNew', 'DindanMai', sans-serif !important;
  background-color: white;
  color: var(--text-color);
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

main {
  margin-top: 48px;

  display: flex;
  flex-direction: column;
  gap: 100px;

  min-height: calc(100vh - 419px);
}

/* --- Navigation Bar --- */
#navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  padding: 24px 5% !important;
  background-color: white;
  color: var(--text-color);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#navbar.mega-menu-active {
  background-color: rgba(0, 0, 0, 0.85) !important;
}

#navbar.mega-menu-active .nav-menu > ul > li > a {
  color: white;
}

#navbar.mega-menu-active .nav-menu > ul > li > a::after {
  background-color: white;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  float: left;
}

/* Combined link styles */
nav > ul > li > a,
.submenu-content li a {
  position: relative;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

/* Main menu link specifics */
nav > ul > li > a {
  color: var(--text-color);
  text-align: center;
  padding: 8px 0;
}


/* --- Underline Animation --- */
nav > ul > li > a::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 2px;
  left: 50%;
  bottom: 0;
  background-color: var(--text-color);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.submenu-content li a::after, .footer-menu > li > a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav > ul > li > a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.submenu-content li a:hover::after, .footer-menu > li > a:hover::after {
  transform: scaleX(1);
}


.nav-logo {
  position: relative;

  min-width: 160px;
  height: 45px;
}

.logo {
  height: 45px;
  position: absolute;
}

.logo-hover {
  opacity: 0;
}

#navbar.mega-menu-active .logo-hover {
  opacity: 1;
}

#navbar.mega-menu-active .logo-default {
  opacity: 0;
}

.nav-left {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.nav-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  position: static;

  padding: 0 16px;
}

.nav-menu>ul {
  display: flex;
  gap: 48px;
}

/* --- Targeted Submenu Styles --- */
.dropdown {
  position: relative;
}

.submenu-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 16px;
  z-index: 1001;
}

.submenu-content {
  background-color: transparent;
  padding: 0;
}

.submenu-content li {
  float: none;
  text-align: left;
  margin-bottom: 15px;
}

.submenu-content li a {
  color: white;
  text-align: start;
  padding: 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* --- Full-width Backdrop --- */
.mega-menu-backdrop {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 999;
}

/* --- Nav Right --- */
.nav-right {
  display: inline-flex;
  gap: 8px;
}

.nav-right a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.icon-button {
  width: 20px;
  height: 24px;
}

.icon-button-hover {
  background-color: white !important;
}

/* --- Main Content --- */
main {
  padding-top: 48px;
}

/* --- Hero section ---*/
.hero-section {
  position: relative;

  overflow: hidden;
  padding: 24px 5%;
}

.hero-grids {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.hero-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  position: relative;
}

.hero-grid-item > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.15);
}

.hero-grid-item > .icon {
  border-radius: 0;
  filter: drop-shadow(0 1px 40px rgba(0, 0, 0, 0.15));
  box-shadow: none;
}

.hero-grid-item > div {
  position: absolute;
  left: 105%;
  min-width: 480px;
  z-index: 999;

  display: none;
  justify-content: center;
  align-items: center;
}

.text-item {
  font-weight: 700;
  font-size: clamp(2.5rem, 12vw, 11rem);
  line-height: 1;
}

.colspan-3 {
  grid-column: span 3;
}

.colspan-2 {
  grid-column: span 2;
}

/* --- New release section ---*/
.new-release-section {
  height: 1000px;

  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/bg_wave.png);
  background-position: top;
}

.new-release-section h1 {
  font-size: 96px;
  font-weight: 900;

  width: 100%;
  padding: 32px 5%;
  margin-top: 5%;

  text-transform: uppercase;
}

/* --- Article section ---*/
.article-section {
  overflow: hidden;

  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/bg_music.png);

  padding: 120px 5% 0 5%;

  min-height: 800px;
}

.article-section > .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.article-section > .row > [class*="col-"] > .row {
  flex-grow: 1;
}

.article-section h1 {
  font-size: 96px;
  font-weight: 900;

  width: 100%;
  text-align: center;

  text-transform: uppercase;
}

.article-1 > img, .article-2 > img, .article-3 > img {
  width: 100%;
  height: 400px;

  border-radius: 20px;
  object-fit: cover;
  filter: brightness(0.8);
}

.article-2 > img {
  height: 200px;
  filter: none;
}

.article-3 > img {
  min-width: 100%;
}

.article-1 > img::after, .article-2 > img::after, .article-3 > img::after {
  background-color: rgba(0, 0, 0, 0.2);
}

.article-wrapper-2 {
  flex: 1 1;
}

.article-description-3 {
  color: white;
  font-size: 18px;
  font-weight: 900;

  padding: 32px;

  position: absolute;
  bottom: 0;
  left: 0;
}

.arrow-icon-group {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}

.arrow {
  background-color: var(--primary-color);
  width: 64px;
  height: 64px;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

.arrow-transparent {
  background-color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px var(--text-color) solid;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 16px;
}

.arrow-transparent > img {
  width: 16px;
  height: 16px;
}

.article-description, .article-description-2 {
  background-color: var(--primary-color);
  padding: 24px;

  height: 100%;
  border-radius: 20px;
}

.article-description-2 {
  background-color: var(--bg-secondary-color);
  height: 200px;
}

/* --- Upcoming section ---*/
.upcoming-section {
  overflow: hidden;

  padding: 0 12px 100px 5%;
}

.upcoming-section h4 {
  font-size: 32px;
  font-weight: bold;
}

.upcoming-section h1 {
  font-size: 96px;
  font-weight: 900;
}

.upcoming-section span {
  font-size: 24px;
}

.upcoming-arrow {
  width: 148px;
  height: 148px;

  border-radius: 50%;
  background-color: var(--primary-color);

  transform: rotate(-45deg);

  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 32px;
}

.upcoming-arrow > img {
  width: 60px;
  height: 60px;
}

/* --- Our team section ---*/
main > .our-team-section {
  min-height: calc(100vh - 53px);
}

.our-team-wrapper {
  background-image: url(../images/bg_our_team.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.our-team-section {
  overflow: hidden;
  margin-bottom: 160px;
}

.founder-content {
  position: relative;
  padding-top: 12%;
  width: fit-content;
}

.founder-content > img {
  width: 100%;
  max-width: 800px;
}

.founder-content > h4 {
  font-size: 72px;
  font-weight: 900;

  position: absolute;
  bottom: -48px;
  right: 0;

  text-align: end;
}

.quote-content {
  margin-top: 100px;
  padding: 0 5%;
}

.quote-icon {
  width: 64px;
  height: 64px;

  margin-bottom: 32px;
}

.our-team-description {
  font-weight: bold;
  font-size: 32px;
  line-height: normal;
}

/* --- Vision / mission section ---*/
.vision-mission-section {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 467px);
}

.vision-content {
  padding: 56px 5%;
}

.vision-content h4 {
  font-size: 56px;
  font-weight: 900;
}

.text-extra-header {
  font-size: 128px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.text-header {
  font-size: 96px;
  font-weight: 900;

  padding: 32px 5% 0 5%;
  text-align: center;

  text-transform: uppercase;
}

.text-title {
  font-weight: 900;
  font-size: 32px;
}

.text-hint, .text-primary, .text-hint-secondary {
  color: var(--text-hint-color);
  font-weight: bold;
  font-size: 24px;
}

.text-highlight, .text-highlight-secondary {
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: bold;
  font-size: 24px;
}

.text {
  color: var(--text-color);
}

.text-hint-secondary {
  color: var(--text-hint-secondary-color);
}

.text-highlight-secondary {
  background-color: var(--text-highlight-secondary-color);
}

.mission-content {
  position: relative;
  background-color: var(--primary-color);
  padding: 5% 50% 5% 5%;

  overflow: hidden;
}

.mission-content > img {
  position: absolute;
  top: -100px;
  right: -200px;
  height: 600px;
}

/* --- Contact us section ---*/
.contact-us-section {
  padding: 0 5% 100px 5%;
  min-height: calc(100vh - 321px);
}

.contact-us-section .text-title {
  font-size: 32px;
  line-height: normal;
  font-weight: 700;
}

.contact-us-section .text {
  font-size: 24px;
}

.contact-us-section > .row {
  --bs-gutter-x: 5rem;
}

.contact-us-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.address {
  font-size: 32px;
}

.address-line {
  height: 3px;
  width: 24px;
  background-color: var(--text-color);
}

.address-map {
  width: 100%;
}

.contact-form-wrapper {
  padding: 32px;
  border-radius: 24px 32px 50px 50px;

  background-image: url(../images/bg_contact_us.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-form-wrapper > .contact-form-title {
  padding-left: 144px;
}

.contact-form {
  margin-top: 16%;
}

/* --- Our business section ---*/
.our-business-section {
  min-height: calc(100vh - 469px);
}

.our-business-wrapper > a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 32px;
  font-weight: 900;
}

.navigation-back {
  color: var(--text-grey-color);
  font-size: 32px;
  font-weight: 900;

  display: flex;
  gap: 12px;

  text-decoration: none;
}

/* --- Music label section ---*/
.music-label-section {
  margin-top: 56px;
}

.music-label-section .text-header {
  text-align: left;
  padding: 0;
}

.music-label-wrapper {
  padding: 0 0 0 5%;
  gap: 24px;
}

.box-music-wrapper {
  border-radius: 24px;
  background-color: var(--bg-color);
  position: relative;
}

.box-music-content {
  display: flex;
  gap: 64px;
  padding: 56px 56px 100px 56px;
}

.box-music-content h1 {
  font-size: 72px;
  font-weight: 900;
}

.box-music-content span {
  font-size: 24px;
}

.box-music-content > img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.15);
}

.chip-wrapper {
  display: flex;
  gap: 8px;

  padding: 24px;
  transform: translateX(-24px);

  overflow-x: auto;
  overflow-y: hidden;
  transition: all 0.2s;
  user-select: none;
  cursor: pointer;
}

.chip-wrapper:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.chip-wrapper::-webkit-scrollbar {
  display: none;
}

.chip-item {
  position: relative;
  padding: 0 0.15%;
}

.chip-item div {
  position: absolute;
  top: 0;
  left: 144px;
  min-width: 480px;
  z-index: 999;
}

.chip-item img {
  border-radius: 50%;
  height: 140px;
  width: 140px;
  object-fit: cover;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);

  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.chip-item-hover, .hero-item-hover {
  display: none;
  background-color: var(--primary-color);
  padding: 16px 16px 16px 56px;
  border-radius: 100px;
}

.chip-item-hover strong {
  font-size: 24px;
}

.chip-item-hover span {
  font-size: 16px;
}

.chip-item-hover img {
  width: 48px;
  height: 48px;
}

.chip-item-hover img {
  width: 48px;
  height: 48px;
}

.chip-item a {
    display: inline-block;
    transition: transform 0.25s ease;
}

.chip-item a:hover {
    transform: scale(1.1);
}

.padding-right {
  padding-right: 5% !important;
}

.music-label-social-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;

  display: flex;
  gap: 12px;
  padding: calc(12px + 32px) 12px 12px calc(12px + 32px);

  clip-path: path("M 0,112 A 32,32 0,0,0 32,80 L 32,64 A 32,32 0,0,1 64,32 L 288,32 A 32,32 0,0,0 316,0 L 316,112 L 0,112 Z");
  background-color: white;
}

.music-label-social-wrapper > a {
  height: 56px;
  width: 56px;
  padding: 12px;

  background-color: var(--bg-color);
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.artist-wrapper {
  margin-top: 64px;
  padding: 0 5%;
}

.artist-wrapper > h1 {
  text-transform: none;
  font-size: 144px;
  margin-bottom: 64px;
}

.modal-content {
  background-color: var(--primary-color) !important;
}

.masonry-item > a > img {
  width: 100%;
  object-fit: cover;
  object-position: top;

  border-radius: 16px;
  display: block;
}

.artist-modal-wrapper {
  width: 80%;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 230, 0, 0.8);
  border-radius: 24px;

  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.25);
  padding: 16px 16px 56px 56px;
  
  transform: scale(0);
  transition: transform 0.3s ease-in;
}

.artist-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;
  width: 100%;
}

.artist-modal-content h1 {
  font-size: 84px;
  font-weight: 700;
}

.artist-modal-header {
  width: 100%;
}

.artist-modal-header > h1 {
  text-align: center !important;
}

#close-modal-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--text-color);

  display: flex;
  justify-content: center;

  transform: rotate(-45deg);
  cursor: pointer;
}

#close-modal-btn > img {
  width: 32px;
}

.artist-modal-image {
  margin-bottom: 56px;
}

.artist-modal-image > div > img {
  width: 450px;
  height: 500px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.25);
}

.artist-modal-social {
  background-color: white;
  padding: 16px 100px;

  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.25);

  position: absolute;
  bottom: -32px;
  right: -25%;

  clip-path: path("M 0,0 L 352,0 A 32,32 0,0,1 382,32 L 382,72 L 32,72 A 32,32 0,0,1 0,32");
}

.artist-modal-social img {
  width: 20px;
  height: 20px;
}

.artist-modal-single {
  position: absolute;
  top: 48px;
  left: -85%;
}

.artist-modal-single > div {
  position: relative;

  width: 150%;
  display: flex;
  gap: 12px;

  padding: 16px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.25);
}

.artist-modal-single span {
  color: rgba(36, 36, 36, 0.75);
  font-size: 12px;
}

.artist-modal-single strong {
  color: var(--text-color);
  font-size: 24px;
  font-weight: 900;
}

.artist-modal-single img {
  height: 100px;
  border-radius: 10px;
}

.artist-modal-single .play-icon {
  position: absolute;
  top: -20px;
  right: -20px;

  background-color: var(--primary-color);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.25);
}

.single-play-icon {
  height: 100% !important;
  padding: 16px;
}

.artist-name {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px;
}

.artist-modal-show {
  color: white;
  position: absolute;
  top: 25%;
  right: -60%;
}

.artist-modal-show .box {
  padding: 12px 56px;
  margin: 0 32px;
  color: var(--text-color);
  background-color: white;

  border-radius: 100px;

  text-align: center;
  transform: translateY(-24px);
}

.artist-modal-show img {
  border-radius: 16px;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.25);

  width: 300px;
  filter: brightness(0.7);
}

.artist-modal-presenter {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: -65%;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artist-modal-presenter > span {
  font-weight: 700;
  font-size: 20px;
}

.show-text {
  width: 100%;
  position: absolute;
  bottom: 32px;
  left: 0;
}

.modal-backdrop {
  width: 100% !important;
  height: 100% !important;
  min-height: 100vh;
  min-width: 100vw;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.7) !important;
  transition: opacity 0.2s ease-in;
  opacity: 0;
  transform: scale(0);
}

/* Swiper container setup */
.swiper {
  width: 210px;
  height: 266px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px !important;
  height: 48px !important;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-button-next {
  right: -64px !important;
}

.swiper-button-prev {
  left: -64px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #f3f4f6;
  transform: scale(1.05);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  background-repeat: no-repeat;
  background-position: 100% 55%;
  background-size: 20px;
  color: transparent;
}

.swiper-button-next:after {
  background-image: url(./icons/ic_arrow_right.svg);
}

.swiper-button-prev:after {
  background-image: url(./icons/ic_arrow_left_black.svg);
}

/* --- Gallery mansory style --- */
.masonry-wrapper {
  column-gap: 1.5em; 
  column-count: 5; 
}

.masonry-item {
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 10px;
}

.masonry-item > a {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #2D2E2E;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.masonry-item:hover img {
    text-decoration: underline;
    transform: scale(0.98);
}

.mansory-item-placeholder {
  width: 100%;
  height: 200px !important;
  object-fit: fill !important;

  padding: 24px;
}

/* --- Slide image for bookshelf --- */
.book-container-wrapper {
  cursor: grab;
  user-select: none;
  scrollbar-width: none;

  display: flex;
  justify-content: flex-end;
}

.book-container-wrapper::-webkit-scrollbar {
  display: none;
}

.book-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: fit-content;
}

.book-card {
  position: relative;
  height: 680px;
  cursor: pointer;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 24px;

  overflow: hidden;
  background-size: cover;
  background-position: center;

  margin: 0 8px;
  flex-shrink: 0;
  transition: width 0.8s ease;

  width: 80px;
}

.book-card.active {
  width: 480px;
}

.book-1 { background-image: url(../images/show_1.png); }
.book-2 { background-image: url(../images/show_2.png); }
.book-3 { background-image: url(../images/show_3.png); }
.book-4 { background-image: url(../images/show_1.png); }

@media (max-width: 768px) {
  .book-card {
    width: 20px;
    height: 300px !important;
  }

  .book-card.active {
    width: 250px !important;
  }

  .swiper {
    width: 200px !important;
  }

  .swiper-button-next, .swiper-button-prev {
    display: block !important;
  }
}

/* --- Footer --- */
.footer {
  background-color: var(--text-color);
  color: white;
  padding: 5% 5% 8px 5%;
}

.footer-bottom-text {
  text-align: center;
}

footer ul {
  list-style-type: none;
  padding: 0;
}

footer li > a {
  color: white;
  font-size: 24px;

  text-decoration: none;
}

footer li {
  list-style: none;
  padding: 8px 0;
}

.footer-icon-group {
  display: flex;
  gap: 32px;
}

.footer-logo {
  width: 300px;
}

footer > .row {
  margin-bottom: 64px;
}

.footer-menu > li > a {
  position: relative;
}

.p-0 {
  padding: 0;
}

/* --- Slide image --- */
.image-item {
  position: relative;

  margin-bottom: 56px;

  width: 100%;
  flex-shrink: 0;

  background-color: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  transition: background-color 0.1s ease-in-out;
}

.image-item:first-child {
  margin-left: 32px;
}

.image-item:hover {
  background-color: var(--primary-color);
  cursor: pointer;
}

.image-item:hover .play-icon, .image-item:hover .icon-group {
  transform: scale(1);
  opacity: 1;
}

.image-item-wrapper {
  position: relative;
}

.image-item-wrapper > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 20px;
}

.image-item-wrapper > .play-icon {
  transform: scale(0);
  opacity: 1;
  position: absolute;
  bottom: -30px;
  right: 12px;
  transition: transform 0.3s ease, opacity 0.1s ease;
}

.image-item-wrapper > .play-icon > a {
  display: flex;
  width: 64px;
  height: 64px;
  background-color: white;
  color: var(--text-color);
  padding: 16px;
  border-radius: 50%;
}

.item-content-wrapper {
  height: 100px;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  transition: height 0.3s ease-in-out;
}

.image-item:hover .item-content-wrapper {
  height: 150px;
}

.song-title, .song-description {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.song-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-color);
}

.song-description {
  font-size: 16px;
  color: var(--text-color);
  opacity: 0.8;
}

.icon-group {
  transform: scale(0);
  opacity: 0;
  display: flex;
  gap: 8px;
  transition: transform 0.3s ease, opacity 0.1s ease;
  transform-origin: left top;
}

.icon-group > a > img {
  width: 40px !important;
  height: 40px;
  background-color: white;
  color: var(--text-color);
  padding: 12px;
  border-radius: 50%;
}

.custom-btn {
  transition: transform 0.3s ease;
}

.custom-btn:hover {
  transform: translateY(-3px);
}

/* --- Custom Input style --- */
input[type="text"], textarea {
  background-color: transparent !important;
  color: var(--text-color);
}

.btn-primary  {
  padding: 24px 48px !important;
  background-color: var(--btn-bg-color) !important;
  border: none !important;
  border-radius: 32px !important;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: var(--btn-bg-hover-color) !important;
}

.underline-input-container {
  position: relative;
}

.underline-input-container .form-control {
  border: none;
  border-radius: 0;
  padding-left: 0;
  border-bottom: 1px solid #ced4da;
  
  box-shadow: none !important; 
  
  background-color: transparent;
}

.underline-input-container .form-control:focus {
  border-bottom-color: transparent;
}

.underline-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  
  transform: scaleX(0);
  transform-origin: left;
  
  transition: transform 0.4s ease-in-out;
}

.underline-input-container .form-control:focus ~ .underline-animation {
  transform: scaleX(1);
}

.underline-input-container .form-floating > label {
    background: transparent;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    background-color: transparent; 
    padding: 0 5px;
}

/* --- Oval rings --- */
.oval-wrapper {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 700px;
}

.oval-wrapper > h1 {
  z-index: 20;
  font-size: 108px;
  pointer-events: none;
}

.oval-container {
  z-index: 10;
  position: absolute;
  width: clamp(600px, 60vw, 800px);
  height: clamp(200px, 20vw, 250px);
  transform: rotate(-15deg);
}

.oval-container:first-of-type {
  top: 100px;
}

.oval-container:last-child {
  bottom: 160px;
}

#oval-1, #oval-2 {
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  box-sizing: border-box;
}

.element {
  position: absolute;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}

.element a {
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  color: var(--text-color);

  z-index: 999;
}

.element span {
  transform: rotate(15deg);
  position: absolute;
  margin-left: 30px;
  width: 300px;
  margin-top: 76px;
}

.element img {
  width: 72px;
  height: 72px;
}

.element:hover {
  transform: scale(1.2); /* Add a hover effect to the elements */
}

/* ================================================= */
/* --- CUSTOM MOBILE NAVIGATION STYLES           --- */
/* ================================================= */

.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 1011;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* --- The Main Panel --- */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1010;
  padding: 24px 5%;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  color: white;
  overflow-y: auto;

  /* Flexbox for vertical centering */
  display: flex;
  flex-direction: column;
}

.mobile-nav-panel.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-shrink: 0;
  /* Prevents header from shrinking */
}

.mobile-nav-header .logo {
  position: static;
  opacity: 1;
}

.close-btn {
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* --- Custom Flex Column Menu --- */
.mobile-nav-panel .nav-menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.mobile-nav-panel .nav-menu > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;

  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-panel .nav-menu li {
  float: none;
  text-align: center;
  width: 100%;

  list-style: none;
}

.mobile-nav-panel .nav-menu > ul > li > a {
  color: white;
  font-size: 20px;
  padding: 8px 0;

  text-align: start;
}

/* --- Accordion Submenu Styling --- */
.mobile-nav-panel .submenu-wrapper {
  position: static;
  display: none;
  padding-top: 8px;
  padding-left: 0;
}

.mobile-nav-panel .submenu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mobile-nav-panel .submenu-content li {
  margin-bottom: 0;
}

.mobile-nav-panel .submenu-content li a {
  font-size: 16px;
  font-weight: normal;
  color: var(--text-hint-color);
}

.mobile-nav-panel a::after {
  display: none;
}

.mobile-nav-panel .nav-right {
  display: flex;
}

/* --- Custom scroll bar --- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ================================================= */
/* --- RESPONSIVE MEDIA QUERIES                  --- */
/* ================================================= */
@media (max-width: 1556px) {
  .artist-modal {
    width: 400px;
  }

  .swiper {
    width: 160px;
    height: 230px;
  }
}

@media (max-width: 1443px) {
  .upcoming-arrow {
    width: 96px;
    height: 96px;
  }

  .upcoming-arrow > img {
    width: 32px;
    height: 32px;
  }

  .book-card {
    height: 500px;
  }

  .book-card.active {
    width: 320px;
  }
}

@media (max-width: 1378px) {
  .artist-modal-single > div {
    width: 120%;
  }

  .artist-modal-single {
    transform: scale(0.9);
    left: -60%;
  }
}

@media (max-width: 1226px) {
  .nav-container,
  .nav-right {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .article-section {
    overflow: hidden;
    background-size: cover;
  }
  
  .book-container-wrapper {
    justify-content: center;
  }

  .upcoming-section h1 {
    font-size: 64px;
  }
  
  .oval-wrapper {
    height: auto;
    padding: 128px 24px;
  }

  .oval-wrapper > h1 {
    position: static;
    font-size: clamp(48px, 15vw, 80px); /* Responsive font size */
    margin-bottom: 32px;
    line-height: 1.1;
    pointer-events: auto; /* Restore clickability for mobile layout if needed */
  }

  .oval-container {
    position: static;
    transform: none;
    border: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  
  .oval-container:first-of-type {
    top: auto;
    bottom: auto;
    margin-bottom: 32px;
  }
   .oval-container:last-child {
    top: auto;
    bottom: auto;
  }

  #oval-1, #oval-2 {
    display: none;
  }

  .element {
    position: static !important;
    transform: none !important;
    width: auto;
    height: auto;
  }
  
  .element:hover {
    transform: scale(1.1) !important;
  }

  .element a {
    font-size: 22px;
  }

  .element span {
    transform: none;
    position: static;
    margin-left: 16px;
    width: auto;
    margin-top: 0;
  }

  .element img {
    width: 56px;
    height: 56px;
  }

  .element:empty {
    display: none;
  }

  /* --- Artist Modal Responsive (Tablet) --- */
  .artist-modal-wrapper {
    width: 90%;
    padding: 24px 56px;
  }

  .artist-modal-content {
    height: 100%;
  }

  .artist-modal-content h1 {
    font-size: 60px;
  }

  .artist-modal-image > div > img {
    width: 350px;
    height: 400px;
  }

  .artist-modal-single img {
    height: 80px;
  }

  .artist-modal-show {
    transform: scale(0.9);
    right: -55%;
  }

  .artist-modal-show img {
    width: 250px;
  }

  .artist-modal-show .box {
    padding: 8px 56px;
  }

  .artist-modal-presenter {
    transform: scale(0.9);
    left: -50%;
  }
}

@media (max-width: 1024px) {
  .masonry-wrapper {
    column-count: 3;
  }

  .carousel-container {
    padding: 0;
  }

  .image-item-wrapper > img {
    height: 300px;
  }

  .hero-item-hover {
    font-size: 12px;
    padding: 8px 8px 8px 48px;
  }

  .hero-item-hover img {
    width: 48px;
  }
}

@media (max-width: 991px) {
  .mission-content {
    padding: 5%;
  }

  .vision-content h4 {
    text-align: center;
  }

  .article-2 > img, .article-description-2 {
    height: 100%;
  }

  .new-release-section {
    height: 900px;
  }

  .artist-modal {
    width: 300px;
  }

  .artist-modal-social {
    padding: 16px 100px;
    transform: scale(0.7);
    right: -40%;
  }

  .artist-modal-show {
    right: -75%;
  }

  .swiper {
    width: 120px;
    height: 200px;
  }

  .artist-modal-presenter {
    bottom: -64px;
  }

  .artist-modal-single {
    left: -70%;
    top: 24px;
  }

  #close-modal-btn {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
  }
}

@media (max-width: 786px) {
  .founder-content > h4 {
    font-size: 56px;
  }

  .text-header {
    font-size: 72px;
  }

  .oval-wrapper {
    flex-direction: column;
    padding: 48px 24px !important;
  }
  
  .oval-wrapper > h1 {
    font-size: 80px;
  }

  .masonry-wrapper {
    column-count: 2;
  }

  .box-music-content, .box-music-content-description {
    flex-direction: column;
  }

  .box-music-content {
    justify-content: center;
    align-items: center;

    gap: 32px;
  }

  .box-music-content-description > h1 {
    font-size: 56px;
    text-align: center;
  }

  .artist-wrapper > h1 {
    font-size: 108px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-menu {
    text-align: center;
  }

  .footer-menu > li > div {
    justify-content: center;
  }

  .footer-menu a {
    font-size: 16px;
  }

  .new-release-section h1 {
    font-size: 56px;
  }

  .new-release-section {
    height: 800px;
  }

  /* --- Artist Modal Responsive (Mobile) --- */
  .artist-modal-wrapper {
    width: 90%;
    height: 90vh;
    padding: 16px;
    overflow-y: auto;
  }

  .artist-modal-content {
    gap: 24px;
  }

  .artist-modal-header {
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .artist-modal-header > h1 {
    font-size: 32px;
  }

  .artist-modal-content h1 {
    font-size: 40px;
    padding: 0;

    flex-grow: 1;
    text-align: center;
  }

  #close-modal-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .artist-modal-image > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .artist-modal-image > div > img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .artist-modal-single,
  .artist-modal-show,
  .artist-modal-presenter {
    position: static;
    transform: none;
    width: 100%;
    max-width: 350px;
  }

  .artist-modal-show {
    margin-top: 48px;
  }

  .artist-modal-single img {
    height: 60px;
  }
  
  .artist-modal-single > div {
    width: 100%;
    justify-content: flex-start;
  }

  .artist-modal-single .play-icon {
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
  }

  .artist-modal-single .single-play-icon {
    padding: 12px;
  }
  
  .artist-modal-social {
    padding: 16px;
    width: 100%;
    right: 0;
    bottom: -32px;
    max-width: 350px;

    clip-path: path("M 0,0 L 318,0 A 32,32 0,0,1 350,32 L 350,76 L 32,76 A 32,32 0,0,1 0,44 Z");
  }
  
  .artist-modal-social .d-flex {
    justify-content: center;
  }

  .artist-modal-show {
    right: 0;
  }
  
  .artist-modal-show img {
    width: 100%;
  }

  .artist-modal-presenter {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .artist-image {
    display: flex;
    justify-content: center;
    position: relative;
  }

  .artist-modal {
    width: 350px;
  }

  .hero-item-hover {
    min-width: 300px !important;
    font-size: 8px;
    padding: 8px 8px 8px 32px;
  }

  .hero-item-hover img {
    width: 24px !important;
  }
}

@media (max-width: 480px) {
  .masonry-wrapper {
    column-count: 1;
  }
}