/* Home Page Specific Styles */

.hero-section {
    position: relative;
    min-height: 100vh;
    /*  */
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../images/banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A4D6D 0%, #2C5F7F 50%, #3A7CA5 100%);
    animation: float 20s ease-in-out infinite;
    opacity: 0.7;
    z-index: 2;
}
.scroll-indicator{
    position: relative;
    z-index: 10;
    text-decoration: none;
}
.hero-section .container{
    position: relative;
    z-index: 10;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    animation: wordFadeIn 0.6s ease forwards;
}

.hero-title .word:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-title .word:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-title .word:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes wordFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

/* Learning Paths */
.learning-paths {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.path-development,
.path-design {
    min-height: 500px;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.path-development {
    background: linear-gradient(135deg, #2C5F7F, #1A4D6D);
    color: var(--white);
}

.path-design {
    background: linear-gradient(135deg, #D96B2F, #C45920);
    color: var(--white);
}

.path-development::before,
.path-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    background-size: 100px 100px;
}

.path-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.path-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.path-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.path-highlights li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
}

.path-highlights li i {
    margin-right: 1rem;
    color: var(--accent-color);
}

/* Skills Timeline */
.skills-timeline {
    background: var(--background-light);
}

/* Philosophy Manifesto */
.philosophy-manifesto {
    padding: 5rem 0;
    background: var(--white);
}

/* Skills Radar */
.skills-radar {
    background: var(--background-light);
}

/* Community Model */
.community-model {
    background: var(--white);
}

/* Ethical Statement */
.ethical-statement {
    background: linear-gradient(135deg, var(--primary-color), #3A7CA5);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.ethical-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.statement-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.statement-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #D96B2F, #C45920);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,.03) 10px,
        rgba(255,255,255,.03) 20px
    );
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

/* Additional Effects */
.value-icon,
.community-feature i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon,
.community-feature:hover i {
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .path-development,
    .path-design {
        padding: 3rem 2rem;
    }
    
    .statement-box {
        padding: 2rem;
    }
}
