﻿/* Home Page Styles */

:root {
    --bg-primary: #0a0a0f;
    --bg-card: #16161f;
    --border-color: #2a2a3a;
    --text-primary: #e5e5e5;
    --text-secondary: #9ca3af;
    --accent-primary: #3b82f6;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.hero-section { padding: 100px 20px 60px; text-align: center; }

.hero-icon {
    width: 120px; 
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 28px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-icon i { font-size: 56px; color: white; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3rem; 
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.hero-subtitle { 
    color: var(--text-secondary); 
    font-size: 1.25rem; 
    max-width: 600px; 
    margin: 0 auto 40px; 
}

/* Action Buttons */
.action-buttons { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-bottom: 60px; 
}

.btn-hero {
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    padding: 16px 32px; 
    border-radius: 12px; 
    font-weight: 600;
    text-decoration: none; 
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white; 
    border: none;
}

.btn-hero-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4); 
    color: white; 
}

.btn-hero-secondary { 
    background: rgba(255,255,255,0.05); 
    color: #e5e5e5; 
    border: 1px solid var(--border-color); 
}

.btn-hero-secondary:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: var(--accent-primary); 
    color: white; 
}

/* Features Section */
.features-section { padding: 60px 20px; }

.feature-card {
    background: var(--bg-card); 
    border: 1px solid var(--border-color);
    border-radius: 16px; 
    padding: 32px; 
    height: 100%; 
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent-primary); 
}

.feature-icon {
    width: 64px; 
    height: 64px; 
    border-radius: 16px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 20px; 
    font-size: 28px;
}

.feature-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.feature-icon.green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.feature-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.feature-icon.orange { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.feature-card h3 { 
    font-size: 1.25rem; 
    font-weight: 600; 
    color: var(--text-primary); 
    margin-bottom: 12px; 
}

.feature-card p { 
    color: var(--text-secondary); 
    margin: 0; 
}

/* Footer */
.footer-section { 
    padding: 40px 20px; 
    text-align: center; 
    border-top: 1px solid var(--border-color); 
}

.footer-section p { 
    color: #6b7280; 
    margin: 0; 
}

/* Admin Badge */
.admin-badge { 
    position: fixed; 
    bottom: 24px; 
    right: 24px; 
    z-index: 1000; 
}

.admin-badge a {
    display: flex; 
    align-items: center; 
    gap: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white; 
    padding: 12px 20px; 
    border-radius: 12px;
    text-decoration: none; 
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.admin-badge a:hover { 
    transform: translateY(-2px); 
}
