 /* Hero Section */
.hero {
    position: relative;
    height: 40vw;
    min-height: 330px;
    max-height: 600px;
    background-image: url(../images/titelbild.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero::before {
    display: none;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding);
    z-index: 100;
}

.heart-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.heart-icon svg {
    width: 28px;
    height: 28px;
    fill: #331818;
}

.platform-links {
    display: flex;
    gap: 1rem;
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.platform-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.platform-icon svg {
    width: 24px;
    height: 24px;
}

.hero-content {
    position: absolute;
    top: 16%;
    z-index: 5;
    text-align: center;
    animation: fadeInUp 1s ease;
    width: 100%;
}

.hero-content h1 {
    margin-bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

.heart-icon {
    display: none;
}

.platform-links {
    width: 100%;
    justify-content: center;
}

    .hero-content {
        top: 27%;
        width: 100%;
        padding: 0 var(--padding-phone);
    }

    .hero-nav {
        padding: var(--padding-small-phone);
    }

    .hero-content h1 {
        color: #fff;
    }

    
}