/* spline-sans-mono-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/spline-sans-mono-v10-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* styles.css */
:root {
    --font-spline: 'Spline Sans Mono', monospace;
    --color-gray: #585858;
}

html {
    font-size: 13px;
    background-color: #070707;
}

body {
    font-family: var(--font-spline);
    letter-spacing: 0;
    line-height: 1.2;
    background-color: #070707;
    color: #FFFFFF;
}

.full-height {
    min-height: 100vh; /* Fallback */
    min-height: 100dvh; /* Dynamic viewport height */
    display: flex;
    flex-direction: column;
    padding: 3.75rem 2rem;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 4rem;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
}

.countdown-item {
    text-align: center;
    min-width: 120px;
}

.countdown-number {
    font-size: 6.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.countdown-label {
    font-size: 1.25rem;
}

.venue-info {
    margin: 3rem 0;
    text-align: center;
}

.venue {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.address {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.date, .time {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.btn-calendar {
    font-family: var(--font-spline);
    font-size: 0.8rem;
    color: var(--color-gray);
    border: 1px solid var(--color-gray);
    padding: 0.5rem 1rem;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-calendar:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.organizers {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.organizer-link {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.organizer-link:hover {
    color: #FFFFFF;
}

br{
    display: none;
}


/* Optional: Zusätzliche Sicherheit für sehr kleine Bildschirme */
@supports not (min-height: 100dvh) {
    @media (max-width: 768px) {
        .full-height {
            min-height: -webkit-fill-available;
        }
    }
}

@media (max-width: 768px) {

    .full-height {
        padding: 2rem;
    }

    
    .logo {
        width: 120px;
        height: auto;
        margin-bottom: 4rem;
    }

    .countdown-wrapper {
        gap: 1rem;
    }

    .countdown-item {
        min-width: auto;
        margin: 0 .25rem;
    }

    .countdown-number {
        font-size: 3.5rem;
    }

    .countdown-label {
        font-size: 1.1rem;
    }

    .organizers {
        width: 75%;
        gap: 1rem 2rem;
        align-items: center;
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding-bottom: env(safe-area-inset-bottom); /* Für iPhones mit Notch */
    }
    
    .venue-info {
        margin: 2rem 0;
    }

}
