/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   COLORS
========================= */
:root {
    --blue: #0A1F44;
    --gold: #D4AF37;
    --light: #f5f7fa;
    --text: #222;
}

/* =========================
   BODY
========================= */
body {
    font-family: Arial, sans-serif;
    background: #0A1F44; /* dein blau */
    color: var(--text);
}




/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   HEADER – PREMIUM CLEAN
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 999;

    background: linear-gradient(
        to bottom,
        rgba(10,31,68,0.95),
        rgba(10,31,68,0.6),
        transparent
    );

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* NAV CONTAINER */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 70px;
}




/* LOGO */

.header .container {
    max-width: none;
    width: 100%;
    padding-left: 40px;   /* 👈 Abstand links */
    padding-right: 300px;
}

.logo a {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;

    letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);

    transition: 0.3s;
}

.nav-links a:hover {
    color: #FFD700;

    text-shadow:
        0 0 8px gold,
        0 0 20px rgba(255,215,0,0.5);
}


/* HOVER */
.nav-links a:hover {
    color: var(--gold);
}

/* GOLD UNDERLINE */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;

    background: linear-gradient(90deg, gold, white, gold);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* SEARCH */
.header-search {
    margin-left: 150px;
}

#searchInput {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212,175,55,0.3);

    color: white;
}


#searchInput:focus {
    width: 220px;
    background: rgba(0,0,0,0.8);
}

/* GOLD FLOW LINE (unten) */
.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    overflow: hidden;

    background: linear-gradient(
        90deg,
        transparent,
        gold,
        white,
        gold,
        transparent
    );

    background-size: 200% 100%;
    animation: goldFlow 4s linear infinite;

    box-shadow:
        0 0 10px gold,
        0 0 20px rgba(212,175,55,0.8);
}

/* ANIMATION */
@keyframes goldFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 22px;
    font-weight: 900;
    color: #FFD700;

    letter-spacing: 2px;

    text-shadow:
        0 0 10px rgba(255,215,0,0.6),
        0 0 20px rgba(255,215,0,0.4);
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}



.sub-menu {
    position: relative;

    margin-top: clamp(80px, 15vh, 180px);

    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 50px); /* 🔥 dynamischer Abstand */

    z-index: 4;
}

/* LINKS */
.sub-menu a {
    font-size: 30px;
    text-decoration: none;
    color: var(--gold);

    position: relative;

    text-shadow:
        0 4px 12px rgba(0,0,0,0.95),   /* 🔥 tiefer schwarzer Schatten */
        0 0 10px rgba(0,0,0,0.9),      /* 🔥 zusätzlicher dunkler Glow */
        0 0 12px rgba(212,175,55,0.6); /* 🔥 goldener Glow */

    transition: 0.3s;
}

/* HOVER */
.sub-menu a:hover {
    color: #fff;

    text-shadow:
        0 0 15px gold,
        0 0 30px gold,
        0 0 60px rgba(255,215,0,0.8);
}

/* UNTERSTRICH */
.sub-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;

    background: linear-gradient(90deg, gold, white, gold);
    transition: 0.3s;
}

.sub-menu a:hover::after {
    width: 100%;
}




.sub-menu::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;

    background: linear-gradient(90deg, transparent, gold, transparent);

    opacity: 0.6;
}




/* =========================
   VIDEO GRID
========================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    gap: 25px;
    justify-content: center;
}

/* CARD */
.video-card {
    position: relative;
    z-index: 1;
    background: black;
    border-radius: 10px;
    overflow: hidden;
    color: white;
    transition: 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: scale(1.03);
    z-index: 2;
}

/* THUMB */
.video-thumb {
    height: 180px;
    background: linear-gradient(135deg, #222, #444);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play {
    font-size: 30px;
    background: rgba(0,0,0,0.6);
    padding: 10px 14px;
    border-radius: 50%;
}

.video-card {
    position: relative;
    width: 220px;
    border-radius: 10px;
    overflow: visible;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Thumbnail */
.video-thumb img {
    width: 100%;
    border-radius: 10px;
}

/* Preview Video (versteckt) */
.preview-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    z-index: 5;
    overflow: hidden;
}

.preview-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 120%;
    height: 120%;

    transform: translate(-50%, -50%);
    border: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    overflow: visible !important;
}

.video-card:hover {
    transform: scale(1.5) translateY(-20px);
    z-index: 9999;

    border: 1px solid rgba(255,215,0,1);

    box-shadow: 
        0 20px 60px rgba(0,0,0,0.9),
        0 0 30px rgba(255,215,0,0.8),
        0 0 80px rgba(255,215,0,0.5);
}

