/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #006B4F;
    --green-deep: #01493A;
    --pink: #F87173;
    --pink-deep: #EF5A5C;
    --orange: #FC8900;
    --cream: #F7F2EC;
    --card: #FFFFFF;
    --text: #33443C;
    --muted: #66756D;
    --spotify-green: #1DB954;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: var(--green);
    padding: 6rem 2rem 8rem;
    overflow: hidden;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.hero-title em {
    color: var(--pink);
    font-style: italic;
}

.hero-tagline {
    margin-top: 1.8rem;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
}

.tagline-accent {
    color: var(--pink);
}

.hero-location {
    margin-top: 1.3rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
}

.insta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.2rem;
    padding: 0.85rem 1.7rem;
    border-radius: 100px;
    background: var(--pink);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, background 0.3s ease;
}

.insta-pill:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--pink-deep);
}

.insta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.2rem;
}

.pill-row .insta-pill,
.pill-row .form-pill {
    margin-top: 0;
}

.form-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.7rem;
    border-radius: 100px;
    background: var(--pink);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, background 0.3s ease;
}

.form-pill:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--pink-deep);
}

.form-pill-pink {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.7rem;
    border-radius: 100px;
    background: var(--pink);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, background 0.3s ease;
}

.form-pill-pink:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--pink-deep);
}

.form-pill-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.7rem;
    border-radius: 100px;
    background: var(--orange);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, background 0.3s ease;
}

.form-pill-orange:hover {
    transform: translateY(-3px) scale(1.03);
    background: #e07a00;
}

.pill-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-card .pill-row {
    justify-content: center;
    margin-top: 1.8rem;
}

.sparkle {
    position: absolute;
    pointer-events: none;
}

.sparkle-pink {
    top: 10%;
    right: 8%;
    width: 64px;
    fill: var(--pink);
}

.sparkle-orange {
    bottom: 12%;
    left: 5%;
    width: 44px;
    fill: var(--orange);
}

/* ===== Sections Base ===== */
section {
    padding: 5.5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.9rem;
}

.section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.2;
    margin-bottom: 2.8rem;
}

/* ===== Pillars ===== */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--card);
    border-radius: 24px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 10px 30px rgba(1, 73, 58, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(1, 73, 58, 0.14);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: #ffffff;
}

.pillar-icon svg {
    width: 28px;
    height: 28px;
}

.icon-green {
    background: var(--green);
}

.icon-pink {
    background: var(--pink);
}

.icon-orange {
    background: var(--orange);
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.pillar-tags {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.8rem;
}

.pillar-card p:not(.pillar-tags) {
    font-size: 0.92rem;
    color: var(--muted);
}

/* ===== Songs ===== */
.songs-section {
    max-width: 800px;
}

.video-wrapper {
    max-width: 640px;
    margin: 0 auto 2.8rem;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--orange);
    box-shadow: 0 14px 40px rgba(1, 73, 58, 0.12);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.tracklist {
    display: flex;
    flex-direction: column;
}

.track {
    display: grid;
    grid-template-columns: 40px 1fr auto auto;
    align-items: center;
    gap: 1.1rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(1, 73, 58, 0.12);
}

.track:first-child {
    border-top: 1px solid rgba(1, 73, 58, 0.12);
}

.track-number {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pink);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.track-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-deep);
}

.track-artist {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
}

.track-duration {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.spotify-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.95rem;
    border-radius: 100px;
    text-decoration: none;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 107, 79, 0.35);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.spotify-link:hover {
    background: rgba(29, 185, 84, 0.1);
    border-color: var(--spotify-green);
    color: var(--spotify-green);
    transform: scale(1.05);
}

.spotify-icon {
    width: 15px;
    height: 15px;
}

.songs-more {
    margin-top: 2rem;
    text-align: center;
}

.songs-more a {
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid var(--pink);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.songs-more a:hover {
    color: var(--pink);
}

/* ===== CTA ===== */
.cta-card {
    position: relative;
    background: var(--green);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700;
}

.cta-text {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-card .pill-row a {
    width: 280px;
    max-width: 100%;
    justify-content: center;
}

.sparkle-cta {
    top: 18%;
    right: 8%;
    width: 44px;
    fill: var(--orange);
}

/* ===== Artist Card (Visitenkarte) ===== */
.artist-card {
    position: relative;
    z-index: 2;
    width: 170px;
    height: 170px;
    margin-top: -85px;
    margin-left: auto;
    margin-right: max(2rem, calc((100% - 1000px) / 2 + 2rem));
    border-radius: 36px;
    overflow: hidden;
    border: 4px solid var(--orange);
    box-shadow: 0 12px 32px rgba(1, 73, 58, 0.2);
    background: var(--cream);
}

@media (min-width: 861px) {
    .artist-card {
        width: 220px;
        height: 220px;
        margin-top: -110px;
        border-radius: 44px;
        border-width: 5px;
    }
}

/* ===== Artist Image ===== */
.artist-section {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.artist-image-wrapper {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    border-radius: 48px;
    overflow: hidden;
    border: 5px solid var(--orange);
    box-shadow: 0 16px 44px rgba(1, 73, 58, 0.16);
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.6s ease;
}

.artist-image-wrapper:hover .artist-image {
    transform: scale(1.05);
}

/* ===== Footer ===== */
.footer {
    background: var(--green-deep);
    text-align: center;
    padding: 2.6rem 2rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: rgba(247, 242, 236, 0.75);
}

.footer-legal {
    margin-top: 0.6rem;
}

.footer-legal a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--pink);
}

/* ===== Impressum ===== */
.imprint-section {
    max-width: 700px;
    padding-top: 5rem;
}

.back-link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--green);
    margin-bottom: 3.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--pink);
}

.imprint-block {
    margin-bottom: 2.5rem;
}

.imprint-block h2 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.9rem;
}

.imprint-block address {
    font-style: normal;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.9;
}

.imprint-block p {
    color: var(--muted);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 0.9rem;
}

.imprint-block a {
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid var(--pink);
}

.imprint-block a:hover {
    color: var(--pink);
}

.terms-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.terms-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--muted);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
}

.terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
}

.terms-note {
    color: var(--muted);
    font-weight: 400;
    line-height: 1.9;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
    .pillar-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 1.4rem;
    }

    .hero {
        padding: 4.5rem 1.4rem 4rem;
    }

    .track {
        grid-template-columns: 28px 1fr auto;
        gap: 0.8rem;
    }

    .track-duration {
        display: none;
    }

    .cta-card {
        padding: 3rem 1.4rem;
        border-radius: 24px;
    }
}
