@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600 900;
    font-display: swap;
    src: url('fonts/montserrat.woff2') format('woff2');
}

:root {
    --color-navy: #0d1b42;
    --color-gold-start: #c9a227;
    --color-gold-end: #d4af37;
    --color-white: #ffffff;
    --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html, body {
    height: 100%;
}

body {
    font-family: var(--font-display);
    color: var(--color-white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background {
    position: fixed;
    inset: 0;
    background: url('assets/background.jpg') center/cover no-repeat, #1a1a1a;
    z-index: -2;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 10, 25, 0.92) 0%, rgba(5, 10, 25, 0.75) 30%, rgba(5, 10, 25, 0.35) 65%, rgba(5, 10, 25, 0.15) 100%);
    z-index: -1;
}

.site-header {
    display: flex;
}

.logo {
    display: block;
    padding: 32px 0 0 48px;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.logo:hover,
.logo:focus-visible {
    opacity: 0.8;
}

.site-logo {
    display: block;
    width: clamp(140px, 22vw, 200px);
    height: auto;
}

.hero {
    max-width: 720px;
    margin: 60px auto 0;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    width: clamp(240px, 45vw, 380px);
    height: auto;
}

.tagline {
    margin-top: 70px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(8px, 2.6vw, 20px);
    margin-top: 30px;
    width: 100%;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 1.5vw, 12px);
    min-width: 0;
}

.countdown-label {
    font-size: clamp(0.55rem, 2.4vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.countdown-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.85), rgba(212, 175, 55, 0.85));
    border-radius: clamp(12px, 5vw, 22px);
    width: clamp(52px, 17vw, 128px);
    height: clamp(52px, 16vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.countdown-box span {
    color: var(--color-white);
    font-size: clamp(1.3rem, 6.2vw, 4rem);
    font-weight: 900;
}

.hero-text {
    margin-top: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
}

.contact {
    width: 100%;
    margin-top: 70px;
    padding-bottom: 80px;
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: clamp(12px, 4vw, 24px);
    margin-top: 14px;
}

.contact-main {
    grid-column: 2;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.85), rgba(212, 175, 55, 0.85));
    color: var(--color-white);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: clamp(12px, 2.4vw, 16px) clamp(18px, 5vw, 32px);
    border-radius: 40px;
    font-size: clamp(0.8rem, 3vw, 1.1rem);
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    transform: translateY(-2px);
}

.social-icon {
    grid-column: 3;
    justify-self: start;
    color: var(--color-white);
    width: clamp(52px, 12vw, 76px);
    height: clamp(52px, 12vw, 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.social-icon svg {
    width: 55%;
    height: 55%;
}

.social-icon:hover,
.social-icon:focus-visible {
    opacity: 1;
    transform: scale(1.12);
}

.site-footer {
    position: absolute;
    bottom: 32px;
    right: 48px;
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        gap: 20px;
    }
    .logo {
        padding: 24px 0 0 24px;
    }
    .hero {
        padding: 0 24px;
    }
    .site-footer {
        position: static;
        margin: 40px 24px 32px;
    }
}

@media (max-width: 420px) {
    .contact-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .contact-main,
    .social-icon {
        grid-column: unset;
        justify-self: unset;
    }
}

.impressum main.hero h1 {
    margin-bottom: 2.5rem;
}

.impressum main.hero p {
    text-align: left;
    margin-bottom: 2rem;
}

.impressum main.hero a {
    text-decoration: underline;
    color: #fff;
}

.impressum main.hero a:hover {
    opacity: 0.75;
    text-decoration: none;
}