@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 2px solid #ff007f;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
}
.logo span {
    color: #ff007f;
}

nav ul {
    display: flex;
    gap: 20px;
}
nav ul li {
    list-style: none;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
    color: #ff007f;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(245, 11, 206, 0.3), rgba(0,0,0,0.6)),
        url('../images/bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero-content span {
    color: #ff007f;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.btn {
    background: #ff007f;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.7s;
}
.btn:hover {
    background: #ffffff;
    color: #080000;
    box-shadow: 0 0 15px #ff007f;
}
.Discord {
    background: #ff007f;
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}
.Discord:hover {
    background: #4862d4;
    color: #080000;
    box-shadow: 0 0 15px #0018ec;
}
.music {
    background: #080000;
    padding: 12px 40px;
}
.mine {
    color: #ff007f;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}
.mine:hover {
    color: #ff00dd
}
/* SLIDER */
.slider {
    background: #0a0a0a;
    padding: 40px 0;
    text-align: center;
}
.slide {
    display: none;
    font-size: 1.3rem;
    color: #ffbfe0;
}
.slide.active {
    display: block;
    animation: fade 1s ease-in-out;
}
@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* ABOUT */
.about {
    padding: 60px 10%;
    text-align: center;
}
.about h2 {
    color: #ff007f;
    margin-bottom: 15px;
}

/* RULES PAGE */
.regdc {
    padding: 60px 10%;
}
.regdc h2 {
    color: #ff007f;
    margin-bottom: 20px;
}
.regdc ol li {
    margin-bottom: 10px;
}
.regmc {
    padding: 60px 10%;
}
.regmc h2 {
    color: #ff007f;
    margin-bottom: 20px;
}
.regmc ol li {
    margin-bottom: 10px;
}
/* FOOTER */
footer {
    text-align: center;
    padding: 20px 10%;
    border-top: 2px solid #ff007f;
    margin-top: 40px;
    background: #0a0a0a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
}
.music-start {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease;
}

.music-start button {
  background: #ff007f;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.music-start button:hover {
  background: #3caa20;
  transform: scale(1.05);
}

.music-start.hidden {
  opacity: 0;
  pointer-events: none;
}

/* GALERIA */
.gallery {
  padding: 60px 10%;
  text-align: center;
}

.gallery h2 {
  color: #ff007f;
  margin-bottom: 25px;
  font-size: 2rem;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  width: 200px;
  height: 360px;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Responsywność */
@media (max-width: 768px) {
  .gallery-item {
    width: 45%;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: 90%;
    height: 220px;
  }
}

.hero-logo {
  width: 180px;          /* szerokość logo */
  margin-bottom: 20px;   /* odstęp od napisu */
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }