.elementor-kit-685{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-685 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//*REMOVE DEFAULT MARGINS AND PADDINGS FROM HEADINGS*/
.music-description h1,
.music-description h2,
.music-description h3,
.music-description h4,
.music-description h5,
.music-description h6,
.music-description p,
.music-description span {
  margin: 0;
}



/*MUSIC SECTION*/
.music-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.music-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  
}



/* Desktop */
@media screen and (min-width: 1024px) {
  .music-item {
     flex-direction: row;
    gap: 116px;
  }
}

.music-thumbnail-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1; /* maintain square */
  flex: 0 0 auto;      /* do not grow */
  overflow: hidden;
}

.music-thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* Optional: make content container shrink to content width on desktop */
@media screen and (min-width: 768px) {
  .music-content-container {
    flex: 1 1 auto;
    gap: 40px;
  }
}

.music-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.music-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.featured-artist {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.music-btn {
  display: inline-block;
  width: fit-content;
  padding: 12px 16px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.music-btn:hover {
  background: #fff;
  color: #000;
}

/* For tablets and desktop */
@media screen and (min-width: 768px) {
  .music-description {
    gap: 16px;
  }

  .music-title {
    font-size: 40px;
    line-height: 52px;
    font-weight: 500;
  }

  .featured-artist {
    font-size: 24px;
    line-height: 29px;
    font-weight: 500;
  }
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 767px) {
  .music-thumbnail-container {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .music-content-container {
    align-items: center;
    text-align: center;
  }
}



/*VIDEO SECTION*/


.video-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  position: relative;
}

.video-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.video-item:hover::after {
  opacity: 0;
}

.video-thumbnail-container {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-description {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.video-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.view-video-btn {
  all: unset; /* removes ALL default button styles */
  display: inline;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.3s ease;
}

.view-video-btn:hover {
  opacity: 0.8;
}


/* Tablet and Desktop */
@media screen and (min-width: 770px) {
  .video-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .video-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
  }
}



/* LATEST MUSIC SLIDER STYLES */

.latest-music-slider {
  width: 100%;
  box-sizing: border-box;
}

/* Swiper wrapper reset so slides align nicely */
.latest-music-slider .swiper-wrapper {
  align-items: flex-start; /* keep slides top-aligned */
}
 
/* Each slide / card */
.latest-music-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px !important;
  text-align: left;
  box-sizing: border-box;
}

/* Fixed thumbnail size requested */
.latest-music-thumbnail-container {
  width: 298px;
  height: 240px;
  overflow: hidden;
  display: block;
  box-sizing: border-box;
}

.latest-music-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title */
.latest-music-title {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Button */
.latest-music-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 12px;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.latest-music-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Responsive tweaks */
@media (max-width: 1023px) {
  .latest-music-thumbnail-container {
    width: 260px;
    height: 208px;
  }
  .latest-music-title {
    font-size: 13px;
  }
  .latest-music-btn {
    font-size: 12px;
    padding: 7px 10px;
  }
}

@media (max-width: 767px) {
  .latest-music-thumbnail-container {
    width: 320px;
    height: 260px;
  }
  .latest-music-title {
    font-size: 16px;
  }
  .latest-music-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}



/* LATEST VIDEO SLIDER STYLES*/

.latest-video-slider {
  width: 100%;
  box-sizing: border-box;
}

.latest-video-swiper .swiper-wrapper {
  align-items: start;
}

.latest-video-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px !important;
  box-sizing: border-box;
}

.latest-video-thumbnail-container {
  width: 298px;
  height: 240px;
  overflow: hidden;
  display: block;
  box-sizing: border-box;
}

.latest-video-thumbnail {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.latest-video-title {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}



.latest-video-btn,
.latest-music-btn {
  all: unset;               /* resets *everything* (safest for <button>) */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  cursor: pointer;

  padding: 8px 12px;
  min-height: 36px;
  line-height: 1;

  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .02em;

  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.latest-video-btn:hover,
.latest-music-btn:hover {
  background: #ffffff;
  color: #000000;
}


/* Responsive */
@media (max-width: 1023px) {
  .latest-video-thumbnail-container {
    width: 260px;
    height: 208px;
  }
  .latest-video-title { font-size: 13px; }
  .latest-video-btn { font-size: 12px; padding: 7px 10px; }
}

@media (max-width: 767px) {
  .latest-video-thumbnail-container {
    width: 320px;
    height: 260px;
  }
  .latest-video-title { font-size: 16px; }
  .latest-video-btn { font-size: 14px; padding: 8px 12px; }
}/* End custom CSS */