:root {
    --primary-color: #333;
    --accent-color: #AF2F58;
    --bg-color: #fff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.logo {
    height: 200px;
    width: auto;
    display: inline-block;
    margin: 0 auto;
}

.hero {
    position: relative;
    height: 75vh;
    max-height: 500px;
    background-image: url('../images/kompromisslos-haffe-hero.png');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.announcement {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    word-wrap: break-word;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
    word-wrap: break-word;
}

.cta-button:hover {
    background-color: #c2185b;
}

.contact-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item a {
    color: #4a5568;
    text-decoration: underline;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    word-wrap: break-word;
    max-width: 100%;
    display: inline-block;
}

.contact-item a:hover {
    color: #2d3748;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    margin-top: 4rem;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .logo {
        height: 120px;
    }

    .hero {
        height: 100vw;
        max-height: none;
        background-image: url('../images/kompromisslos-haffe-hero-mobile.png');
        background-position: center center;
    }

    .hero-content {
        padding: 1rem;
    }

    .main-content {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .announcement, .contact-section {
        padding: 1.5rem;
    }

    .contact-item {
        width: 100%;
    }
}