
body {
  font-family: 'Segoe UI', sans-serif;
  background: #121212;
  color: #fff;
  margin: 0;
}

main, #app {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
}
h3 {
  text-align: center;
  margin-bottom: 2rem;
}
h4 {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.filter-buttons button {
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.filter-buttons button.active {
  background: #436564;
  border-color: #ccffff;
}


.track {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  max-width: 800px;
  width: 250px;
  scroll-snap-align: start;
  align-items: flex-start; /* Prevent vertical stretching */
  flex: 0 0 auto; /* Don’t let it shrink or wrap */
}
#track-list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem 0;
}

.track:hover {
  transform: scale(1.02);
}

.track img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;       /* ✅ Ensures image doesn't stretch or squash */
  flex-shrink: 0;
}

.track-details {
  padding: 1rem;
}

.track-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.track-credits {
  font-size: 0.85rem;
  color: #ccc;
}

.track-disclaimer {
  font-size: 0.75rem;
  color: #f66;
  margin-top: 0.5rem;
}

.tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  background: #333;
  color: #fff;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: pre-line;
  z-index: 1000;
  width: 220px;
  text-align: center;
  transition: opacity 0.2s ease;
}

.track:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.track-genres {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.25rem;
}
.ft-contact-widget {
  padding: 2em;
  text-align:  center;
  color: #ccffffaa
}

@media (max-width: 600px) {
  .track {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .track img {
    max-width: 100%;
  }

  .track-details {
    width: 100%;
  }
}

main, #app {
  max-width: 1000px;
  margin: 0 auto;      /* ✅ Center horizontally */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.track-list {
  display: flex;
  flex-direction: column;  /* or row if you want side-by-side cards */
  align-items: center;     /* ✅ centers child cards horizontally */
  gap: 2rem;               /* spacing between track cards */
  overflow-x: auto;         /* ✅ Horizontal scroll */
}

.track.playing {
  border: 2px solid #ccffff;       /* ✅ Green glow */
  box-shadow: 0 0 10px #ccffffaa;  /* Optional: subtle glow */
}

   * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; scroll-behavior: smooth; background: #121212; color: #fff; }
    header {
      position: fixed;
      width: 100%;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      z-index: 1000;
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    min-height: 50% !important;
}
    }
    nav {
      display: flex;
      gap: 1rem;
    }
    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
    .menu-toggle { display: none; cursor: pointer; }
    .menu-toggle i { font-size: 1.5rem; }

    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.9);
        position: absolute;
        top: 60px;
        right: 10px;
        padding: 1rem;
        border-radius: 5px;
      }
      nav.active { display: flex; }
      .menu-toggle { display: block; }
    }

    section { padding: 100px 20px; min-height: 100vh; }
    .intro {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
      position: relative;
      background: black;
      overflow: hidden;
      gap: 20px;
    padding: 100px 40px;
    flex-wrap: wrap;
    }
    .intro .carousel {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      animation: fade 60s infinite;
      background-size: cover;
      background-position: center;
      filter: brightness(0.4) blur(4px);
    }
    .intro .content {
      margin-top: 100px;
      position: relative;
      z-index: 1;
      max-width: 600px;
      background: rgba(0, 0, 0, 0.7);
      padding: 20px;
      border-radius: 10px;
    }
    @media (max-width: 768px) {
  .intro .content {
    margin-top: 100px;
  }
}
.menu-toggle { display: none; cursor: pointer; }
@media (max-width: 768px) {
  .menu-toggle { display: block; }
}
.intro img {
  max-width: 400px;
  border-radius: 12px;
  z-index: 100;
  position: relative;
  margin-left: 50px;
}
.content h1 { margin-bottom: 1rem; }

@keyframes fade {
  0% { background-image: url('img/intro/faderport.webp'); }
 100% { background-image: url('img/intro/faderport.webp'); }
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro img {
    margin: 20px 0 0;
    max-width: 80%;
  }

  .intro .content {
    text-align: center;
  }
}
  section:first-of-type {
      padding-top: 0px;
    }

    
.section-title {
	margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.section-title h2:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 4px;
	left: 0;
	bottom: 0;
	background: #ccffff;
	z-index: 2;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
	width: 100%;
	border: none;
	font-size: 14px;
	padding-bottom: 23px;
	border-bottom: 1px solid #c0c0c0;
	background-color: transparent;
	margin-bottom: 65px;
	color: #acacac;
}

.contact-form textarea {
	height: 195px;
	margin-bottom: 60px;
	padding-bottom: 10px;
}

.contact-form ::-webkit-input-placeholder {
	color: #acacac;
	font-style: italic;
}

.contact-form :-ms-input-placeholder {
	color: #acacac;
	font-style: italic;
}

.contact-form ::-ms-input-placeholder {
	color: #acacac;
	font-style: italic;
}

.contact-form ::placeholder {
	color: #acacac;
	font-style: italic;
}

.site-btn {
	display: block;
	border: none;
	font-size: 18px;
	font-weight: 700;
	color: #1b1b1b;
	min-width: 146px;
	padding: 9px 10px;
	border-radius: 5px;
	background: #ccffff;
	cursor: pointer;
    margin: auto;
}
.accordion {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .accordion {
    grid-template-columns: repeat(5, 1fr);
  }
}

.accordion-item {
  display: flex;
  flex-direction: column;
  background-color: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background: #292929;
  color: #fff;
  padding: 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  width: 100%;
}

.accordion-content {
  display: none;
  padding: 1rem;
  background: #1a1a1a;
  border-top: 1px solid #333;
}

.accordion-item.active .accordion-content {
  display: block;
}

a:link {
  color: #ccffff;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #ccffffaa;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #ccffff;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color:#ccffff;
  background-color: transparent;
  text-decoration: underline;
}

.track-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.scroll-btn {
  background: #2a2a2a;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2;
}

.scroll-btn:hover {
  background: #444;
}

#track-list {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
}

.gallery-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.gallery-carousel .carousel-item {
  width: 420px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ✅ Crops and fills perfectly */
  object-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: block;
}

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

.gallery-carousel .carousel-item p {
  display: none; /* Caption hidden on tile, shown in lightbox */
}

/* Lightbox styling remains the same */
.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000;
  padding: 2rem;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

.gallery-lightbox p {
  margin-top: 1rem;
  color: #fff;
  text-align: center;
  display: block;               /* ✅ Only show captions here */
}

@media (max-width: 768px) {
  .gallery-carousel {
    display: grid !important;       /* switch to grid */
    grid-template-columns: repeat(2, 1fr);  /* 2 equal columns */
    grid-template-rows: repeat(3, auto);    /* 3 rows */
    gap: 8px;                      /* same gap you use */
    overflow-x: visible;           /* remove horizontal scroll */
    padding: 1rem 8px;
  }

  .gallery-carousel .carousel-item {
    width: 100% !important;        /* fill the grid cell */
    height: auto !important;       /* adjust height to content or fixed aspect ratio */
    aspect-ratio: 7 / 5;           /* keep your 350x250 ratio */
  }
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  color: white;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: white;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.lightbox-nav.prev {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}
