body {
  color: #0e0f19;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  font-size: 16px;
  line-height: 1.75rem;
  padding-top: 0px;
  top: 0;
}

body.admin-bar .navbar.sticky-top {
  top: 0; /* Adjust for the height of the WordPress admin bar */
}

@media screen and (max-width: 782px) {
  body.admin-bar .navbar.sticky-top {
    top: 0; /* Adjust for the height of the WordPress admin bar on smaller screens */
  }
}

.navbar {
  background-color: #0e0f19;
  transition: background-color 0.3s ease; /* Smooth transition for the background color change */
  z-index: 100000000;
  margin-top: 0;
}

.nav-link:hover {
  color: #d63384 !important;
}

.nav-link.active {
  color: #d63384 !important;
  font-weight: 600 !important;
}

.logo {
  height: 50px;
  border-radius: 50%;
  outline: 2px solid #fff;
  padding: 4px;
}

.page-banner {
  top: 0;
  display: flex;
  height: 69vh;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 0;
  overflow: hidden;
}

.parallax-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  backface-visibility: hidden;
  will-change: transform;
}

.page-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
}

h1 {
  color: #fff;
  font-family: Inter;
  font-size: 58px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 8px;
  position: relative; /* Added to position the ::before pseudo-element relative to h1 */
}

.sticky-top {
  position: -webkit-sticky;
  position: fixed;
  top: 0;
  z-index: 1020;
  width: 100%;
}

h1::before {
  content: "#";
  color: #d63384;
  font-family: Inter;
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute; /* Position the ::before pseudo-element absolutely */
  left: -48px; /* Move it to the left of the h1 */
  top: 0;
}

h3 {
  color: #0e0f19;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 64px;
  position: relative;
}

h3::before {
  content: "#";
  color: #d63384;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  left: -28px;
  top: 0;
}

/* Responsive styles for small devices */
@media (max-width: 768px) {
  h1 {
    position: static;
  }

  h1::before {
    position: static;
    padding-right: 8px;
  }

  h3 {
    position: static;
  }

  h3::before {
    position: static;
    padding-right: 4px;
  }
}

h2 {
  color: #fff;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}

.page-section {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 128px;
  /* background-color: yellowgreen; */
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

/* BUTTON */
::before,
::after {
  position: absolute;
  content: "";
}

.btn-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  max-width: 1000px;
  margin: 0;
}

.btn {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-width: 150px;
}

.btn span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  transition: 0.3s;
}

.btn-3 {
  padding: 5px;
}
.btn-3 span {
  color: #0e0f19;
  background-color: #fff;
}
.btn-3::before,
.btn-3::after {
  background: transparent;
  z-index: 2;
}

.btn-dark-3 {
  padding: 5px;
}
.btn-dark-3 span {
  color: #fff;
  background-color: #0e0f19;
}
.btn-dark-3::before,
.btn-dark-3::after {
  background: transparent;
  z-index: 2;
}

.btn.dark-hover-border-2::before,
.btn.dark-hover-border-2::after {
  width: 10%;
  height: 25%;
  transition: 0.35s;
}

.btn.dark-hover-border-2::before {
  bottom: 0;
  left: 0;
  border-left: 1px solid #0e0f19;
  border-bottom: 1px solid #0e0f19;
}

.btn.dark-hover-border-2::after {
  top: 0;
  right: 0;
  border-right: 1px solid #0e0f19;
  border-top: 1px solid #0e0f19;
}

.btn.dark-hover-border-2:hover::before,
.btn.dark-hover-border-2:hover::after {
  width: 99%;
  height: 99%;
}

/* 12. hover-border-2 */
.btn.hover-border-2::before,
.btn.hover-border-2::after {
  width: 10%;
  height: 25%;
  transition: 0.35s;
}

.btn.hover-border-2::before {
  bottom: 0;
  left: 0;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.btn.hover-border-2::after {
  top: 0;
  right: 0;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}

.btn.hover-border-2:hover::before,
.btn.hover-border-2:hover::after {
  width: 99%;
  height: 99%;
}

/* ARTISTS */

/* Artist Card */
.artist-card {
  position: relative;
  overflow: hidden;
  display: block;
  padding-top: 100%;
}

.artist-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 0, 92, 0) 42%,
    rgba(255, 0, 92, 0.3) 69%,
    rgba(14, 15, 25, 0.7) 100%
  );
}

.artist-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
}

