/*
 * Home Page Styles
 * Specific styles for the home/landing page
 */

/* Hero Section */
.home-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--yk-primary) 0%, var(--yk-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/patterns/dots.svg');
    opacity: 0.1;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--yk-white);
}

.home-hero-title {
    font-size: var(--yk-fs-5xl);
    font-weight: var(--yk-font-bold);
    margin-bottom: var(--yk-space-lg);
}

.home-hero-subtitle {
    font-size: var(--yk-fs-xl);
    font-weight: var(--yk-font-light);
    margin-bottom: var(--yk-space-2xl);
}

/* Services Section */
.home-services {
    padding: var(--yk-space-3xl) 0;
}

.home-service-card {
    text-align: center;
    padding: var(--yk-space-xl);
    border-radius: var(--yk-radius-lg);
    transition: all var(--yk-transition-base);
    height: 100%;
}

.home-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--yk-shadow-lg);
}

.home-service-icon {
    font-size: 3rem;
    color: var(--yk-primary);
    margin-bottom: var(--yk-space-lg);
}

.home-service-title {
    font-size: var(--yk-fs-xl);
    font-weight: var(--yk-font-semibold);
    margin-bottom: var(--yk-space-md);
    color: var(--yk-dark);
}

.home-service-description {
    color: var(--yk-gray);
    font-size: var(--yk-fs-base);
}

/* Stats Section */
.home-stats {
    background-color: var(--yk-light);
    padding: var(--yk-space-3xl) 0;
}

.home-stat-item {
    text-align: center;
}

.home-stat-number {
    font-size: var(--yk-fs-4xl);
    font-weight: var(--yk-font-bold);
    color: var(--yk-primary);
}

.home-stat-label {
    font-size: var(--yk-fs-lg);
    color: var(--yk-dark);
    margin-top: var(--yk-space-sm);
}

/* CTA Section */
.home-cta {
    background: var(--yk-dark);
    color: var(--yk-white);
    padding: var(--yk-space-3xl) 0;
    text-align: center;
}

.home-cta-title {
    font-size: var(--yk-fs-3xl);
    font-weight: var(--yk-font-bold);
    margin-bottom: var(--yk-space-lg);
}

.home-cta-text {
    font-size: var(--yk-fs-lg);
    margin-bottom: var(--yk-space-xl);
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-hero-title {
        font-size: var(--yk-fs-3xl);
    }

    .home-hero-subtitle {
        font-size: var(--yk-fs-lg);
    }

    .home-service-card {
        margin-bottom: var(--yk-space-lg);
    }
}
