@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: #222;
    background: #f7f7f7;
    line-height: 1.6;
}

section {
    padding: 60px 20px;
}


/* ================= FULLSCREEN HERO ================= */
.hero-full {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('https://gmot.rocks/ne/ghost-man-on-third-hero-3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    min-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.hero-overlay {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #64ffff;
    padding: 20px;
    border-radius: 8px;
}

/* ================= HERO TYPO ================= */
.hero-overlay h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ff3c82;
}

.hero-overlay h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
    font-weight: 100;
    line-height: 0.1;
    color: #64ffff;
}

.hero-overlay h3 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 2.5;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }
    .hero-overlay p {
        font-size: 1.1rem;
    }
}


/* ================= STREAMING ICONS ================= */
.hero-stream-icons {
    margin-top: 0px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.stream-icon {
    font-size: 2.8rem;
    color: #64ffff; /* Grundfarbe bleibt Türkis */
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;

    /* Neon Glow in Pink */
    filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 12px #ff3c82);
    animation: neonPulsePinkIcons 2.8s ease-in-out infinite;
}

.stream-icon:hover {
    color: #ff3c82; /* Hover-Farbe Pink */
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 14px #ff3c82);
}

/* Neon Pulse Animation Pink */
@keyframes neonPulsePinkIcons {
    0% {
        filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 12px #ff3c82);
    }
    50% {
        filter: drop-shadow(0 0 10px #ff3c82) drop-shadow(0 0 20px #ff3c82);
    }
    100% {
        filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 12px #ff3c82);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .stream-icon {
        font-size: 2.2rem;
    }
}


/* ================= AUDIO SECTION ================= */
.audio-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1px 0;
    background-color: #000000;
}

.audio-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.audio-section h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.0rem, 2.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ff3c82;
    margin-bottom: 30px;
    text-align: center;
}

.audio-section h3 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 2vw, 0.8rem);
    font-weight: 600;
    line-height: 0.1;
    color: #fff;
    margin-bottom: 100px;
    text-align: center;
}

.audio-section h4 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 2vw, 0.8rem);
    font-weight: 600;
    line-height: 0.1;
    color: #ff3c82;
}

.audio-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: flex-start;
}

.audio-left {
    color: #ffffff;
}

/* ================= AUDIO COVER (Glow) ================= */
.audio-left .album-cover {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 30px;

    box-shadow:
        0 0 0 3px #ff3c82,
        0 0 20px #ff3c8280,
        0 0 40px #ff3c82b3;

    animation: neonPulsePink 2.8s ease-in-out infinite;
}

@keyframes neonPulsePink {
    0% {
        box-shadow:
            0 0 0 3px #ff3c82,
            0 0 20px #ff3c8280,
            0 0 40px #ff3c82b3;
    }
    50% {
        box-shadow:
            0 0 0 3px #ff3c82,
            0 0 35px #ff3c82cc,
            0 0 70px #ff3c82e6,
            0 0 90px #64ffff66;
    }
    100% {
        box-shadow:
            0 0 0 3px #ff3c82,
            0 0 20px #ff3c8280,
            0 0 40px #ff3c82b3;
    }
}

/* ================= AUDIO INFO ================= */
.audio-left .album-info {
    color: #ffffff;
}

.audio-left .album-info ol {
    color: #ffffff;
    text-align: left;
    padding-left: 20px;
}

.audio-left .album-info ol li {
    text-align: left;
}

/* ================= SPOTIFY PLAYER ================= */
.audio-right iframe {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    border: 3px solid #ff3c82;
    box-shadow:
        0 0 12px #ff3c82,
        0 0 24px #ff3c82aa,
        0 0 40px #ff3c82cc;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .audio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* ================= AUDIO COVER (Glow) ================= */
.audio-left .album-cover,
.album-cover {
    width: 100%;
    max-width: 500px;      /* gleiche Breite für alle Cover */
    aspect-ratio: 1 / 1;   /* quadratisch – alle exakt gleich */
    object-fit: cover;     /* Bild wird sauber zugeschnitten */
    height: auto;
    border-radius: 4px;
    margin-bottom: 30px;

    box-shadow:
        0 0 0 3px #ff3c82,
        0 0 20px #ff3c8280,
        0 0 40px #ff3c82b3;

    animation: neonPulsePink 2.8s ease-in-out infinite;
}


@keyframes neonPulsePink {
    0% {
        box-shadow:
            0 0 0 3px #ff3c82,
            0 0 20px #ff3c8280,
            0 0 40px #ff3c82b3;
    }
    50% {
        box-shadow:
            0 0 0 3px #ff3c82,
            0 0 35px #ff3c82cc,
            0 0 70px #ff3c82e6,
            0 0 90px #64ffff66;
    }
    100% {
        box-shadow:
            0 0 0 3px #ff3c82,
            0 0 20px #ff3c8280,
            0 0 40px #ff3c82b3;
    }
}

/* ================= AUDIO INFO (weiß) ================= */
.audio-left .album-info {
    color: #ffffff;
}

/* TRACKLIST LINKS im AUDIOPLAYER */
.audio-left .album-info ol {
    color: #ffffff;
    text-align: left;
    padding-left: 20px;
}

.audio-left .album-info ol li {
    text-align: left;
}

.audio-left .album-info h3 {
    color: #ff3c82;
}

.track {
    margin-bottom: 30px;
}

.track-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 8px;
    color: #ff3c82;
}

audio {
    width: 100%;
}

@media (max-width: 768px) {
    .audio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ================= BANDINFO ================= */
.bandinfo-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 60px 0;
    background-color: #000000;
}

.bandinfo-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    line-height: 1.6;
}

/* ================= DISCOGRAPHY ================= */
.discography-wrapper {
    background: #000;
    padding: 60px 20px;
    color: #fff;
}

.discography-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 12px;

    /* äußere Outline entfernt */
    box-shadow: none;
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Album Cards ohne Outline */
.album {
    background: #000;
    padding: 25px;
    border-radius: 12px;
    box-shadow: none; /* Outline weg */
    text-align: left;
}

/* Cover behalten Glow */
.album-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;

    box-shadow:
        0 0 0 3px #ff3c82,
        0 0 20px #ff3c8280,
        0 0 40px #ff3c82b3;
}


/* Streaming Icons */
.streaming-icons {
    margin: 20px 0 25px 0;
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    flex-wrap: wrap;
}

.stream-icon {
    font-size: 2.4rem;
    color: #64ffff;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;

    filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 12px #ff3c82);
    animation: neonPulsePinkIcons 2.8s ease-in-out infinite;
}

.stream-icon:hover {
    color: #ff3c82;
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 14px #ff3c82);
}

/* Album Info */
.album-info h4 {
    color: #64ffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.album-info ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .discography-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .discography-grid {
        grid-template-columns: 1fr;
    }

    .stream-icon {
        font-size: 2rem;
    }
}


/* ================= PRESSINFO ================= */
.pressinfo-wrapper {
    width: 100%;
    max-width: none;          /* überschreibt globales section max-width */
    margin: 0;                /* überschreibt globales margin:auto */
    padding: 60px 0;
    background-color: #000;   /* kompletter Bereich schwarz */
}

.pressinfo-section {
    max-width: 1100px;        /* Inhalt begrenzen */
    margin: 0 auto;           /* Inhalt zentrieren */
    padding: 0 20px;
    color: #fff;
}

/* Überschrift */
.pressinfo-heading {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 40px;
    color: #ff3c82;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Bild */
.pressinfo-image {
    width: 100%;
    max-width: 1100px;
    display: block;
    margin: 0 auto 50px auto;
    border-radius: 15px;
	border: 3px solid #ff3c82;   /* Outline */
    box-shadow: 0 0 20px #ff3c8280; /* leichter Glow optional */
}

/* Titel über beiden Spalten */
.pressinfo-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ff3c82;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    break-inside: avoid;
}

/* 2‑Spalten‑Text */
.pressinfo-grid {
    column-count: 2;
    column-gap: 60px;
}

/* Namen direkt über dem Text */
.pressinfo-name {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 900;
    color: #ff3c82;
    break-inside: avoid;
}

/* Absätze */
.pressinfo-grid p {
    margin: 0 0 1.2rem 0;
    line-height: 1.7;
    break-inside: avoid;
}

/* Mobile */
@media (max-width: 900px) {
    .pressinfo-grid {
        column-count: 1;
    }
}

.stream-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c82;
    border-radius: 6px;
    text-decoration: none;

    /* KEIN Glow */
    box-shadow: none;

    transition: all 0.25s ease;
}

.stream-btn:hover {
    background: #ff5ca0;
    transform: translateY(-3px);
}


/* ================= STEVE FLINT BIO ================= */
.stevebio-wrapper {
    width: 100%;
    padding: 60px 0;
    background-color: #000;
}

.stevebio-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

/* 2‑Spalten‑Layout */
.stevebio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; /* rechte Spalte vertikal mittig */
}

/* Bild */
.stevebio-image {
    width: 100%;
    max-width: 800px;
    border-radius: 6px;
    border: 3px solid #ff3c82;
    box-shadow: 0 0 20px #ff3c8280;
    display: block;
}

/* Text */
.stevebio-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ff3c82;
    margin-bottom: 20px;
}

.stevebio-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.stevebio-social {
    margin-top: 20px;
    display: flex;
    gap: 20px; /* größerer Abstand */
}


/* Mobile */
@media (max-width: 900px) {
    .stevebio-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .stevebio-right {
        text-align: left;
    }

    .stevebio-image {
        margin: 0 auto 20px auto;
    }
}




/* ================= PRESS DOWNLOAD ================= */
.download-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 60px 0;
    background-color: #000;
}

.download-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