.artist-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.artist-card .artist-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 90px;
  padding: 16px 32px;
  align-items: center;
  flex-shrink: 0;
  border-left: 16px solid #d63384;
  background-color: #0e0f19;
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: 5;
}

.artist-card:hover img {
  transform: scale(1.1);
}

.artist-card:hover .artist-name {
  transform: translateY(0);
}

.artist-name h4 {
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.padding-0 {
  padding: 0;
}

.centered-row {
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

/* NEWS SECTION */

.news-section {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.news-item {
  display: flex;
  align-items: center;
  align-self: stretch;
  background-color: #0e0f19;
  padding: 0;
  height: 400px;
}

.news-item.inverted .news-content {
  border-right: 0;
}
.news-image {
  overflow: hidden;
  flex: 1;
  height: 400px;
  background-color: #fff;
  position: relative;
}
.news-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 0, 92, 0) 42%,
    rgba(255, 0, 92, 0.3) 69%,
    rgba(14, 15, 25, 0.7) 100%
  );

  z-index: 1;
}

.news-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.news-content {
  flex: 1;
  display: flex;
  height: 300px;
  padding: 0px 64px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
}

.pink-line {
  width: 24px;
  height: 304px;
  background-color: rgb(214, 51, 132);
}

.news-item.inverted {
  flex-direction: row-reverse;
}

.news-item h4 {
  color: #fff;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.news-item p {
  color: #fff;
  margin-bottom: 36px;
}

/* Responsive styles for small devices */
@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    height: 800px;
  }

  .news-item .news-image,
  .news-item .news-content {
    flex: none;
    width: 100%;
    height: 400px;
  }

  .news-item .news-content {
    flex: none;
    width: 100%;
    padding: 0 32px;
  }

  .news-item.inverted {
    flex-direction: column;
  }
}

.owner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  align-self: stretch;
}

.owner-avatar {
  position: relative;
  flex-shrink: 0;
  width: 100%; /* Set a width */
  padding-top: 100%; /* This makes it square */
  background-color: #f1f1f1;
}

.owner-avatar img {
  position: absolute; /* Absolute position the image */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the container */
}

.owner-avatar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 0, 92, 0) 42%,
    rgba(255, 0, 92, 0.3) 69%,
    rgba(14, 15, 25, 0.7) 100%
  );
}

.owner-bio {
  display: flex;
  padding: 48px 32px 32px 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  position: relative;
}

.owner-bio p {
  margin: 0;
}

.owner-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: -32px;
  display: flex;
  height: 64px;
  padding: 16px 32px;
  align-items: center;
  flex-shrink: 0;
  border-right: 16px solid #d63384;
  background-color: #0e0f19;
  z-index: 3;
  margin-left: 32px;
}

.owner-name h4 {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 24px;
}

.main-gradient {
  background: linear-gradient(180deg, #ff005c 0%, #0e0f19 100%);
}

.black-gradient {
  background: linear-gradient(180deg, #3e404d 0%, #0e0f19 100%);
}

.spotify-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.spotify-description h3 {
  color: #fff;
  margin: 0;
}

.spotify-description p {
  color: #fff;
  margin: 0;
}

.spotify-description h3::before {
  content: "";
}

.spotify-playlist iframe {
  border-radius: 0;
}

.service-card {
  padding-top: 32px;
}

h3.partners {
  margin: 0;
  color: #fff;
}

h3.partners::before {
  content: "#";
  color: #fff;
}

.partners-div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
  align-content: space-evenly;
}

.partner-col {
  align-self: center;
  display: flex;
  width: auto;
}

.partner-logo {
  height: 36px;
  width: auto;
  padding: 0 24px 0;
}

.footer-logo {
  max-width: 160px; /* Adjust as needed */
  display: block;
  border-radius: 50%;
  outline: 4px solid #fff;
  padding: 8px;
}

.contact-info p {
  margin-bottom: 0.5rem; /* Adjust spacing between address and phone/email */
}

.footer-content {
  gap: 2rem;
}

.contact-info a {
  text-decoration: none;
  color: #d63384;
  font-weight: 600;
}

.bg-label-dark {
  background-color: #0e0f19;
}

.btn.holder.s-screen {
  display: none;
}

/* Responsive styles for small devices */
@media (max-width: 991px) {
  .btn-holder.l-screnn {
    display: none;
  }
  .btn.holder.s-screen {
    display: flex;
  }
}
