/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #000;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('Paar-Sonnenuntergang-Berge.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
    padding: 60px;
    z-index: 2;
    animation: fade 1.5s ease-out;
}

@keyframes fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.split-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

/* Logo */
.logo {
    margin-bottom: 50px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo img {
    max-width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Ãœberschriften und Text */
h1 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: center;
}

.highlight {
    color: #FFA060;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 160, 96, 0.3);
    z-index: -1;
}

.tagline {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    text-align: center;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    background-color: rgba(255, 160, 96, 0.2);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    width: 120px;
    display: inline-block;
    text-align: center;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: transparent;
    color: white;
    text-align: center;
    padding: 20px 60px;
    margin-top: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: all 0.3s;
}

footer a:hover {
    opacity: 1;
    color: #FF7D6B;
    text-decoration: none;
}

/* Impressum Seite */
.impressum-container {
    padding: 40px 20px;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.impressum-content h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.impressum-section {
    margin-bottom: 30px;
}

.impressum-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #E84A5F;
}

.impressum-section p {
    color: #555;
    line-height: 1.6;
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.back-link a {
    color: #E84A5F;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #E84A5F;
    border-radius: 8px;
    transition: all 0.3s;
}

.back-link a:hover {
    background-color: #E84A5F;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content {
        padding: 50px;
    }

    .benefits {
        flex-wrap: wrap;
    }

    .benefit {
        min-width: 220px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }

    .content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-background {
        background-position: 38% center;
    }

    .logo {
        left: 30px;
        top: 30px;
    }

    .logo img {
        max-width: 130px;
    }

    .content {
        padding: 100px 40px 40px 40px;
        max-width: 100%;
    }

    h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        min-width: 100px;
    }

    .countdown-value {
        font-size: 2rem;
        min-width: 100px;
        padding: 12px;
    }

    .benefit {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .benefits {
        margin-bottom: 60px;
    }

    footer {
        position: relative;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-background {
        background-position: 42% center;
    }

    .content {
        padding: 90px 25px 40px 25px;
    }

    .logo {
        left: 20px;
        top: 20px;
    }

    .logo img {
        max-width: 110px;
    }

    h1 {
        font-size: 2.3rem;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .countdown {
        gap: 8px;
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: calc(50% - 8px);
        margin-bottom: 8px;
    }

    .countdown-value {
        font-size: 1.6rem;
        width: 100%;
        padding: 10px;
    }

    .signup-form button {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: 10px;
        padding: 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .impressum-content {
        padding: 25px 15px;
    }

    .social-icons {
        justify-content: center;
    }
}