/*
Theme Name: GeneratePress Child - Dima Peters
Theme URI: https://dimapeters.com
Description: Custom child theme for artist landing page
Author: Dima Peters
Author URI: https://dimapeters.com
Template: generatepress
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

/* =========================================
   FONTS
   ========================================= */

/*@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Rock+Salt&display=swap');*/
@font-face {
    font-family: 'Oswald';
    src: url('fonts/Oswald-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Oswald';
    src: url('fonts/Oswald-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: block;
}

@font-face {
    font-family: 'Rock Salt';
    src: url('fonts/RockSalt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: block;
}

/* =========================================
   CSS VARIABLES
   ========================================= */

:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #D35400;
    --accent-light: #E67E22;
    --accent-dark: #BA4A00;
    --bg-soft: #f8f9fa;
    --border-light: #808284;
    /*#e9ecef;*/
    --text-muted: #6c757d;
    --font-main: 'Oswald', sans-serif;
    --font-hand: 'Rock Salt', cursive;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Fix für Full-Width Sections */
body,
.site,
.site-content,
#page {
    overflow-x: hidden;
}

/* =========================================
   GLOBAL RESETS
   ========================================= */

.dba-container * {
    box-sizing: border-box;
}

#main-website-content {
    opacity: 0;
    transition: opacity 1s ease;
    /* Parallax Reveal Properties */
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
    width: 100%;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
    min-height: 100vh;
}

.text-accent {
    color: var(--accent-color);
}

.hand-font {
    font-family: var(--font-hand);
    color: var(--accent-color);
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--accent-light);
    color: white;
}

/* =========================================
   SPLASH SCREEN
   ========================================= */

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out;
    gap: 80px;
    /* Abstand zwischen Animation und Button */
}

.animation-wrapper {
    position: relative;
    padding: 20px;
    max-width: 90%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.main-text {
    font-family: var(--font-main);
    font-size: clamp(1.5rem, 8vw, 6rem);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.1s;
    white-space: nowrap;
    /* NEU */
    font-weight: 700 !important;
    /* Explizit Bold gesetzt */
}

.strike-line {
    position: absolute;
    top: 45%;
    left: -5%;
    width: 110%;
    height: 3px;
    background-color: var(--accent-color);
    z-index: 2;
    transform-origin: left center;
    transform: scaleX(0) translateY(-50%);
    animation: strikeAcross 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards 1.3s;
    border-radius: 2px;
}

.hand-text-common {
    font-family: var(--font-hand);
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    color: var(--text-color);
    position: absolute;
    z-index: 3;
    clip-path: inset(0 100% 0 0);
}

.hand-text-1 {
    top: -2.1em;
    left: 3em;
    transform: rotate(-12deg);
    animation: writeText 0.6s linear forwards 1.7s;
    color: var(--accent-color);
}

.hand-text-2 {
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    margin-top: 15px;
    animation: writeText 0.6s linear forwards 2.2s;
}

#enter-btn {
    margin-top: 250px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    opacity: 0;
    animation: fadeInSimple 1s ease forwards 2.5s;
    transition: all 0.3s ease;
    border-radius: 4px;
}

#enter-btn:hover,
#enter-btn:focus {
    background: var(--text-color);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes strikeAcross {
    to {
        transform: scaleX(1) translateY(-50%);
    }
}

@keyframes writeText {
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes fadeInSimple {
    to {
        opacity: 1;
    }
}

@keyframes popScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shine {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* =========================================
   LAYOUT & TYPOGRAPHY
   ========================================= */

.dba-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-color);
    font-family: sans-serif;
}

.dba-hero {
    text-align: center;
    padding: 80px 0 60px 0;
}

.hero-headline {
    font-family: var(--font-main);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    /* Jetzt Bold */
}

.hero-sub {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--text-muted);
}

/* =========================================
   PRIMARY CTA - SHOP BUTTON
   ========================================= */

.dba-primary-cta {
    text-align: center;
    margin: 10px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    border-radius: 16px;
}

