/* assets/css/references.css */

/* Hero Section */
.references-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    position: relative;
}

.references-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--moonflow-gradient);
    opacity: 0.1;
    z-index: -1;
}

.references-hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Showreel Section */
.video-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.video-placeholder {
    background: #f8f9fa;
    padding: 5rem;
    text-align: center;
    border-radius: 20px;
    color: #6c757d;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--moonflow-purple);
}

/* Partner Cards */
.partner-card {
    height: 100%;
    position: relative;
    padding-bottom: 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(116, 58, 213, 0.1);
}

.partner-logo {
    /* height: 150px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-content {
    padding: 1.5rem;
}

.partner-name {
    font-size: 1.3rem;
    color: var(--moonflow-purple);
    margin-bottom: 0.5rem;
}

.partner-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Social Links */
.partner-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: var(--moonflow-purple);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    background: var(--moonflow-gradient);
    color: white;
    transform: translateY(-2px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.social-icons {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    padding: 0 15px;
}

/* Stats Section */
.stats-section {
    border-top: 1px solid #dee2e6;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--moonflow-purple);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Animation für Counter */
.counter {
    display: inline-block;
}

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

.counter.animated {
    animation: countUp 0.5s ease-out forwards;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .video-placeholder {
        padding: 3rem;
    }
    
    .partner-logo {
        height: 120px;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}