/* Reset default spacing and box model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main wrapper for perspective effect */
#wrapper {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 10px;
}

/* Hero section container with 3D layering */
.container {
  height: 100%;
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  z-index: -1;
}

/* Base positioning for background and foreground */
.background, .foreground {
  position: absolute;
}

/* Foreground image styling */
.foreground {
  transform: translateY(45%) translateZ(-10px) scale(2);
  object-fit: contain;
  width: 70%;
  height: 70%;
}

/* Background video/image styling */
.background {
  transform: translateZ(-30px) scale(4);
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Main heading styling */
h1 {
  transform: translateY(-180%);
  font-size: 10rem;
  text-transform: uppercase;
  color: rgb(255, 230, 0);
  text-shadow: 0 0 10px rgb(172, 172, 44);
  font-family: serif;
}

/* Section with image background */
section {
  background-image: url(media/tbsmextended.jpg);
  object-fit: cover;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Glassmorphism effect box */
.glass {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.9px);
  -webkit-backdrop-filter: blur(3.9px);
  border: 1px solid rgba(255, 255, 255, 0.81);
}

/* Section heading */
.secheading {
  color: yellow;
  text-shadow: 0 0 10px yellow;
  text-align: center;
  font-size: 5rem;
  text-transform: uppercase;
  padding: 2rem 10rem 0 10rem;
}

/* Paragraph text */
.text {
  font-size: 1.5rem;
  padding: 0 10rem;
  margin: 2.5rem 0;
  font-family: sans-serif;
  color: yellow;
  text-shadow: 0 0 10px rgb(209, 96, 35);
}

/* Section title blocks */
.heading {
  color: rgb(255, 0, 0);
  text-shadow: 0 0 10px red;
  padding: 1rem;
  font-size: 3.5rem;
  width: fit-content;
  height: fit-content;
  font-family: serif;
  margin: 5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.8px);
  -webkit-backdrop-filter: blur(2.8px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-sizing: border-box;
}

/* Background sections (career/vision) */
.bg {
  background-color: rgb(254, 0, 0);
  width: 100%;
  height: 100%;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Career background image */
.bg1 {
  background-image: url(media/career.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Vision background image */
.bg2 {
  background-image: url(media/vision.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Discography background */
.background2 {
  background-image: url(media/seedhemaut.jpg);
  background-size: 140%;
  background-position: center;
  z-index: -2;
  padding-top: 100px;
  padding-bottom: 50px;
}

/* Discography container */
.container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(8.5px);
  border: 1px solid rgba(255, 255, 255, 0.61);
  color: rgb(212, 207, 207);
  text-shadow: 0 0 10px rgb(210, 200, 200);
  font-family: serif;
  font-size: 4rem;
}

/* Album cards layout */
.albums {
  background-color: rgba(0, 255, 255, 0);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
}

/* Individual album card */
.cards {
  width: 32%;
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  padding-top: 20px;
}

/* Album cover image */
.cards img {
  border-radius: 10px;
}

/* Album title text */
.cards figcaption {
  font-size: 2rem;
  color: rgb(222, 222, 222);
}

/* Hover effect on cards */
.cards:hover {
  transform: scale(1.07);
  transition: 0.4s ease;
  filter: drop-shadow(0 0 20px silver);
}
