@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Figtree, Arial, sans-serif;
  scroll-behavior: smooth;
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: rgb(80, 194, 249) #6b6b6b; /* thumb color, track color */
}

/* Works in Chrome, Edge, Safari, Opera */
::-webkit-scrollbar {
  width: 12px; /* width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* color of the track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(80, 194, 249); /* color of the scroll thumb */
  border-radius: 10px; /* roundness of the thumb */
  border: 2px solid #6b6b6b; /* creates padding around thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(69, 169, 220); /* color on hover */
}

body {
  background-color: #0e0e0e;
  color: #efefef;
}

hr {
  margin: 1rem 0;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

nav.blurred-background {
  position: absolute; /* or sticky, depending on your layout */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem 2rem;

  background: transparent; /* translucent layer */
  backdrop-filter: blur(10px); /* creates the blur effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */

  color: white;
  z-index: 1000;
  transition: height 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #efefef;
}

.logo-container img {
  width: 60px;
  margin-right: 1rem;
}

.logo-container p {
  font-size: 3rem;
}

.logo-container-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container button {
  display: none;
}

.links-container a {
  color: #efefef;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1.5rem;
  transition: color 0.3s ease-in-out;
}

.links-container a:hover {
  color: rgb(80, 194, 249);
}

.btn-container a,
.cta-book-now {
  background-color: rgb(80, 194, 249);
  padding: 1rem 2rem;
  border: none;
  border-radius: 1000px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: filter 0.3s ease-in-out;
  text-align: center;
}

.cta-book-now {
  width: 35%;
  text-align: center;
}

.btn-container a:hover,
.cta-book-now:hover {
  filter: brightness(85%);
}

/*** HEADER STYLES ***/
.header-section {
  background-image: url("images/about-header-bkgd-new.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
}

.gallery-header-section {
  background-image: url("../gallery/images/gallery-header-bkgd-new.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}

.about-header-text {
  z-index: 99;
  width: 70%;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-header-text span {
  font-size: 4;
  font-weight: bold;
  color: rgb(80, 194, 249);
}

.about-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(239, 239, 239);
}

.about-wrapper {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  gap: 2rem;
  width: 90%;
}

.about-card {
  flex: 1 1 30%;
  /* width: 50%; */
  display: flex;
  flex-direction: column;
  /* box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030; */
  border-radius: 1rem;
  /* border: 1px solid #efefef; */
  overflow: hidden;
}

.about-card-img {
  height: 400px;
}

.about-card-img img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.about-card-text {
  flex-basis: 67%;
  padding: 1rem;
  line-height: 1.5;
  background-color: #0e0e0e;
  /* color: #000120; */
  color: #fff;
}

.card-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.about-card-text p {
  font-size: 1.1rem;
}

.card-title p {
  font-size: 1.6rem;
}

.card-title p:nth-child(2) {
  color: rgb(80, 194, 249);
  font-style: italic;
}
.h2-class {
  text-align: center;
  font-size: 3rem;
  margin: 2rem 0;
}

#influences {
  padding-top: 4rem;
  width: 100%;
  color: #000;
  background-color: rgb(239, 239, 239) !important;
}

#influences h2,
#mentions h2 {
  text-align: center;
  font-size: 4rem;
}

/* Mentions */
#mentions {
  padding-top: 4rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  gap: 2rem;
  background-color: rgb(239, 239, 239) !important;
}

.mentions-wrapper {
  width: 90%;
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  padding: 1rem;
  gap: 2rem;
}

.mentions-column {
  flex: 1 1 33%;
}

.mentions-column ul {
  margin-left: 2rem;
}
/* Pics Slide Scroll */
/*** LOGO SCROLL ***/

.pics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  display: block;
  margin: 0 auto;
}

.pics-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  animation: slide 160s linear infinite;
  padding: 2rem 1rem;
  width: 100%;
}

.pics-slide div {
  flex: 1 1 30%; /* ✅ fixed width per item */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  background: #000;
  color: #fff;
  border-radius: 1rem;
}

.pics-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.pics-slide h3 {
  font-size: 2rem;
}

.pics-slide p {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.3;
  white-space: normal; /* ✅ allows text wrapping */
  text-wrap: wrap; /* modern browsers */
}

.photo-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.photo-row {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.photo-card {
  flex: 1;
  position: relative;
}

.photo-card img {
  width: 100%;
  height: 100%;
  /* border-radius: 1rem; */
  /* border: 1px solid #efefef; */
  box-shadow:
    0 2px 4px #0003,
    0 6px 20px #00000030;
}

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 1rem;
  font-size: 1.5rem;
  text-align: center;
  /* border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  border-radius: 0 0 1rem 1rem; */
}

.video-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.video-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.video-card {
  text-align: center;
  padding: 1rem;
  width: 25%;
  min-width: 300px;
  max-width: 400px;
  color: #efefef;
  border: 1px solid #efefef;
  border-radius: 1rem;
  /* background-color: #efefef; */
  /* box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030; */
}

