/* GLOBAL */
body {
  margin: 0;
  padding: 0;
  background: #111;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Headings + overlay text use Roboto Mono */
h1, h2, .hero-text {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
}

/* Center all images */
img {
  display: block;
  margin: 0 auto;
}

/* LOGO */
.logo {
  width: 250px;
  margin-top: 20px;
}

.tagline {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 60vh;
  background: url("your-hero-image.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  padding: 20px 30px;
  border-radius: 10px;
}

/* VIDEO SECTION */
.video-thumb {
  width: 300px;
  border-radius: 10px;
  margin-top: 10px;
}

/* SOCIALS */
.socials ul {
  list-style: none;
  padding: 0;
}

.socials li {
  margin: 8px 0;
}

.socials a {
  color: #9cf;
  text-decoration: none;
}

/* GALLERY */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.gallery-container img {
  width: 250px;
  border-radius: 8px;
}

/* SPOTIFY */
.spotify-cover {
  width: 250px;
  border-radius: 10px;
  transition: 0.3s;
}

.spotify-cover:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* CONTACT */
a {
  color: #9cf;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("background.jpeg");
  background-size: cover;        /* fills the whole screen */
  background-position: center;   /* keeps the image centered */
  background-repeat: no-repeat;  /* prevents tiling */
  background-attachment: fixed;  /* optional: creates a parallax effect */
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* adjust darkness */
  z-index: -1;
}