/* Video sichtbar */
.video-card:hover .preview-video {
    opacity: 1;
}

/* Info ausblenden beim Hover (optional Netflix Style) */
.video-card:hover .video-info {
    opacity: 0;
}

.video-card {
    transform-origin: center center;
    position: relative;
    overflow: hidden;
}


.video-card:hover .video-thumb {
    opacity: 0;
}

.preview-video {
    z-index: 5;
}

/* TEXT */
.video-info {
    padding: 15px;
    text-align: center;
}

.video-info small {
    opacity: 0.7;
    font-size: 12px;
}

.video-info h3 {
    font-size: 16px;
    margin-top: 5px;
}

/* =========================
   HERO (NEU KOMPLETT)
========================= */

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* VIDEO */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100vw;
    height: 56.25vw;

    min-width: 177.78vh;
    min-height: 100%;

    transform: translate(-50%, -50%) scale(1.05);

    animation: cinemaZoom 18s ease-in-out infinite alternate;
    filter: brightness(0.9) contrast(1.1);
    border: none;
}

/* CINEMA ZOOM */
@keyframes cinemaZoom {
    0% {
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 20%,
        rgba(0,0,0,0.4) 55%,
        rgba(0,0,0,0.1) 100%
    );

    z-index: 2;

    pointer-events: none; /* 🔥 verhindert blockieren */
}

/* CONTENT */
.hero-content {
    position: absolute;
    left: 60px;
    bottom: 120px;

    z-index: 3;
    max-width: 500px;

    color: white;
}


.hero-overlay {
    pointer-events: none;
}

.video-consent {
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.hero-media iframe {
    pointer-events: auto;
}
/* TITEL */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;

    color: #FFD700;

    line-height: 1.1;
    letter-spacing: 1px;

    text-shadow:
        0 3px 15px rgba(0,0,0,0.9),
        0 0 25px rgba(255,215,0,0.6),
        0 0 50px rgba(255,215,0,0.4);
}

/* TEXT */
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 15px 0 25px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 10px;
}

.play-btn {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.info-btn {
    background: rgba(109,109,110,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

/* =========================
   HERO → GRID GOLD KANTE (FULL WIDTH + STRONG GLOW)
========================= */

.hero::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 5;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,215,0,0.8) 20%,
        white 50%,
        rgba(255,215,0,0.8) 80%,
        transparent 100%
    );

    background-size: 200% 100%;

    /* 🔥 MASSIVER GLOW */
    box-shadow:
        0 0 15px gold,
        0 0 30px rgba(255,215,0,0.9),
        0 0 60px rgba(255,215,0,0.7),
        0 0 100px rgba(255,215,0,0.5);

    animation: goldFlowStrong 3s linear infinite;

    z-index: 5;
    pointer-events: none;
}


/* 🌫️ GLOW FLÄCHE DARUNTER */
.hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 140px;

    pointer-events: none;
    z-index: 4;

    background: linear-gradient(
        to bottom,
        rgba(255,215,0,0.0) 0%,
        rgba(255,215,0,0.2) 30%,
        rgba(255,215,0,0.5) 50%,
        rgba(255,215,0,0.2) 70%,
        rgba(0,0,0,0) 100%
    );

    filter: blur(20px);

    animation: goldPulseStrong 4s ease-in-out infinite;
}


/* 🔥 ANIMATIONEN */
@keyframes goldFlowStrong {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes goldPulseStrong {
    0% {
        opacity: 0.6;
        transform: scaleY(0.9);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
    100% {
        opacity: 0.6;
        transform: scaleY(0.9);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content {
        left: 20px;
        bottom: 80px;
    }
}


.video-thumb {
    position: relative;
    overflow: hidden;
}

.hover-video {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s;
}

.video-card:hover .hover-video {
    opacity: 1;
}


.header-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#searchInput {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  outline: none;
  background: rgba(0,0,0,0.6);
  color: white;
  width: 180px;
  transition: 0.3s;
}

/* Hover Effekt */
#searchInput:focus {
  width: 260px;
  background: rgba(0,0,0,0.9);
}

/* =========================
   VIDEOS SECTION (INDEX bleibt gleich!)
========================= */
.videos {
    position: relative;

    padding: 0; /* 🔥 wichtig */
    margin-top: -180px;

    background: url('/assets/images/bg-dogs.jpg') center top no-repeat;
    background-size: contain;

    background-color: #0A1F44;
}

/* OVERLAY */
.videos::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.08); /* 🔥 milchiger Schleier */

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    pointer-events: none;
    z-index: 1;
}


