html {
    scroll-behavior: smooth;
}

/* =========================
   FONTS
========================= */

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-Italic-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Italic-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 700;
    font-style: italic;
    font-display: swap;
}

/* =========================
   BASE
========================= */

body {
    margin: 0;
    font-family: 'Lora', serif;
    color: #333;
    font-size: 19px;
    line-height: 1.65;
    background-color: #e6d3c2;

    background-image:
        radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        radial-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);

    background-size: 20px 20px, 40px 40px;
    background-position: 0 0, 10px 10px;
}

body.subpage header {
    background: rgba(106, 76, 59, 0.92);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

body.subpage header + .section {
    margin-top: 90px;
}

/* =========================
   HEADER / NAV
========================= */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
}

nav {
    display: flex;
    gap: 26px;
}

nav a {
    position: relative;
    color: #f5efe8;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    padding-bottom: 4px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

header.scrolled {
    background: rgba(106, 76, 59, 0.92);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

header.scrolled nav a {
    color: #e6d3c2;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 18s ease-out forwards;
    filter: contrast(1.05) saturate(0.99);
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.35)
    );
}

.hero-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.hero-text h1,
.hero-text h2 {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    animation: fadeUpBlur 1.4s ease forwards;
    font-family: 'Lora', serif;
    font-weight: 400;
    color: #f5efe8;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}

.hero-text h1 {
    font-size: 65px;
    line-height: 1.1;
    animation-delay: 0s;
	margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 50px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 25px;
    animation-delay: 0.4s;
}

@keyframes fadeUpBlur {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* =========================
   SECTIONS
========================= */

.section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    scroll-margin-top: 60px;
}

.section h2 {
    color: #6A4C3B;
    font-size: 34px;
    margin-bottom: 10px;
}

.section h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background: rgba(106, 76, 59, 0.45);
    margin-top: 1px;
}

p {
    margin-bottom: 12px;
}

/* =========================
   QUOTE
========================= */

.section .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
    font-style: italic;
    color: #6A4C3B;
    text-align: center;
}

.section .quote::before,
.section .quote::after {
    content: "—";
    margin: 0 8px;
    opacity: 0.6;
}

/* =========================
   LINKS
========================= */

.section a {
    color: #6A4C3B;
    text-decoration: none;
}

.section a:hover {
    font-weight: 700;
}

/* =========================
   STREAMING
========================= */

.streaming-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 15px;
}

.stream-btn {
    padding: 11px 18px;
    border: 1px solid #6A4C3B;
    color: #6A4C3B;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.stream-btn:hover {
    background-color: rgba(106, 76, 59, 0.18);
    transform: translateY(-1px);
}

/* =========================
   CD GRID
========================= */

.cd-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 20px;
}

.cd-item {
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
}

/* =========================
   IMAGES
========================= */

.cd-item img,
.kontakt-bild img,
.yellowtune-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    cursor: zoom-in;
    transition: transform 0.25s ease;
}

.cd-item img:hover,
.kontakt-bild img:hover,
.yellowtune-img img:hover {
    transform: scale(1.03);
}

/* =========================
   YELLOWTUNE
========================= */

.yellowtune-block {
    display: flex;
    gap: 30px;
    margin-top: 30px;
	margin-bottom: 0px;
    align-items: flex-start;
}

/* =========================
   KONTAKT
========================= */

.kontakt-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* =========================
   FOOTER
========================= */

footer {
    margin-top: 80px;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid rgba(90, 74, 63, 0.25);
    background: rgba(255,255,255,0.15);
}

footer a {
    color: #6A4C3B;
    text-decoration: none;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #6A4C3B;
    font-weight: 700;
}

/* =========================
   LIGHTBOX
========================= */

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: zoom-out;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* =========================
   RESPONSIVE (CLEANED)
========================= */

@media (max-width: 768px) {

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        height: 65vh;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .section {
        margin: 20px auto;
    }

    .yellowtune-block,
    .kontakt-wrapper {
        flex-direction: column;
        text-align: left;
        align-items: center;
    }

    p {
        margin-bottom: 8px;
    }
}

/* =========================
   HERO FIX (TABLET + RESPONSIVE TYPO)
========================= */

.hero-text {
    bottom: 30px; /* bleibt Standard */
}

/* FLUID TYPO (empfohlen – wirkt moderner als feste Breakpoints) */
.hero-text h1 {
    font-size: clamp(38px, 6vw, 65px);
}

.hero-text h2 {
    font-size: clamp(22px, 5vw, 50px);
}

/* TABLET SPECIFIC FIX */
@media (max-width: 1024px) and (min-width: 769px) {

    .hero {
        height: 100vh;
        min-height: 650px;
    }

    .hero-text {
        bottom: 155px;
        width: 90%;
    }

}


