/* ============================================================================
   SOCIALCORE - HOME PAGE
   Hyves-geïnspireerde landing page
   ============================================================================ */

/* ====================================
   HERO SECTIE
   ==================================== */

.hero {
    background: linear-gradient(135deg, #F5A623 0%, #E8940C 50%, #CC7A00 100%);
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Subtiele pattern overlay voor textuur */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content (linkerkant) */
.hero-content {
    color: #1a1a1a;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #333;
    max-width: 500px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0066CC;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-hero-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

.btn-hero-primary .btn-icon {
    font-size: 1.2rem;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-secondary:hover {
    background: white;
    border-color: #0066CC;
    color: #0066CC;
    transform: translateY(-2px);
}

/* Hero Visual - Slider (rechterkant) */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-slider {
    width: 100%;
    max-width: 450px;
    position: relative;
}

.hero-slides {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    aspect-ratio: 3 / 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 3rem 1.5rem 1.5rem;
    color: white;
}

.hero-slide-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-slide-caption p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: white;
}

/* Slider Dots */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-slider {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   FEATURES SECTIE
   ==================================== */

.features {
    background: #fff;
    padding: 5rem 1.5rem;
    position: relative;
}

/* Subtiele golf-transitie van hero naar features */
.features::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #E8940C 0%, #fff 100%);
    pointer-events: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.features-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #0066CC;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    /* Subtiele bounce animatie bij hover */
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFB800, #F5A623);
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.feature-card--coming-soon {
    opacity: 0.85;
}

.feature-card--coming-soon:hover {
    opacity: 1;
}

/* ====================================
   FEATURES RESPONSIVE
   ==================================== */

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features {
        padding: 3rem 1rem;
    }

    .features::before {
        top: -30px;
        height: 60px;
    }

    .features-title {
        font-size: 1.75rem;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* ====================================
   COMMUNITY CTA SECTIE
   ==================================== */

.community-cta {
    background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Decoratieve cirkels op achtergrond */
.community-cta::before,
.community-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.community-cta::before {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.community-cta::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.community-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.community-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.community-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 450px;
}

.community-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFB800;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.btn-cta-primary:hover {
    background: #e8a600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Stats */
.community-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.stat-icon {
    font-size: 2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: auto;
}

/* ====================================
   COMMUNITY CTA RESPONSIVE
   ==================================== */

@media (max-width: 968px) {
    .community-cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .community-cta-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .community-cta-buttons {
        justify-content: center;
    }

    .stat-item {
        justify-content: center;
    }

    .stat-label {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .community-cta {
        padding: 3rem 1rem;
    }

    .community-cta-content h2 {
        font-size: 1.75rem;
    }

    .community-cta-content p {
        font-size: 1rem;
    }

    .community-cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .stat-item {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .stat-label {
        width: 100%;
    }
}
