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

::selection {
	background: rgba(255,255,255,0.9);
	color: #93252e;
}

 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 200;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-200.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: italic;
     font-weight: 200;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-200italic.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 300;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-300.woff2') format('woff2');
}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: italic;
     font-weight: 300;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-300italic.woff2') format('woff2');
}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 400;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-regular.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: italic;
     font-weight: 400;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-italic.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 500;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-500.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: italic;
     font-weight: 500;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-500italic.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 600;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-600.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: italic;
     font-weight: 600;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-600italic.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 700;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-700.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: italic;
     font-weight: 700;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-700italic.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 800;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-800.woff2') format('woff2');

}
 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: italic;
     font-weight: 800;
     src: url('/fonts/roboto-v50-cyrillic_latin_symbols-800italic.woff2') format('woff2');

}
 html, body {
     height: 100%;
     font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     color: #ffffff;
     background: #000000;
}
 body {
     position: relative;
     overflow-x: hidden;
     overflow-y: auto;
}
/* ----------------------------- Background Video + Overlay ----------------------------- */
 #bg-video {
     position: fixed;
     top: 50%;
     left: 50%;
     min-width: 100%;
     min-height: 100%;
     width: auto;
     height: auto;
     z-index: 0;
     transform: translate(-50%, -50%);
     object-fit: cover;
}

 #bg-image {
     position: fixed;
     top: 50%;
     left: 50%;
     min-width: 100%;
     min-height: 100%;
     width: auto;
     height: auto;
     z-index: 0;
     transform: translate(-50%, -50%);
     background-size: cover;
}
 .overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.85);
     z-index: 0;
}
/* ----------------------------- Layout ----------------------------- */
 .page-wrapper {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     align-items: center;
}
 .content {
     max-width: 880px;
     width: 100%;
     padding: 40px 24px 24px;
     margin: 0 auto;
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     animation: fadeInUp 1s ease-out forwards;
}
 .text-center {
     text-align: center;
}
 @media (max-height: 700px) {
     .content {
         justify-content: flex-start;
         padding-top: 24px;
         padding-bottom: 48px;
    }
}
 header {
     margin-bottom: 0px;
     text-align: center;
}
 .logo {
     display: inline-block;
     margin-bottom: 24px;
}
 .logo img {
     width: 260px;
     height: auto;
     max-width: 100%;
     filter: drop-shadow(0 0 18px rgba(0,0,0,0.75));
}
 h1 {
     font-size: clamp(2rem, 3vw, 2.6rem);
     line-height: 1.2;
     font-weight: 600;
     letter-spacing: 0.03em;
     margin-bottom: .8rem;
     text-transform: uppercase;
}
 h1 span.highlight {
     color: #f5d19a;
}
 p {
     margin-bottom: 1rem;
     font-size: 1rem;
     line-height: 1.2rem;
     opacity: 0.9;
}
 h2 {
     margin-top: .3rem;
     margin-bottom: .8rem;
}
 h3 {
     margin-top: .2rem;
     margin-bottom: .6rem;
}
/* ----------------------------- Responsive Zentrierung ----------------------------- */
 footer {
     width: 100%;
     max-width: 720px;
     margin: 0 auto 0;
     display: flex;
     justify-content: space-between;
     gap: 12px;
     font-size: 0.78rem;
     opacity: 0.8;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding-top: 10px;
     padding-bottom: 30px;
}
/* ----------------------------- Countdown ----------------------------- */
 .countdown {
     padding: 10px 0;
}
 .countdown-wrapper {
     margin: 0px auto 24px;
     display: flex;
     justify-content: center;
     gap: 18px;
     flex-wrap: wrap;
}
 .time-box {
     min-width: 120px;
     padding: 14px 12px;
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.14);
     backdrop-filter: blur(6px);
     box-shadow: 0 0 24px rgba(0, 0, 0, 0.45);
     animation: fadeInUp 1s ease-out forwards;
}
 .time-box span.value {
     display: block;
     font-size: 3rem;
     font-weight: 600;
}
 .time-box span.label {
     display: block;
     margin-top: 4px;
     font-size: 0.75rem;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     opacity: 0.85;
}
/* ----------------------------- Contact ----------------------------- */
 .contact {
     margin-top: 10px;
     font-size: 0.98rem;
}
 .contact a {
     color: #ffffff;
     text-decoration: none;
     border-bottom: 1px solid rgba(239, 234, 234, 1);
     padding-bottom: 1px;
     transition: border-color 0.2s, color 0.2s;
}
 .contact a:hover {
     color: #f5d19a;
     border-color: #f5d19a;
}
/* ----------------------------- Footer ----------------------------- */
 footer {
     width: 100%;
     max-width: 720px;
     margin-bottom: 0;
     margin-left: auto;
     margin-right: auto;
     display: flex;
     justify-content: space-between;
     gap: 12px;
     font-size: 0.78rem;
     opacity: 0.8;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding-top: 10px;
}
 footer a {
     color: #ffffff;
     text-decoration: none;
     border-bottom: 1px solid transparent;
}
 footer a:hover {
     border-color: #ffffff;
}
 @media (max-width: 640px) {
     footer {
         flex-direction: column;
         align-items: center;
         text-align: center;
    }
}
/* ----------------------------- Animations ----------------------------- */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translate3d(0, 20px, 0);
    }
     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
    }
}
 @keyframes float {
     0%, 100% {
         transform: translateY(0);
    }
     50% {
         transform: translateY(-6px);
    }
}



/* -----------------------------
   Presse / News Section
----------------------------- */

.presse {
    margin-top: 30px;
}

.presse h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 26px;
    color: #f5d19a;
    text-align: center;
}

/* GRID – Desktop 2 Spalten */
.presse-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;      /* zentriert die zwei Karten */
}

/* Einzelelement – Desktop 2 pro Reihe */
.presse-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    flex: 0 1 calc(50% - 24px);   /* → zwei nebeneinander */
    max-width: 560px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 16px;
	z-index: -1;
}

/* Bild */
.presse-item img {
    width: 110px;
    height: auto;
    flex-shrink: 0;
    border-radius: 10px;
}

/* Text */
.presse-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

/* Button */
.btn {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #f5d19a;
    border-radius: 8px;
    text-decoration: none;
    color: #f5d19a;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.btn:hover {
    background: #f5d19a;
    color: #000;
}

/* MOBILE – Cards untereinander */
@media (max-width: 700px) {
    .presse-item {
        flex: 1 1 100%;         /* jede Karte eigene Reihe */
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .presse-text {
        align-items: center;
    }
}