.video-card img {
  width: 100%;
  margin-top: 1rem;
}

.link-container {
  position: relative;
  width: 100%;
}

.link-container a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #efefef;
  padding: 0.5rem;
  text-decoration: none;
  font-size: 2.4rem;
  transition: color 0.3s ease-in-out;
}

.link-container a:hover {
  color: #adadad;
}

.personal-work {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.personal-work p {
  color: #efefef;
  text-align: center;
}

.artist-horizontal-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  /* flex-wrap: wrap; */
  gap: 1rem;
  width: 60%;
}

.artist-container {
  flex-basis: 33%;
  display: flex;
  flex-direction: column;
  color: #efefef;
  border: 1px solid #efefef;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  gap: 2rem;
}

.artist-icons {
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.artist-icons i {
  font-size: 2rem;
  color: #efefef;
  transition: transform 0.3s ease-in-out;
}

.artist-icons i:hover {
  transform: translateY(-5px);
}

.artist-container h3 {
  font-size: 2rem;
}

.releases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.releases img {
  width: 20%;
  border-radius: 12px;
  border: 1px solid;
}

@media (max-width: 768px) {
  .pics-slide {
    flex-direction: column;
    align-items: center;
    animation: none;
    padding: 0;
    gap: 1rem;
  }
  .pics-slide div {
    width: 100%;
  }
  section {
    scroll-margin-top: 100px;
  }

  nav.blurred-background {
    position: fixed;
    display: block;
    flex-direction: column;
    justify-content: start;
    padding: 1rem;
    gap: 1rem;
    height: 100px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    background-color: #000;
  }

  .blurred-background.active {
    height: 100vh;
    background-color: #000000;
  }

  .links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .logo-container {
    justify-content: space-between;
    padding: 1rem 0;
  }

  .logo-container img {
    width: 40px;
    margin-right: 1rem;
  }

  .logo-container p {
    font-size: 2rem;
  }

  .mobile-nav-btn {
    width: 30px;
    height: 30px;
    padding: 0.2rem;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
  }

  /* when active, rotate 90 degrees */
  .mobile-nav-btn.active {
    transform: rotate(225deg);
  }

  .inner-circle {
    width: 12px;
    height: 12px;
    background-color: #efefef;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  .inner-circle.active {
    background-color: rgb(80, 194, 249);
  }

  .mobile-nav-btn .inner-circle:nth-child(1) {
    position: absolute;
    left: 0%;
    top: 0%;
    transform: translate(0%, 0%);
  }

  .mobile-nav-btn .inner-circle:nth-child(2) {
    position: absolute;
    right: 0%;
    top: 0%;
    transform: translate(0%, 0%);
  }

  .mobile-nav-btn .inner-circle:nth-child(3) {
    position: absolute;
    bottom: 0%;
    right: 0%;
    transform: translate(0%, 0%);
  }

  .mobile-nav-btn .inner-circle:nth-child(4) {
    position: absolute;
    left: 0%;
    bottom: 0%;
    transform: translate(0%, 0%);
  }

  .logo-container button {
    display: block;
  }

  .links-container {
    margin-top: 1rem;
  }

  .btn-container {
    margin-top: 1rem;
  }

  .btn-container a {
    display: block;
    width: 160px;
  }

  .cta-book-now {
    display: block;
    margin: 0 auto;
    width: 300px;
  }

  .header-section {
    background-attachment: scroll;
    background-position: 40%;
    overflow: hidden;
  }

  .gallery-header-section {
    background-attachment: scroll;
    overflow: hidden;
  }

  .about-header-text {
    top: 50%;
    width: 90%;
    text-align: justify;
    font-size: 1.6rem;
  }

  .gradient-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.75)
    );
  }

  .img-caption {
    font-size: 1.2rem;
  }

  .about-container {
    background-attachment: scroll;
  }

  .about-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
  }

  .about-card {
    width: 90%;
    flex-direction: column;
  }

  .about-card-img {
    flex-basis: 33%;
  }

  .about-card-img img {
    width: 100%;
    height: 100%;
    object-position: top;
  }

  .about-card-text {
    flex-basis: 67%;
    padding: 1rem;
  }

  .card-title p {
    font-size: 1.3rem;
  }

  .card-title p:nth-child(1) {
    font-weight: bold;
  }

  .mentions-wrapper {
    flex-direction: column;
    gap: 0;
    padding: 0 0 2rem 0;
  }

  .video-card {
    width: 100%;
  }

  .artist-horizontal-container {
    flex-direction: column;
    align-items: start;
    width: 100%;
  }

  .artist-container {
    flex-basis: 100%;
  }

  .releases {
    gap: 0.5rem;
  }

  .releases img {
    width: 25%;
    border-radius: 8px;
  }
}
