/* ===== RESET & GLOBAL ===== */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}


html, body {

  max-width: 100%;

  overflow-x: hidden;

}


body {

  background: #000;

  color: #fff;

  font-family: 'Oswald', sans-serif;

  min-height: 100vh;

  display: flex;

  flex-direction: column;

}

/* ===== VERTICAL NAV ===== */

nav {

  width: 300px;

  border-right: 1px solid #111;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  padding-left: 30px;

  gap: 18px;

}


nav a {

  color: #888;

  text-decoration: none;

  letter-spacing: 2px;

  font-size: 20px;

  transition: color 0.3s ease;

}


nav a:hover {

  color: #fff;

}

/* ===== CENTER CONTENT ===== */

.center {

  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  align-items: center;

  gap: 40px;

  padding-top: 40px;

}

/* ===== LOGO ===== */

.logo-wrapper video {

  width: 100%;

  max-width: 1000px;

  height: auto;

  pointer-events: none;

}


.header-logo img {

  width: 80px;

  height: auto;

  display: block;

}

/* ===== SOCIAL LINKS ===== */

.social-links {

  display: flex;

  gap: 22px;

}


.social-links a {

  color: #777;

  font-size: 20px;

  transition: color 0.3s ease, transform 0.3s ease;

}


.social-links a:hover {

  color: #fff;

  transform: translateY(-3px);

}

/* ===== RESPONSIVE LOGO & NAV ===== */

@media (max-width: 768px) {

  .header-logo img {

    width: 60px;

  }



  nav {

    width: 180px;

    padding-left: 16px;

    gap: 12px;

  }


  nav a {

    font-size: 15px;

    letter-spacing: 1px;

  }


  .center,

  section {

    padding-left: 20px;

    padding-right: 20px;

  }

}

/* ===== PHOTO GALLERY ===== */

#photos {

  padding: 4rem 2rem;

  max-width: 1200px;

  margin: auto;

}


#photos h2 {

  font-family: 'Oswald', sans-serif;

  font-size: 2rem;

  margin-bottom: 2rem;

  text-transform: uppercase;

  letter-spacing: 2px;

}


.photo-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 1.5rem;

}


.photo-grid img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 6px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}


.photo-grid img:hover {

  transform: scale(1.03);

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

}

/* ===== VLOGS ===== */

#vlogs {

  padding: 4rem 2rem;

  max-width: 1200px;

  margin: auto;

}


#vlogs h2 {

  font-family: 'Oswald', sans-serif;

  font-size: 2rem;

  margin-bottom: 2rem;

  text-transform: uppercase;

  letter-spacing: 2px;

}


.vlog-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2rem;

}



.vlog-grid iframe {

  width: 100%;

  height: 200px;

  aspect-ratio: 16/9;

  border-radius: 6px;

}

/* ===== ABOUT & CONNECT ===== */

#about,

#connect {

  max-width: 900px;

  margin: 3rem auto;

  padding: 0 1rem;

  font-family: 'Inter', sans-serif;

  color: #f0f0f0;

}


#connect {

  max-width: 600px;

  text-align: center;

}

/* ===== ARTISTS SECTION ===== */

#artists {

  max-width: 1000px;

  margin: 4rem auto;

  padding: 0 1.5rem;

  text-align: center;

}



.artist-grid {

  display: flex;

  gap: 2.5rem;

  align-items: center;

  padding: 1rem 1.5rem;

  overflow-x: auto;

  flex-wrap: nowrap;

  -webkit-overflow-scrolling: touch;

  position: relative;

}

/* ===== ARTIST CARD ===== */

.artist-card {

  flex: 0 0 250px;

  height: 250px;

  border-radius: 50%;

  overflow: hidden;

  cursor: pointer;

  position: relative;

  transition: transform 0.3s ease;

}


.artist-card > img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 50%;

  transition: transform 0.4s ease, filter 0.4s ease;

}


.artist-card:hover > img {

  transform: scale(1.1);

  filter: brightness(0.4);

}

/* NAME OVERLAY */

.artist-info {

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  color: #fff;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  opacity: 0;

  text-align: center;

  padding: 1rem;

  transition: opacity 0.4s ease;

}



.artist-card:hover .artist-info {

  opacity: 1;

}



/* POPUP PARAGRAPH OUTSIDE CIRCLE */

.artist-popup {

  position: fixed;

  top: 50%;

  left: 50%; /* outside circle */

  margin-left: 15px; /* spacing */

  transform: translateY(-50%);

  background: rgba(0, 0, 0, 0.95);

  color: #fff;

  padding: 15px;

  width: 250px;

  border-radius: 10px;

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease;

  z-index: 20;

}

.artist-card:hover .artist-popup {

  opacity: 1;

  transform: translateY(-50%) translateX(0);

  pointer-events: auto;

}



.artist-popup p {

  font-size: 13px;

  line-height: 1.4;

  margin: 0;

}



/* RESPONSIVE POPUP BELOW CIRCLE */

@media (max-width: 768px) {

  .artist-popup {

    left: 50%;

    top: 110%; /* below circle */

    transform: translateX(-50%) translateY(0);

  }



  .artist-card:hover .artist-popup {

    transform: translateX(-50%) translateY(0);

  }

}

/* Touch / mobile support using :active and :focus */

.artist-card:active > img,

.artist-card:focus > img {

  transform: scale(1.1);

  filter: brightness(0.4);

}



.artist-card:active .artist-info,

.artist-card:focus .artist-info {

  opacity: 1;

}



.artist-card:active .artist-popup,

.artist-card:focus .artist-popup {

  opacity: 1;

  transform: translateY(-50%) translateX(0);

  pointer-events: auto;

}

/* ===== FULL-SCREEN IFRAMES ===== */

iframe {

  width: 100%;

  height: 100vh;

  border: none;

}

/*===== ABOUT ===== */
.about-page {
  font-family: 'Inter', sans-serif;
  background-color: black;
  color: #fff;
  margin: 0;
}

#about {
  padding: 60px 20px;
  text-align: center;
}

.people-container {
  display: flex;
  flex-direction: column;   
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.person-card {
  width: 300px;
  background: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.person-card:hover {
  transform: translateY(-5px);
}

.person-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.person-info {
  padding: 20px;
}

.person-info h4 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px;
}

/* ===== RECENT ===== */
#recent {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */

footer {

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

}