.mega-shop-button {
    display: inline-block;
    padding: 24px 60px;
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border: none;
    border-radius: 50px;
    box-shadow:
        0 10px 30px rgba(211, 84, 0, 0.3),
        0 0 0 3px rgba(211, 84, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mega-shop-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
    .mega-shop-button:hover::before {
        left: 150%;
    }

    .mega-shop-button:hover,
    .mega-shop-button:focus {
        transform: translateY(-4px) scale(1.02);
        box-shadow:
            0 15px 40px rgba(211, 84, 0, 0.4),
            0 0 0 4px rgba(211, 84, 0, 0.15);
    }
}

.mega-shop-button.shine-active::before {
    animation: shine 1s ease-out;
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Mobile: Pulsing */
@media (max-width: 768px) {
    .mega-shop-button {
        animation: subtlePulse 3s ease-in-out infinite;
    }

    @keyframes subtlePulse {

        0%,
        100% {
            box-shadow:
                0 10px 30px rgba(211, 84, 0, 0.3),
                0 0 0 3px rgba(211, 84, 0, 0.1);
        }

        50% {
            box-shadow:
                0 10px 40px rgba(211, 84, 0, 0.4),
                0 0 0 4px rgba(211, 84, 0, 0.15);
        }
    }
}

/* =========================================
   DASHBOARD
   ========================================= */

.dba-dashboard {
    margin: 5px 0;
}

.dashboard-title {
    font-family: var(--font-main);
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 700;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.dash-box {
    border: 1px solid var(--border-light);
    padding: 30px;
    text-align: center;
    background: var(--bg-soft);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dash-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.dash-box.pop-animation {
    animation: popScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.highlight-box {
    border: 1px solid var(--border-light);
    background: #fff;
}

.dash-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.dash-number {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: bold;
}

.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.dash-note {
    font-size: 0.9rem;
    margin-top: 8px;
    font-family: var(--font-hand);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(270deg, var(--accent-color), var(--accent-light), var(--accent-color));
    background-size: 200% 200%;
    border-radius: 10px;
    min-width: 2%;
    transition: width 1s ease-out;
    animation: gradientFlow 3s ease infinite;
}

/* =========================================
   NEWSLETTER COMPACT
   ========================================= */

.dba-newsletter-compact {
    background: var(--bg-soft);
    padding: 60px 20px;
    margin: 60px 0;
    text-align: center;
    border-radius: 16px;
    border: 2px dashed var(--accent-color);
}

.nl-headline-compact {
    font-family: var(--font-main);
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.nl-sub-compact {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.signup-form-compact {
    max-width: 500px;
    margin: 0 auto;
}

.input-group-compact {
    display: flex;
    gap: 10px;
    background: white;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.input-group-compact input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 1rem;
}

.input-group-compact input:focus {
    outline: none;
}

.input-group-compact input::placeholder {
    color: #adb5bd;
}

.input-group-compact button {
    padding: 14px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.input-group-compact button:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.gdpr-compact {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gdpr-compact input[type="checkbox"] {
    cursor: pointer;
    accent-color: var(--accent-color);
}

.gdpr-compact label {
    cursor: pointer;
}

.gdpr-compact a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* =========================================
   FEATURED WORK
   ========================================= */

.dba-featured-work {
    margin: 80px 0;
}

.section-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    text-align: center;
    /*margin-bottom: 40px;*/
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-soft);
    padding: 40px;
    border-radius: 16px;
}

.featured-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* 1:1 Verhältnis – super modern & supported 2026 */
    overflow: hidden;
    /* Verhindert, dass Inhalt überläuft */
    background: #000;
    /* Dunkler Fallback während Laden (kannst du ändern) */
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin-top: 0px !important;
}

/* Video perfekt ausfüllen + croppen bei Bedarf */
.featured-image video {
    position: absolute;
    inset: 0;
    /* = top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Füllt komplett aus, schneidet Ränder ab – meist das Beste für Hero-Videos */
    object-position: center;
    /* Zentriert – bei Bedarf ändern, z. B. 50% 20% für mehr oben */
}

/* Fallback-Bild (wenn Video nicht lädt) auch ausfüllen */
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.painting-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.painting-image:hover {
    transform: scale(1.02);
}

.painting-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-family: var(--font-main);
    font-size: 2rem;
    border: 1px dashed #999;
    border-radius: 8px;
}

.featured-info {
    padding: 20px;
}

.featured-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* =========================================
   BUTTONS & LINKS
   ========================================= */

.cta-button {
    display: inline-block;
    margin-top: 25px;
    background: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
}

.cta-button:hover,
.cta-button:focus {
    background: var(--accent-dark);
    color: #fff;
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--accent-dark);
}

/* =========================================
   ARTIST SECTION
   ========================================= */

.dba-bridge {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-soft);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-col h3 {
    font-family: var(--font-main);
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
    font-weight: 400;
}

.artist-photo-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: #eee;
    border: 10px solid #fff;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: rotate(2deg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.artist-photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.artist-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-face {
    font-family: var(--font-main);
    color: #ccc;
    text-align: center;
    font-size: 1.5rem;
}

.photo-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* =========================================
   NEWSLETTER SECTION - AUSFÜHRLICH
   ========================================= */

.dba-newsletter-dark {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    padding: 100px 0;
    margin: 80px 0 0 0;
    text-align: center;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    border-top: 3px solid var(--accent-color);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.subscriber-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(211, 84, 0, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(211, 84, 0, 0.2);
}

.nl-headline {
    font-family: var(--font-main);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 700;
}

.nl-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.nl-sub strong {
    color: var(--accent-color);
    font-weight: 600;
}

.signup-form-dark {
    margin-top: 40px;
    text-align: left;
}

.input-group-dark {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.input-group-dark:focus-within {
    box-shadow: 0 8px 30px rgba(211, 84, 0, 0.15);
    transform: translateY(-2px);
}

.input-group-dark input {
    flex-grow: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    border-radius: 50px;
}

.input-group-dark input:focus {
    outline: none;
}

.input-group-dark input::placeholder {
    color: #adb5bd;
}

.input-group-dark button {
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

.input-group-dark button:hover,
.input-group-dark button:focus {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.gdpr-row-dark {
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.gdpr-row-dark input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.gdpr-row-dark label {
    cursor: pointer;
}

.gdpr-row-dark a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.gdpr-row-dark a:hover {
    color: var(--accent-dark);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-badge::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =========================================
   FOOTER
   ========================================= */

.dba-footer {
    text-align: center;
    padding: 60px 20px 40px 20px;
    border-top: 1px solid var(--border-light);
    margin-top: 80px;
}

.dba-footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.dba-footer a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.dba-footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-note {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

/* SOCIAL MEDIA ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-icons img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* =========================================
SCROLL INDICATOR (NUR MOBILE)
========================================= */

.scroll-indicator {
    display: none;
    /* Desktop versteckt */
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-text {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.scroll-arrow {
    color: var(--accent-color);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.scroll-arrow svg {
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(211, 84, 0, 0.2));
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

/* =========================================
   SITE BRANDING (Reused from 404)
   ========================================= */
.site-branding {
    position: relative;
    /* Adjusted from absolute for front-page flow, or keep absolute if it overlaps hero */
    text-align: center;
    padding-top: 1px;
    margin-bottom: 20px;
    z-index: 10;
}

.site-branding h2 {
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    margin: 0;
}

.site-branding .hand-font {
    font-family: var(--font-hand);
    color: var(--accent-color);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    display: block;
    margin-top: 5px;
}

.site-branding a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Mobile: Zeige Scroll Indicator */
@media (max-width: 768px) {
    .scroll-indicator {
        display: block;
    }
}


/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 768px) {

    #splash-screen {
        gap: 5px;
        /* Weniger Abstand auf Mobile */
    }

    .main-text {
        /* font-size: clamp(1.5rem, 7vw, 4rem) !important;*/
        font-weight: 700 !important;
        /* Explizit Bold gesetzt */
    }

    .grid-layout,
    .dashboard-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 3.5rem;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .dba-hero {
        padding-top: 40px;
    }

    .hand-text-1 {
        font-size: 1.5rem;
        top: -2.8em;
        left: 1.5em;
    }

    .hand-text-2 {
        font-size: 1.5rem;
    }

    .mega-shop-button {
        width: 100%;
        max-width: 100%;
        padding: 20px 40px;
        font-size: 1.2rem;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .dba-primary-cta {
        padding: 30px 15px;
        margin: 10px 0;
    }

    .dashboard-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .dash-box {
        padding: 20px;
    }

    .dash-number {
        font-size: 2rem;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .dba-newsletter-compact {
        padding: 40px 15px;
        margin: 40px 0;
    }

    .nl-headline-compact {
        font-size: 1.5rem;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .input-group-compact {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        border-radius: 12px;
    }

    .input-group-compact input,
    .input-group-compact button {
        width: 100%;
        border-radius: 8px;
    }

    .input-group-compact button {
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .featured-grid {
        gap: 30px;
        padding: 10px 5px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .artist-photo-frame {
        transform: rotate(0deg);
        max-width: 300px;
        margin: 0 auto;
    }

    .text-col {
        text-align: center;
    }

    .text-col h3 {
        font-size: 2rem;
        font-weight: 400 !important;
        /* Force bold on mobile */
    }

    .cta-button {
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .reverse-mobile .grid-layout {
        display: flex;
        flex-direction: column;
    }

    .reverse-mobile .image-col {
        order: 1;
    }

    .reverse-mobile .text-col {
        order: 2;
    }

    .dba-bridge {
        padding: 30px 20px;
    }

    .nl-headline {
        font-size: 2.2rem;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .input-group-dark {
        flex-direction: column;
        gap: 12px;
        border-radius: 12px;
        padding: 12px;
    }

    .input-group-dark input {
        width: 100%;
        border-radius: 8px;
    }

    .input-group-dark button {
        width: 100%;
        border-radius: 8px;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .dba-newsletter-dark {
        padding: 60px 0;
    }

    .newsletter-content {
        padding: 0 20px;
    }

    .subscriber-count {
        font-size: 0.75rem;
        padding: 8px 16px;
        font-weight: 700 !important;
        /* Force bold on mobile */
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */

a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {

    .mega-shop-button,
    .cta-button {
        border: 2px solid currentColor;
    }
}

/* =========================================
   PARALLAX FOOTER SECTION
   ========================================= */

.dba-parallax-footer {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

/* Background Image Slider */
.parallax-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    animation: slide-infinite 60s linear infinite;
    will-change: transform;
}

/* Seamless infinite scroll animation */
@keyframes slide-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-image {
    flex-shrink: 0;
    width: 350px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
    filter: grayscale(30%) brightness(0.7);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Hover effect on images */
.dba-parallax-footer:hover .slider-image {
    opacity: 0.35;
    filter: grayscale(0%) brightness(0.8);
}

/* Content Overlay */
.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.85));
    backdrop-filter: blur(2px);
    border-radius: 20px;
    transform: translateY(0);
    transition: transform 0.05s linear;
    will-change: transform;
}

/* Parallax effect class (added by JavaScript) */
/* Parallax effect class (added by JavaScript) */
/* .parallax-content.parallax-active { 
    Transform is set inline by JavaScript 
} */

.parallax-heading {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    color: #fff;
    text-transform: uppercase;
}

.parallax-subtext {
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .dba-parallax-footer {
        min-height: 500px;
        height: 80vh;
        margin-top: 60px;
    }

    .slider-image {
        width: 250px;
    }

    .parallax-content {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .parallax-heading {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .dba-parallax-footer {
        min-height: 400px;
        height: 70vh;
    }

    .slider-image {
        width: 180px;
    }

    .parallax-content {
        padding: 1rem;
        max-width: 90%;
    }
}

/* Pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .slider-track {
        animation: none;
    }

    .parallax-content {
        transition: none;
        transform: translateY(0) !important;
    }
}

/* Optional: Pause slider animation on hover for better viewing */
.dba-parallax-footer:hover .slider-track {
    animation-play-state: paused;
}



/* =========================================
   NEW PARALLAX REVEAL FOOTER
   ========================================= */

.dba-reveal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Reduced height for just the bottom bar */
    height: auto;
    padding-bottom: 30px;
    z-index: 1;
    /* Behind content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;

    /* Reveal Animation Init */
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.dba-reveal-footer.is-visible {
    opacity: 1;
    visibility: visible;
}

.dba-reveal-footer .bottom-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 10px;
}

.dba-reveal-footer .bottom-links a {
    color: #555;
    margin: 0 5px;
}

/* Cleanup: Removed slider and large headline styles */

@media (max-width: 768px) {
    .dba-reveal-footer {
        height: auto;
        padding-bottom: 40px;
        /* Mobile Height */
        padding: 0.5rem;
    }
}