/* ========================================
   PRACHT CLUB - COMPLETE CSS
   assets/css/mc.css
   ======================================== */

   @font-face {
    font-family: 'gothic';
    font-style: normal;
    src: url('../fonts/gothic/gothic725_blk_bt_black.eot'); /* IE9 Compat Modes */
    src: local('gothic'), local('gothic'),
    url('../fonts/gothic/gothic725_blk_bt_black.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/gothic/gothic725_blk_bt_black.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/gothic/gothic725_blk_bt_black.woff') format('woff'), /* Modern Browsers */
    url('../fonts/gothic/gothic725_blk_bt_black.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/gothic/gothic725_blk_bt_black.svg#gothic725_blk_btblack') format('svg'); /* Legacy iOS */
    font-display: swap;
}
html {
    scroll-behavior: smooth;
}

/* ========================================
   HAMBURGER NAVIGATION STYLES
   ======================================== */

/* Hamburger Menu Button */
.toggle-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    height: 90px;
    outline: none;
    padding: 0;
    position: fixed;
    top: 2rem;
    right: 2rem;
    vertical-align: middle;
    width: 90px;
    z-index: 1111;
    transition: all 0.3s ease;
}

/* Oberer Strich */
.toggle-menu .line-top {
    background-color: #fff;
    display: block;
    height: 4px;
    position: absolute;
    top: 25px;
    right: 23px;
    transition: background-color 0.2s ease-in-out, top 0.3s ease, right 0.3s ease, transform 0.3s ease;
    width: 34px;
}

/* Mittlerer Strich */
.toggle-menu .line-middle {
    background-color: #fff;
    display: block;
    height: 4px;
    position: absolute;
    top: 43px;
    right: 23px;
    transition: background-color 0.2s ease-in-out, opacity 0.3s ease, right 0.3s ease;
    width: 24px;
}

/* Unterer Strich */
.toggle-menu .line-bottom {
    background-color: #fff;
    display: block;
    height: 4px;
    position: absolute;
    top: 61px;
    right: 23px;
    transition: background-color 0.2s ease-in-out, top 0.3s ease, right 0.3s ease, transform 0.3s ease;
    width: 34px;
}

/* Hover effect */
.toggle-menu:hover .line-top,
.toggle-menu:hover .line-middle,
.toggle-menu:hover .line-bottom {
    background-color: #ea3323;
}

/* Active state (X animation) */
.toggle-menu.active .line-top {
    top: 43px;
    right: 23px;
    transform: rotate(45deg);
    background-color: #fff;
}

.toggle-menu.active .line-middle {
    opacity: 0;
}

.toggle-menu.active .line-bottom {
    top: 43px;
    right: 23px;
    transform: rotate(-45deg);
    background-color: #fff;
}

/* Active hover - keep white on mobile */
.toggle-menu.active:hover .line-top,
.toggle-menu.active:hover .line-bottom {
    background-color: #fff;
}


    .toggle-menu.active:hover .line-top,
    .toggle-menu.active:hover .line-bottom {
        background-color: #fff;
    }


/* ========================================
   FULLSCREEN MENU STYLES
   ======================================== */

/* Fullscreen menu styles */
body.loading #fullscreen-menu {
    display: none !important;
}
#fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    backdrop-filter: blur(10px);
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s ease-in-out;
    pointer-events: none;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#fullscreen-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Menu item animations */
#fullscreen-menu.open .fullscreen-nav li {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}

#fullscreen-menu.open .fullscreen-nav li:nth-child(1) { animation-delay: 0.1s; }
#fullscreen-menu.open .fullscreen-nav li:nth-child(2) { animation-delay: 0.2s; }
#fullscreen-menu.open .fullscreen-nav li:nth-child(3) { animation-delay: 0.3s; }
#fullscreen-menu.open .fullscreen-nav li:nth-child(4) { animation-delay: 0.4s; }
#fullscreen-menu.open .fullscreen-nav li:nth-child(5) { animation-delay: 0.5s; }

