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

header,
section,
footer {
    padding: 2rem;
    text-align: center;
}

header {
    background: url('media/header_PS.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    max-height: 100px;
    max-width: 100%;
}

header p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-links img {
    width: 48px;
    height: 48px;
    filter: grayscale(100%);
}

.gallery {
  text-align: center;
  padding: 2rem;
}

.carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
  position: relative;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.carousel-track img.active {
  opacity: 1;
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-0%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}



.music iframe {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
    display: block;
    /* background-color: #1a1a1a; */
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact input,
.contact textarea {
    width: 100%;
    max-width: 500px;
    margin: 0.5rem auto;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
}

.contact button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    background-color: #00ffd0;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.contact img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 10px;
    filter: grayscale(100%);
}

.dates ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.dates li {
    margin: 0.5rem 0;
}

a {
    color: white;
}

a:visited {
    color: white;
}

a:hover {
    color: lightskyblue;
}

@media (max-width: 960px) {
    section {
        padding: 1.5rem 1rem;
    }

    /* .gallery img {
        width: 45%;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 1 / 1;
        border-radius: 10px;
        padding: 5px;
    } */


}
section:nth-of-type(odd) {
  background-color: #0e0e0e;
}

section:nth-of-type(even) {
  background-color: #1a1a1a;
}