/* ========================================
   Songs für jeden Anlass — Styles (V2)
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Hoefler Text', Georgia, 'Times New Roman', serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 6rem 2rem 3rem;
    text-align: center;
}

.title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: #111;
}

.subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: #444;
    font-weight: 400;
}

/* ========================================
   Content
   ======================================== */
.content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Song Sections
   ======================================== */
.song-section {
    padding: 3rem 0 4rem;
    border-top: 1px solid #ddd;
}

.song-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111;
}

.song-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Video */
.video-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Notenblatt Bild */
.song-image {
    margin-bottom: 1.5rem;
}

.song-image img {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: none;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.7rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    transition: all 0.2s ease;
    cursor: pointer;
}

.download-btn:hover {
    color: #111;
    border-color: #999;
}

.download-icon {
    font-size: 0.75rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
}

.footer-links {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #111;
}

.footer-divider {
    margin: 0 0.75rem;
    color: #ccc;
}

.footer-copy {
    font-size: 0.75rem;
    color: #999;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem 2rem;
    }

    .content {
        padding: 0 1.5rem;
    }

    .song-section {
        padding: 2.5rem 0 3rem;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 1rem 1.5rem;
    }
}

/* ========================================
   Legal Pages (Impressum, Datenschutz)
   ======================================== */
.legal-page {
    min-height: 100vh;
    padding: 6rem 0 4rem;
    max-width: 750px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #111;
}

.legal-page h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #222;
}

.legal-page p {
    color: #444;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-page a {
    color: #333;
}

.legal-page a:hover {
    color: #000;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #111;
}