/* Main navigation styles */
.fullscreen-nav {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    padding-bottom: 60px; /* Make space for the footer */
    min-height: calc(100vh - 60px);
    box-sizing: border-box;
    overflow-y: auto;
}

.fullscreen-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.fullscreen-nav li {
    margin: 0.5rem 0;
}

.fullscreen-nav a {
    color: #ea3323;
    font-family: 'gothic', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 20px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    position: relative;
    letter-spacing: 2px;
    /* Feste Box-Größe: */
    box-sizing: border-box;
    min-height: 4rem; /* Reserviert feste Höhe */
}

.fullscreen-nav a:hover {
    opacity: 1 !important;
    color: #ffffff !important;
    /* Entferne auch letter-spacing: */
    /* letter-spacing: 3px; */
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    
    width: auto !important;
    height: auto !important;
}
.fullscreen-nav a.active{
    color: #ffffff !important;
}
.fullscreen-nav ul:hover a {
    opacity: 0.5;
}

.fullscreen-nav a.active::after {
    width: 50%;
    left: 25%;
    background-color: #ffffff;
}

.fullscreen-nav a:hover::after {
    width: 50%;
    left: 25%;
}

/* ========================================
   NAVIGATION FOOTER STYLES
   ======================================== */

.fullscreen-menu-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0;
    z-index: 1001;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.footer-nav {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.footer-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    box-sizing: border-box;
}

.footer-links::-webkit-scrollbar {
    display: none;
    height: 0;
}

.footer-link-item {
    flex-shrink: 0;
    padding: 0 0.5rem;
    white-space: nowrap;
}

.footer-link-separator {
    color: rgba(255, 255, 255, 0.6);
    user-select: none;
    padding: 0 0.25rem;
    font-size: 0.8em;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #fff;
    text-decoration: none;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ========================================
   GENERAL STYLES
   ======================================== */

body.menu-visible #fullscreen-menu {
    display: block;
    opacity: 1;
}

.cf {
    font-family: 'gothic', sans-serif;
    letter-spacing: 1px;
}

.ccd {
    color: #ea3323;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #ea3323;
    font-family: 'gothic725_blk_btblack', sans-serif;
    font-weight: normal;
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ========================================
   VIDEO BACKGROUND STYLES
   ======================================== */

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Content that comes after video */
.content-after-video {
    position: relative;
    z-index: 1;
    background: #000;
    margin-top: 0;
    padding-top: 0;
}

/* ========================================
   HEADER & LOGO STYLES
   ======================================== */

header {
    position: fixed!important;
}

.logo-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
    text-align: left;
    max-width: 100%;
    padding: 20px;
    height: 180px;
    width: 180px;
}

.logo-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-left: 180px solid transparent;
    border-bottom: 180px solid #fff; /* diagonaler Rand */
    clip-path: polygon(0 0, 0 100%, 100% 0);
    z-index: -1;
}

.logo-text {
    font-family: 'gothic', 'Arial Black', sans-serif;
    color: black;
    margin: 0;
    font-size: 35px;
    white-space: nowrap;
    line-height: 1 ; /* nicht zu eng */
    letter-spacing: -4px;
}

.logo-line {
    display: block;
}

.logo-letter {
    display: inline-block;
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
    animation: fadeInLetter 0.6s forwards;
}

/* Verzögerung pro Buchstabe */
.logo-line:nth-child(1) .logo-letter:nth-child(1) { animation-delay: 0.2s; }
.logo-line:nth-child(1) .logo-letter:nth-child(2) { animation-delay: 0.4s; }
.logo-line:nth-child(1) .logo-letter:nth-child(3) { animation-delay: 0.6s; }
.logo-line:nth-child(2) .logo-letter:nth-child(1) { animation-delay: 0.8s; }
.logo-line:nth-child(2) .logo-letter:nth-child(2) { animation-delay: 1.0s; margin-left: -2.8px}
.logo-line:nth-child(3) .logo-letter:nth-child(1) { animation-delay: 1.2s; }

