/* Home Page Specific Styles */

.home-container {
    /* Uses .container-md from utility classes */
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: var(--spacing-xxl) 0;
    margin-bottom: var(--spacing-xxl);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--link-color), var(--link-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    margin-bottom: var(--spacing-xxl);
}

.features-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.feature p {
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Demo Section */
.demo-section {
    margin: var(--spacing-xxl) 0;
    text-align: center;
}

.demo-section h2 {
    margin-bottom: var(--spacing-md);
}

.demo-section p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: var(--spacing-xxl) 0;
    margin-top: var(--spacing-xxl);
    border-top: 1px solid var(--border-color);
}

.cta-section h2 {
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--link-color);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--link-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 179, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--link-color);
    border: 2px solid var(--link-color);
}

.btn-secondary:hover {
    background-color: var(--link-color);
    color: var(--text-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}