.videos::after {
    display: none;
}

/* CONTENT */
.videos .container {
    position: relative;
    z-index: 2;

    padding-top: 260px; /* 🔥 statt margin-top */
    padding-bottom: 100px;
}
/* =========================
   LOGO
========================= */
.bg-logo {
    position: absolute;
    top: 60vh;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}

.bg-logo img {
    width: 800px;
    max-width: 80vw;

    opacity: 1;                /* 🔥 voll sichtbar */
    mix-blend-mode: normal;   /* 🔥 wichtig */

    filter:
        brightness(1.15)
        contrast(1.2)
        drop-shadow(0 0 20px rgba(212,175,55,0.9))
        drop-shadow(0 0 50px rgba(212,175,55,0.7));
}

@keyframes glow {
    0% {
        filter: brightness(1.05) drop-shadow(0 0 15px gold);
    }
    50% {
        filter: brightness(1.15) drop-shadow(0 0 60px gold);
    }
    100% {
        filter: brightness(1.05) drop-shadow(0 0 15px gold);
    }
}

.bg-logo img {
    mix-blend-mode: screen;
}

/* =========================
   IMPRESSUM (FIX!)
========================= */
.impressum {
    backdrop-filter: blur(4px);
    max-width: 800px;
    margin: 0 auto;

    padding-top: 80px;   /* <<< FIX: vorher 220px */
    padding-bottom: 80px;

    color: white;
}

/* Überschrift */
.impressum h1 {
    margin-bottom: 25px;
    font-size: 30px;
}

/* Unterüberschriften */
.impressum h2 {
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 18px;
}

/* Text */
.impressum p {
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

/* =========================
   IMPRESSUM PAGE FIX
========================= */

/* Hintergrund sauber an Bildschirm */
.impressum-page {
    padding: 120px 0 80px;
    min-height: 100vh; /* füllt Bildschirm */
    display: flex;
    align-items: flex-start;
}

/* Logo AUSBLENDEN nur hier */
.impressum-page .bg-logo {
    display: none;
}

/* Textbereich */
.impressum {
    backdrop-filter: blur(4px);
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
    color: white;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: var(--blue);
    color: white;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer a {
    color: white;
    text-decoration: none;
}

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

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    opacity: 0.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HEADER GLOW
========================= */

.header::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 50% -20%,
        rgba(212,175,55,0.4),
        transparent 60%
    );

    pointer-events: none;
}


.header {
    position: relative;
}


.header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;

background: linear-gradient(
    90deg,
    transparent,
    gold,
    white,
    gold,
    transparent
);
background-size: 200% 100%;
animation: goldFlow 3s linear infinite;
    );

    box-shadow:
        0 0 10px gold,
        0 0 20px rgba(212,175,55,0.8),
        0 0 40px rgba(212,175,55,0.6);

    animation: goldLineMove 4s linear infinite;
}

@keyframes goldLineMove {
    0% {
        opacity: 0.6;
        transform: scaleX(0.95);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0.6;
        transform: scaleX(0.95);
    }
}

@keyframes goldFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;

    background: rgba(0,0,0,0.7);

    border: 1px solid rgba(212,175,55,0.5);

    /* 🔥 STÄRKERER GRUND-GLOW */
    box-shadow: 
        0 0 15px rgba(212,175,55,0.4),
        0 0 30px rgba(212,175,55,0.3),
        0 0 60px rgba(212,175,55,0.15);

    transition: all 0.3s ease;
}

.video-card {
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
    0% {
        box-shadow: 
            0 0 10px rgba(212,175,55,0.3),
            0 0 25px rgba(212,175,55,0.2);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(212,175,55,0.5),
            0 0 40px rgba(212,175,55,0.3);
    }
    100% {
        box-shadow: 
            0 0 10px rgba(212,175,55,0.3),
            0 0 25px rgba(212,175,55,0.2);
    }
}



.comments h2 {
    color: var(--gold);

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.4);
}
.related h2 {
    color: var(--gold);

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.4);
}

/* =========================
   FOOTER GLOW
========================= */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 50% 120%,
        rgba(212,175,55,0.4),
        transparent 60%
    );

    pointer-events: none;
}