/* Keyframes */
@keyframes fadeInLetter {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Farbvarianten */
.logo-header.v1::before { background: #fff; }
.logo-header.v1 .logo-text { color: #ea3323; }

.logo-header.v2::before { background: #ea3323; }
.logo-header.v2 .logo-text { color: #fff; }

.logo-header.v3::before { background: #000; }
.logo-header.v3 .logo-text { color: #fff; }

.logo-header.v4::before { background: #fff; }
.logo-header.v4 .logo-text { color: #000; }

.logo-header.v5::before { background: #c6cab8; }
.logo-header.v5 .logo-text { color: #000; }

.logo-header.v6::before { background: #ea3323; }
.logo-header.v6 .logo-text { color: #000; }

.logo-header.v7::before { background: #000000; }
.logo-header.v7 .logo-text { color: #ea3323; }

/* ========================================
   SCROLL INDICATOR STYLES
   ======================================== */

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    animation: bounce 2s infinite;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-icon {
    width: 24px;
    height: 24px;
    fill: white;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.5));
}

.scroll-text {
    display: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Standard: beides ausblenden */
.scroll-icon.mouse-icon,
.scroll-icon.touch-icon {
    display: none;
}

/* Desktop: nur Maus-Icon anzeigen */
@media (min-width: 769px) {
    .scroll-icon.mouse-icon {
        display: block;
    }
}

/* Mobile: nur Touch-Icon anzeigen */
@media (max-width: 768px) {
    .scroll-icon.touch-icon {
        display: block;
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Anpassungen für sehr kleine Displays */
@media (max-width: 400px) {
    .footer-links {
        justify-content: flex-start;
        padding: 0 0.5rem;
    }
    
    .footer-link-item {
        padding: 0 0.4rem;
    }
    
    .footer-link {
        font-size: 0.65rem;
    }
    
    .footer-link-separator {
        padding: 0 0.1rem;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .fullscreen-menu-footer {
        padding: 0.8rem 0;
    }
    
    .footer-link {
        font-size: 0.6rem;
    }
    
    .footer-link-item {
        padding: 0 0.4rem;
    }
    
    .fullscreen-nav a {
        font-size: 2rem;
        padding: 0.75rem;
    }
    
    .toggle-menu {
        top: 1.5rem;
        right: 1.5rem;
        width: 70px;
        height: 70px;
    }
    
    .toggle-menu .line-top,
    .toggle-menu .line-bottom {
        width: 28px;
    }
    
    .toggle-menu .line-middle {
        width: 20px;
    }
    
    .toggle-menu .line-top {
        top: 20px;
        right: 19px;
    }
    
    .toggle-menu .line-middle {
        top: 33px;
        right: 19px;
    }
    
    .toggle-menu .line-bottom {
        top: 46px;
        right: 19px;
    }
    
    .toggle-menu.active .line-top,
    .toggle-menu.active .line-bottom {
        top: 33px;
        right: 19px;
    }
}

@media (max-width: 480px) {
    .fullscreen-nav a {
        font-size: 1.75rem;
        padding: 0.5rem;
    }
    
    .toggle-menu {
        top: 1rem;
        right: 1rem;
        width: 60px;
        height: 60px;
    }
    
    .toggle-menu .line-top,
    .toggle-menu .line-bottom {
        width: 24px;
    }
    
    .toggle-menu .line-middle {
        width: 18px;
    }
    
    .toggle-menu .line-top {
        top: 18px;
        right: 16px;
    }
    
    .toggle-menu .line-middle {
        top: 28px;
        right: 16px;
    }
    
    .toggle-menu .line-bottom {
        top: 38px;
        right: 16px;
    }
    
    .toggle-menu.active .line-top,
    .toggle-menu.active .line-bottom {
        top: 28px;
        right: 16px;
    }
}

/* Sehr kleine Displays */
@media (max-width: 360px) {
    .footer-link {
        font-size: 0.6rem;
    }
    
    .footer-link-separator {
        margin: 0 0.2rem;
    }
}