/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
  justify-content: center;
    padding-top: 0; /* Remove any top padding */
    margin-top: 0; /* Remove margin-top */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('/assets/images/hero-image1.png') center/cover no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-container {
    width: 1200px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    z-index: 1;
    animation: fadeInLeft 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.user-showcase {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-avatars {
    display: flex;
    position: relative;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    position: relative;
}

.user-avatar:not(:first-child) {
    margin-left: -20px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-stats {
    font-size: 0.95rem;
}

.user-stats-count {
    font-weight: 700;
    color: var(--accent-color);
}

/* Right Side Content */
.hero-right {
    z-index: 1;
    animation: fadeInRight 1s ease forwards;
}

.hero-info {
    background: var(--overlay-light);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-info-title i {
    color: var(--accent-color);
}

.hero-info-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.hero-info-link {
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.hero-info-link:hover {
    gap: 0.8rem;
}


/* Social Icons */
.social-icons {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--overlay-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .counseling-info {
        display: none;
    }


}




@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 3rem;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-buttons, .user-showcase {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .feature {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .lead-text {
        font-size: 1.2rem;
    }
    
    /* Zentrieren der hero-info Elemente */
    .hero-info {
        text-align: center;
    }
    
    .hero-info-title {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-info {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-info-title {
        justify-content: center;
    }

    .hero-info-text {
        text-align: center;
    }

    .hero-info-link {
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }
    
    .social-icons {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        transform: none;
    }
    
    
    .secondary-images {
        grid-template-columns: 1fr;
    }

 .user-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .user-stats {
        font-size: 0.85rem;
    }
    .user-stats-count {
        font-size: 0.75rem;
    }

}


@media (max-width: 576px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0 4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    

    .hero-info {
        justify-content: center;
        justify-items: center;
    }
    

}