/* Überschrift */
.download-heading {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #ff3c82;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 2‑Spalten‑Layout */
.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; /* rechte Spalte vertikal mittig zum Bild */
}

/* Bild */
.download-image {
    width: 100%;
    max-width: 500px;
    display: block;
	   border: 3px solid #ff3c82;   /* Outline */
    box-shadow: 0 0 20px #ff3c8280; /* leichter Glow optional */
    border-radius: 15px;
}


/* Text rechts */
.download-right {
    text-align: left;
}

.download-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.download-description {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.6;
}


/* Mobile */
@media (max-width: 900px) {
    .download-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-right {
        text-align: center;
    }

    .download-image {
        margin: 0 auto 20px auto;
    }
}

/* ================= FOOTER ================= */
.footer-wrapper {
    width: 100%;
    background-color: #000;
    padding: 40px 0;
    margin: 0;
}

.footer-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.footer-mail a {
    color: #ff3c82;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-mail a:hover {
    color: #801f42;
}

.footer-legal-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: #ff3c82;
}

.footer-legal {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}


/* ================= MODAL POPUP ================= */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    overflow-y: auto;
}

.modal-content {
    background: #111;
    color: #fff;
    margin: 5% auto;
    padding: 30px;
    border: 3px solid #ff3c82;
    box-shadow: 0 0 25px #ff3c8280;
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
}

.modal-content h2 {
    color: #ff3c82;
    margin-top: 0;
}

.modal-content a {
    color: #64ffff;
}

.close {
    float: right;
    font-size: 2rem;
    cursor: pointer;
    color: #ff3c82;
}

.close:hover {
    color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
    .modal-content {
        margin: 15% auto;
        padding: 20px;
    }
}


/* ====== VIDEO SECTION ====== */

.video-section {
    background-color: #000;
    padding: 60px 20px;
    color: #fff;
}

.video-all-button {
    text-align: center;
    margin-top: 25px;
}

.video-all-button a {
    display: inline-block;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c82;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 0 12px #ff3c82aa;
    transition: all 0.25s ease;
}

.video-all-button a:hover {
    background: #ff5ca0;
    box-shadow: 0 0 18px #ff3c82cc;
    transform: translateY(-3px);
}

/* ================= DISCOGRAPHY ================= */
.discography-wrapper {
    background: #000;
    padding: 60px 20px;
    color: #fff;
}

.discography-heading {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ff3c82;
    margin-bottom: 40px;
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* kannst du anpassen */
    width: 100%;
}


.album {
    background: #000;
    padding: 25px;
    border-radius: 12px;
   /*  box-shadow: 0 0 20px rgba(255, 60, 130, 0.3); */
    transition: transform 0.3s ease;

    /* Text linksbündig */
    text-align: left;
}

.album:hover {
    transform: none; /* kein Hüpfen */
    /* Glow bleibt erhalten, falls du ihn hast */
}


/* Cover */
.album-cover {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}



/* ================= STREAMING ICONS ================= */
.streaming-icons {
    margin: 20px 0 25px 0;
    display: flex;
    justify-content: flex-start; /* linksbündig */
    gap: 22px;
    flex-wrap: wrap;
}

.stream-icon {
    font-size: 2.4rem;
    color: #64ffff;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;

    /* Pink Neon Glow */
    filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 12px #ff3c82);
    animation: neonPulsePinkIcons 2.8s ease-in-out infinite;
}

.stream-icon:hover {
    color: #ff3c82;
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 14px #ff3c82);
}

/* Neon Pulse Animation Pink */
@keyframes neonPulsePinkIcons {
    0% {
        filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 12px #ff3c82);
    }
    50% {
        filter: drop-shadow(0 0 10px #ff3c82) drop-shadow(0 0 20px #ff3c82);
    }
    100% {
        filter: drop-shadow(0 0 6px #ff3c82) drop-shadow(0 0 12px #ff3c82);
    }
}

/* Album Info */
.album-info h4 {
    color: #64ffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.album-info ol {
    margin-left: 0;        /* Kein zusätzlicher Einzug */
    padding-left: 20px;    /* Standard-Listen-Einzug */
    margin-bottom: 20px;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .discography-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .discography-grid {
        grid-template-columns: 1fr;
    }

    .stream-icon {
        font-size: 2rem;
    }
}


/* ====== GMOT Headline Style ====== */
.section-headline {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #ff3c82;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ====== Responsive Video Wrapper (unzerstörbar) ====== */
.video-player {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;   /* garantiert Proportionen */
    position: relative;
}

/* ====== Responsive Iframe ====== */
.video-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* ====== Thumbnails ====== */
.video-thumbs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.video-thumbs img {
    width: 150px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, opacity 0.2s;
}

.video-thumbs img:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* Pinke Neon-Outline um das große Video */
.video-player iframe {
    border-radius: 10px;
    border: 3px solid #ff3c82;
    box-shadow:
        0 0 12px #ff3c82,
        0 0 24px #ff3c82aa,
        0 0 40px #ff3c82cc;




