/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 48px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('/api/placeholder/1200/800') center center no-repeat;
    background-size: cover;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 26px;
    font-weight: 400;
    color: var(--light-text);
    margin-bottom: 30px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-button {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.primary-cta {
    background-color: var(--accent-color);
    color: white;
}

.secondary-cta {
    background-color: var(--light-bg);
    color: var(--accent-color);
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.gray-bg {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s, box-shadow 0.5s;
    transform: translateY(50px);
    opacity: 0;
}

.card.visible {
    transform: translateY(0);
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    background-position: center;
    background-size: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.card-text {
    color: var(--light-text);
    line-height: 1.5;
}

/* Features */
.feature {
    display: flex;
    margin-bottom: 100px;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s, transform 0.8s;
}

.feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.feature:nth-child(even).visible {
    transform: translateX(0);
}

.feature-image {
    flex: 1;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.feature-content {
    flex: 1;
    padding: 0 50px;
}

.feature-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-text {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 18px;
}

.accent-bar {
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 20px 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 15px;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Anpassungen (außer Navigation) */
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 22px;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .feature:nth-child(even) {
        flex-direction: column;
    }

    .feature-content {
        padding: 30px 0;
    }

    .accent-bar {
        margin: 20px auto;
    }

    .feature-image {
        height: 300px;
        width: 100%;
    }
}