html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
}

.cta-banner {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #7fffd4;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    animation: fadeInUp 1.5s ease-out;
}

.music-socials {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.music-socials a {
    color: #ccc;
    transition: color 0.3s ease;
}

.music-socials a:hover {
    color: #7fffd4;
}


.cta-banner a {
    color: #fff;
    text-decoration: underline;
}

.cta-banner a:hover {
    color: #00ced1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}


.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background-color: #111;
  z-index: 1000;
  text-align: center;
  padding: 1rem 0;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #a3cb38;
  outline: none;
}

/* Social Icons */
.social-icons {
  margin-top: 0.5rem;
}

.social-icons a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover,
.social-icons a:focus {
  color: #a3cb38;
  outline: none;
}

/* Header */
.image-header {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../img/MM-show/2025-2-28 bone brothel-00013.jpg') no-repeat center center/cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}

.header-logo {
  width: 300px;
  max-width: 90%;
  opacity: 0;
  animation: fadeIn 2s ease-in-out 0.5s forwards;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Sections */
section {
  padding: 100px 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #a3cb38;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.divider {
  height: 4px;
  width: 60px;
  background: #a3cb38;
  margin: 1rem auto 2rem;
}

/* Cards */
.card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  margin: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}

.photo-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.photo-grid img:hover,
.photo-grid img:focus {
  transform: scale(1.03);
  outline: none;
}

.photo-filter {
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
}

#showFilter {
  padding: 6px 12px;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  color: #fff;
  z-index: 2000;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  background-color: #111;
  padding: 2rem;
  transition: left 0.3s ease;
  z-index: 1500;
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin: 1rem 0;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-socials {
  margin-top: 2rem;
}

.mobile-socials a {
  margin-right: 1rem;
  color: #fff;
  font-size: 1.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #111;
  color: #aaa;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.image-grid a img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Media Queries */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .image-header {
    background-image: url('../img/BB_logo_green.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
  }

  .overlay .header-logo {
    display: none;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }
}
