body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #070707;
    color: #eaeaea;
    text-align: center;
}

/* HERO */
.hero {
      height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

.hero h1 {
    font-size: 70px;
    letter-spacing: 6px;
    font-weight: 600;
    color: #d4af37; /* arany */
}

.hero p {
    opacity: 0.6;
    letter-spacing: 2px;
}

@keyframes moveBg {
    0% { transform: translate(0,0); }
    50% { transform: translate(-25%, -25%); }
    100% { transform: translate(0,0); }
}

.hero h1, .hero p, .hero button {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 100px;
    text-shadow: 0 0 20px #424041;
}

/* GOMB */
button {
     margin-top: 25px;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    letter-spacing: 2px;
    cursor: pointer;
}

button:hover {
    background: #d4af37;
    color: black;
}

/* ZENE GRID */
.music-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.music-grid iframe {
    background: #0f0f0f;
    border-radius: 10px;
    border: 1px solid #222;
}

.music-grid iframe:hover {
    transform: scale(1.05);
}

iframe {
    width: 100%;
    height: 80px;
    border-radius: 12px;
    border: none;
}

/* VIDEÓ */
.video {
    width: 50%;
    height: 400px;
}

/* SZEKCIÓ */
section {
padding: 120px 20px;
}
section h2 {
    position: static;
    display: block;
    margin-bottom: 40px;
    text-align: center
}

section h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #d4af37;
    margin: 10px auto 0;
}
/* ABOUT */
.about {
    max-width: 600px;
    margin: auto;
    opacity: 0.8;
}

/* FOOTER */
footer {
    padding: 20px;
    background: #3b3a3a;
}

/* 📱 MOBIL */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 35px;
    }

    .video {
        width: 100%;
        height: 220px;
    }
}
.releases {
    background: #050505;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.release {
    position: relative;
    text-decoration: none;
    color: white;
}

.release img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #222;
}

/* OVERLAY (luxus effekt) */
.release .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(150, 24, 24, 0.6);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: 0.3s;
}

.release:hover .overlay {
    opacity: 1;
}

.release .overlay span {
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 8px 20px;
    letter-spacing: 2px;
}

/* SZÖVEG */
.release h3 {
    margin-top: 15px;
    color: #d4af37;
}

.release p {
    font-size: 13px;
    color: #777;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.video-grid iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    border: 1px solid #d4af37;
}
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.video-card {
    position: relative;
    text-decoration: none;
    color: white;
}

.video-card img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #222;
}

/* PLAY GOMB */
.video-card .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 50%;
    padding: 10px 15px;
    background: rgba(0,0,0,0.6);
}

/* HOVER (finom luxus effekt) */
.video-card:hover img {
    opacity: 0.85;
}

.video-card h3 {
    margin-top: 15px;
    color: #d4af37;
    font-size: 16px;
}
.video-card .play {
    font-size: 25px;
    padding: 5px 10px;
    border: 1px solid #d4af37;
    background: rgba(0,0,0,0.7);
}

.video-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}
.video-grid {
    gap: 40px;
}
.video-card img {
    filter: brightness(1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}
.video-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}