/* Base styles */
html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  background-color: black;
}


header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.logo-container {
  position: absolute;
  top: 0px;
  left: 20px;
  z-index: 1001; /* Above background and nav */
}

.logo {
  max-width: 50px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5)); /* Optional: adds contrast */
}
@media (max-width: 768px) {
  .logo-container {
    top: 30px;
    left: 10px;
  }

  .logo {
    max-width: 40px;
  }
}


/* Background image */
#bgImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;       /* Full viewport width */
  height: 100vh;      /* Full viewport height */
  object-fit: cover;  /* Scale image, keep aspect ratio */
  object-position: center top; /* Keep faces/heads visible */
  z-index: -1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #bgImage {
    height: 100vh;           /* Match screen height */
    object-position: center; /* Center image better on smaller screens */
  }
}

@media (max-width: 480px) {
  #bgImage {
    height:100vh;
    object-fit: contain;     /* Prevents cutting off faces on very small screens */
    background-color: #ffffff;  /* Fills gaps if image doesn’t cover */
  }
}




/* Desktop Navigation */
.nav-desktop {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  background-color: rgba(20, 20, 20, 0.95);
  padding: 1rem;
  z-index: 1000;
}

.nav-desktop a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: #ffcc00;
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 60px;
  right: 20px;
  padding: 1rem;
  border-radius: 8px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-mobile.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

/* Default: Desktop */
.overlay {
  position: absolute;
  top: 50%;            /* a little spacing from top */
  left: 5%;            /* spacing from left */
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 8px;
  max-width: 90%;
  color: #fff;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .overlay {
    top: 50%;           /* closer to top on smaller screens */
    left: 5%;
    padding: 1.2rem;
    max-width: 95%;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}



/* Responsive Rules */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-mobile {
    display: none; /* Hidden until toggled */
  }

  #bgImage {
    height: 100vh;
  }
}

@media (min-width: 769px) {
  .nav-mobile,
  .hamburger {
    display: none;
  }
}

/* Section styling */
section {
  padding: 2rem;
  background-color: #111;
}


.about-section {
  padding: 3rem 2rem;
  background-color: #111;
  color: white;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    text-align: center;
  }
}



.mixes-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.mixes-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.mix-card {
  background-color: #222;
  border-radius: 8px;
  padding: 1rem;
  width: 300px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.mix-btn {
  background-color: #111;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.mix-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.mix-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

audio {
  width: 100%;
}



.gallery-section {
  padding: 3rem 2rem;
  background-color: #111;
  color: white;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gallery-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.gallery-static {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Wrapper enforces consistent poster shape */
.gallery-static .img-wrapper {
  width: 300px;              /* adjust for desktop size */
  aspect-ratio: 3/4;         /* tall ratio, good for portraits */
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

/* Image fills wrapper, but you control the focus */
.gallery-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* cinematic fill */
  object-position: 50% 20%;   /* focus higher so heads stay visible */
  transition: transform 0.3s ease;
}

.gallery-static img:hover {
  transform: scale(1.05);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .gallery-static .img-wrapper {
    width: 100%;          /* full width on mobile */
    aspect-ratio: 3/4;    /* keep portrait ratio */
  }
}


/* Carousel Container */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px; /* adjust for your layout */
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

/* Track */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Slides */
.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide .img-wrapper {
  width: 100%;
  aspect-ratio: 3/4;    /* portrait poster style */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills the box */
  object-position: 50% 15%; /* shift focus up to keep heads in */
  display: block;
}




/* Captions inside image */
.caption {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
}

/* Buttons overlay */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 28px;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .carousel-slide img {
    height: 40vh; /* smaller height on mobile */
  }
  .caption {
    font-size: 12px;
    padding: 6px 10px;
  }
  .carousel-btn {
    font-size: 22px;
    padding: 8px 12px;
  }
}



.events-contact {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #111;  /* dark vibe */
  color: #fff;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
}

.events-contact h2,
.events-contact h3 {
  margin-bottom: 1rem;
}

.events-contact p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

/* Social Links */
.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social-links li {
  margin: 0;
}

.social-links a {
  display: block;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

/* Platform Colors */
.social-links a.instagram {
 /*  background: #e1306c; */
   background: #000000;
}
.social-links a.tiktok {
  background: #000000;
}
.social-links a.facebook {
/*   background: #1877f2; */
   background: #000000;
}
.social-links a.twitter {
  background: #000;
}
.social-links a.linkedin {
/*   background: #0077b5; */
   background: #000000;
}

/* Mobile: stack full width */
@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .social-links a {
    width: 100%;
  }
}







footer {
  text-align: center;
  padding: 1rem;
  background-color: #222;
}
