body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.4;
}

/* Dark Mode Anpassungen */
[data-theme="dark"] .hero-section h1,
[data-theme="dark"] .hero-section p {
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--hover-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(155, 123, 76, 0.3);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 768px) {
    .hero-section {
        margin-left: 0;
        padding-top: 80px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

.home-image-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.home-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-button-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.contact-button {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    text-transform: uppercase;
}

.contact-button:hover {
    background: #7c6239;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-button:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 768px) {
    .home-image-container {
        height: calc(100vh - 60px);
    }
}

@media (max-width: 480px) {
    .home-image-container {
        height: calc(100vh - 60px);
    }
    
    .contact-button-container {
        bottom: 20px;
    }
} 