/* =========================
   GLOW ANIMATION
========================= */
@keyframes goldGlowMove {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(10px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
}

.video-consent {
    position: relative;
    z-index: 5; /* höher als overlay */
}

.hero-overlay {
    z-index: 2;
}

.hero-content {
    z-index: 6;
}

/* =========================
   HEADER GLOW (FIXED & SICHTBAR)
========================= */
.header {
    position: relative;
    overflow: hidden;
}

.header::after {
    content: "";
    position: absolute;
    top: -100px;
    left: -50%;
    width: 200%;
    height: 300px;

    background: radial-gradient(
        ellipse at center,
        rgba(212,175,55,0.8),
        rgba(212,175,55,0.4) 40%,
        transparent 70%
    );

    filter: blur(60px);
    animation: goldGlowMove 6s ease-in-out infinite;
    pointer-events: none;
}

/* =========================
   FOOTER GLOW
========================= */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 50% 120%,
        rgba(212,175,55,0.5),
        transparent 60%
    );

    filter: blur(40px);
    animation: goldGlowMove 6s ease-in-out infinite reverse;
    pointer-events: none;
}



/* =========================
   💬 KOMMENTARE – PREMIUM STYLE
========================= */

.comments {
    margin-top: 50px;
}

/* Titel */
.comments h2 {
    color: var(--gold);

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.4);
}

/* Formular */
.comment-form input,
.comment-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;

    border-radius: 8px;
    border: none;

    background: rgba(255,255,255,0.1);
    color: white;
}

.comment-form textarea {
    min-height: 100px;
}

.comment-form button {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;

    color: #000;
    font-weight: bold;

    transition: 0.3s;
}

.comment-form button:hover {
    box-shadow:
        0 0 10px rgba(255,215,0,0.6),
        0 0 20px rgba(255,215,0,0.4);
}

/* Einzelner Kommentar */
.comment {
    background: rgba(0,0,0,0.75);
    padding: 15px;
    margin-top: 15px;

    border-radius: 12px;

    border: 1px solid rgba(212,175,55,0.2);

    box-shadow:
        0 0 10px rgba(212,175,55,0.15);

    transition: 0.3s;
}

/* Hover Effekt */
.comment:hover {
    box-shadow:
        0 0 15px rgba(212,175,55,0.4),
        0 0 30px rgba(212,175,55,0.2);
}

/* Name */
.comment strong {
    display: block;
    font-size: 16px;

    color: var(--gold);
}

/* Datum */
.comment small {
    display: block;
    margin-bottom: 8px;

    color: #bbb;
    font-size: 12px;
}

/* Text */
.comment p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 15px;
}


#cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: rgba(10,31,68,0.95);
    backdrop-filter: blur(10px);

    border-top: 1px solid rgba(212,175,55,0.3);

    text-align: center;
    padding: 15px;
    z-index: 9999;
}

#cookie-bar p {
    margin: 0;
    color: #f5f5dc;
}

#cookie-bar button {
    margin-left: 15px;
    padding: 8px 15px;

    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-weight: bold;
}

.video-placeholder {
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;

    padding: 40px;
    text-align: center;

    color: #f5f5dc;
}

.video-placeholder button {
    margin-top: 15px;
    padding: 10px 20px;

    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-weight: bold;

    pointer-events: auto; /* 🔥 wichtig */
}


.video-consent {
    position: relative;
    cursor: pointer;
    z-index: 5;
}

.video-placeholder {
    background: rgba(0,0,0,0.8);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    color: #f5f5dc;
}

.video-placeholder p {
    font-size: 20px;
}

.card {
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.back {
    display: inline-block;
    margin-bottom: 20px;

    color: var(--gold);
    text-decoration: none;
    font-weight: bold;

    text-shadow:
        0 0 6px rgba(212,175,55,0.5);

    transition: 0.3s;
}

.back:hover {
    color: #fff;

    text-shadow:
        0 0 10px gold,
        0 0 20px gold;
}

@media (max-width: 768px) {
    .sub-menu {
        margin-top: clamp(50px, 10vh, 100px);
        gap: clamp(10px, 4vw, 25px);
        flex-wrap: wrap;
    }

    .sub-menu a {
        font-size: 18px;
    }

    .bg-logo {
        top: 50vh;
    }
}

@media (max-width: 768px) {
    .videos {
        margin: 0; /* 🔥 NEGATIVE MARGIN KILLEN */
        padding: 0; /* 🔥 KEIN EXTRA ABSTAND */
    }
}

@media (max-width: 768px) {
    .videos .container {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 200px 5% 120px;
    }
}
