/* ============================================
   Butty & Recca - Old Skool DJ Website
   Dark/Grunge Theme - Mobile First
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Sticky Nav (Desktop Only)
   ============================================ */

.sticky-nav {
  display: none;
  position: fixed;
  top: -90px;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: top 0.3s ease;
}

.sticky-nav.visible {
  top: 0;
}

.sticky-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-nav-logo {
  height: 55px;
  width: auto;
}

.sticky-nav-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sticky-nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.sticky-nav-socials a:hover {
  transform: scale(1.15);
}

.sticky-nav-socials img {
  width: 34px;
  height: 34px;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.mixes .container {
  max-width: 1200px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  overflow: hidden;
}

.hero-img {
  display: block;
  width: 100%;
  max-width: 1150px;
  height: auto;
  margin: 0 auto;
}

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-arrow img {
  width: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   Gigs Section
   ============================================ */

.gigs {
  position: relative;
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.gigs-splatter {
  position: absolute;
  top: -15%;
  right: 5%;
  width: 50%;
  max-width: 938px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.gigs .container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  padding-left: 5%;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 2px;
  color: #fff;
  background: #111;
  display: inline-block;
  padding: 1px 6px;
  line-height: 1.4;
  transform: rotate(-2deg);
}

.gig-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.gig-list li {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 15px;
}

.gig-list li:last-child {
  border-bottom: none;
}

.btn-tickets {
  order: -1;
  margin-right: 15px;
  padding: 5px 14px;
  font-size: 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   Mixes Section
   ============================================ */

.mixes {
  padding: 60px 0;
  background: #0a0a0a url('../images/texture.jpg') center center repeat;
}

.mix-card {
  background: #fff;
  border: 4px solid #000;
  border-radius: 20px;
  margin-bottom: 50px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mix-card:hover {
  border-color: #1a1a1a;
}

.mix-header {
  background: #fff;
  padding: 14px 20px;
}

.mix-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background: #111;
  display: inline;
  padding: 4px 10px;
  line-height: 2;
}

.mix-body {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  gap: 14px;
}

.mix-artwork {
  display: none;
}

.mix-actions {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.mix-buttons {
  order: 1;
  display: flex;
  gap: 10px;
}

.mix-platforms {
  order: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.mix-platforms a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}

.mix-platforms a:hover {
  transform: scale(1.15);
}

.mix-platforms img {
  width: 30px;
  height: 30px;
}

.mix-platforms a:hover img {
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 36px;
}

.btn:hover {
  background: #fff;
  color: #111;
  border-color: #111;
}

.btn-tracklist.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.btn-download {
  text-decoration: none;
}

/* Luna Audio Player */
.luna-player {
  padding: 0 20px;
  background: #fff;
}

.luna-player .lunaaudioplaylist {
  display: none;
}

/* Tracklist Panel */
.tracklist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #111;
  border-top: 1px solid #333;
}

.tracklist.open {
  max-height: 1200px;
}

.tracklist p {
  padding: 20px;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6;
}

/* ============================================
   About Section
   ============================================ */

/* ============================================
   Logo Slider
   ============================================ */

.logo-slider {
  overflow: hidden;
  background: #0a0a0a;
}

/* ============================================
   Photo Slideshow
   ============================================ */

.photo-slideshow {
  background: #0f0f0f;
  padding: 40px 0;
}

.photoSwiper {
  max-width: 700px;
  margin: 0 auto;
}

.photoSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.photoSwiper .swiper-pagination,
.photoSwiper .swiper-button-next,
.photoSwiper .swiper-button-prev {
  display: none;
}

.logo-slider-track {
  display: flex;
  width: max-content;
  animation: slide 120s linear infinite;
}

.logo-slider-track img {
  height: 80px;
  width: auto;
  display: block;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   About Section
   ============================================ */

.about {
  position: relative;
  padding: 80px 0;
  background: url('../images/about-bg.jpg') center center / cover no-repeat fixed;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.about-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}

.about-sign {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 50px 0 15px;
  background: #fff;
  border-top: 1px solid #ddd;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: transform 0.2s ease;
}

.footer-socials a:hover {
  transform: scale(1.15);
}

.footer-socials img {
  width: 32px;
  height: 32px;
}

.footer-socials a:hover img {
  opacity: 0.7;
}

.footer-logo {
  max-width: 250px;
}

.footer-osa {
  display: block;
  margin-top: -10px;
}

.footer-osa img {
  max-width: 120px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.footer-osa:hover img {
  opacity: 0.7;
}

.footer-credits {
  font-size: 0.8rem;
  color: #999;
  margin-top: 15px;
}

.footer-credits a {
  color: #666;
  text-decoration: underline;
}

.footer-credits a:hover {
  color: #000;
}

/* ============================================
   Scroll Animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive - Tablet
   ============================================ */

@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }

  .mix-title {
    font-size: 1.05rem;
  }
}

/* ============================================
   Responsive - Desktop
   ============================================ */

@media (min-width: 1024px) {
  .sticky-nav {
    display: block;
  }

  .container {
    padding: 0 40px;
  }

  .hero-logo {
    max-width: 500px;
  }

  .section-title {
    font-size: 3rem;
    padding: 0px 4px;
    line-height: 1.2;
  }

  .gig-list li {
    font-size: 1.15rem;
    padding: 12px 0;
  }

  .mix-title {
    font-size: 1.15rem;
    letter-spacing: 3px;
  }

  .mix-platforms img {
    width: 32px;
    height: 32px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }
}

/* ============================================
   Mobile Small (< 480px)
   ============================================ */

@media (max-width: 768px) {
  .hero-img {
    max-width: 500px;
  }

  .scroll-arrow {
    display: none;
  }

  .gigs-splatter {
    display: none;
  }

  .gigs .container {
    text-align: center;
  }

  .gig-list li {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px 0;
  }

  .btn-tickets {
    order: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-logo {
    width: 90%;
  }

  .mix-header {
    text-align: center;
  }

  .mix-body {
    flex-direction: column;
    padding: 12px 15px;
  }

  .mix-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .mix-platforms {
    margin-left: 0;
  }

  .mix-buttons {
    flex-wrap: wrap;
  }

  .btn {
    flex: 1;
    min-width: 100px;
    text-align: center;
  }

  .section-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .mix-platforms img {
    width: 42px;
    height: 42px;
  }

  .mix-body {
    padding: 20px 15px;
  }

  .footer-socials img {
    width: 48px;
    height: 48px;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 500px) {
  .hero-img {
    content: url('../images/hero-mobile.jpg');
  }
}
