﻿/* ===================================
   HOME PAGE STYLES
   =================================== */

/* Hero Section */
.home-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.home-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(106, 164, 175, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 196, 207, 0.1) 0%, transparent 50%);
}

.home-hero-section .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.home-hero-section .hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.home-hero-section .text-gradient {
    background: linear-gradient(135deg, #6aa4af 0%, #8bc4cf 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.home-hero-section .subtitle {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.home-hero-section .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Paths Section */
.paths-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.section-intro {
    margin-bottom: 4rem;
}

.path-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.path-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.path-devlife .path-badge {
    color: #0d6efd;
}

.path-userbuild .path-badge {
    color: #198754;
}

.path-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.path-userbuild .path-header {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

.path-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
}

.path-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.path-tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.path-body {
    padding: 2rem;
    flex-grow: 1;
}

.path-features {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.path-features h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item i {
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.path-highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
}

.path-highlight i {
    color: #ff9800;
    margin-right: 0.5rem;
}

.path-footer {
    padding: 2rem;
    background: #f8f9fa;
    text-align: center;
}

/* Combined Value Section */
.combined-value {
    margin-top: 4rem;
}

.value-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.value-card .value-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #ffffff;
    font-weight: 800;
}

.value-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.value-item p {
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.95;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.philosophy-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.philosophy-card i {
    font-size: 3rem;
}

.philosophy-card .blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    color: #495057;
}

/* CTA Section */
.home-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 5rem 0;
}

.home-cta-section h2 {
    color: #ffffff;
}

.home-cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .home-hero-section .hero-title {
        font-size: 3rem;
    }

    .home-hero-section .subtitle {
        font-size: 1.5rem;
    }

    .home-hero-section .hero-description {
        font-size: 1.1rem;
    }

    .path-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .home-hero-section .hero-title {
        font-size: 2.5rem;
    }

    .home-hero-section .subtitle {
        font-size: 1.3rem;
    }

    .home-hero-section .hero-description {
        font-size: 1rem;
    }

    .path-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .path-header h3 {
        font-size: 1.6rem;
    }

    .value-card {
        padding: 2rem 1rem;
    }

    .philosophy-card {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .home-hero-section .hero-title {
        font-size: 2rem;
    }

    .home-hero-section .subtitle {
        font-size: 1.1rem;
    }

    .path-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-item i {
        font-size: 1.5rem;
    }
}
