/* ========================================
   HOME PAGE STYLES
   Community-focused, inviting design
   ======================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #404040;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Button styles inherited from components.css */

.hero-actions .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #404040;
}

.hero-actions .btn-secondary:hover {
    background: #404040;
    border-color: #555;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #404040;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Development Notice */
.development-notice {
    background: #2d2d2d;
    padding: 3rem 2rem;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.notice-content h3 {
    font-size: 1.8rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.notice-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.notice-subtitle {
    color: #3b82f6 !important;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.user-dashboard-preview {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #404040;
    margin-top: 2rem;
}

.user-dashboard-preview h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.dashboard-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.preview-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #404040;
    text-align: center;
}

.preview-card h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.preview-card p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.signup-cta {
    margin-top: 2rem;
}

.cta-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer Info */
.footer-info {
    background: #1a1a1a;
    padding: 3rem 2rem;
    border-top: 1px solid #404040;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .features-section,
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .dashboard-preview-grid {
        grid-template-columns: 1fr;
    }
}
