/* 
* Easycity-eu.com - About Page Styles
* Version: 2.0
*/

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/hero-bg.svg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
    font-size: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ===== LIGHT EFFECTS ===== */
.light-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 8s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.light-effect-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: 10%;
    opacity: 0.3;
    animation-delay: 0s;
}

.light-effect-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 5%;
    opacity: 0.2;
    animation-delay: 2s;
}

.light-effect-3 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: -30px;
    opacity: 0.4;
    animation-delay: 1s;
}

.light-effect-4 {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -50px;
    opacity: 0.3;
    animation-delay: 3s;
}

.light-effect-5 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    right: -100px;
    opacity: 0.2;
    animation-delay: 2.5s;
}

.light-effect-6 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    opacity: 0.25;
    animation-delay: 1.5s;
}

.light-effect-7 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

/* ===== ABOUT MISSION SECTION ===== */
.about-mission, .about-vision {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.about-mission {
    background-color: white;
}

.about-vision {
    background-color: var(--bg-light);
    position: relative;
}

.about-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 157, 233, 0.1) 0%, rgba(196, 214, 255, 0.1) 100%);
    z-index: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
}

.row.reverse {
    flex-direction: row-reverse;
}

.mission-image, .vision-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.mission-content, .vision-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.mission-image img, .vision-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.mission-content h2, .vision-content h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.mission-content h3, .vision-content h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Lightbulb animation */
.title-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.title-lightbulb {
    margin-left: 15px;
    font-size: 4rem;
    color: #FFD700;
    animation: blink 2s infinite ease-in-out;
}

.idea-container {
    position: relative;
    padding: 1rem 0;
}

.lightbulb-animation {
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 4rem;
    color: #FFD700;
    animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
    0% {
        opacity: 0.3;
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
    100% {
        opacity: 0.3;
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
    }
}

.mission-content p, .vision-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.mission-content strong, .vision-content strong {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== ABOUT STORY SECTION ===== */
.about-story {
    padding: 10rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-story h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 5rem;
    text-align: center;
    color: var(--primary-dark);
    position: relative;
    z-index: 2;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background-color: var(--primary-light);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    z-index: 1;
}

.timeline-content {
    margin-left: 50px;
}

.timeline-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* ===== ABOUT VALUES SECTION ===== */
.about-values {
    padding: 10rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 157, 233, 0.1) 0%, rgba(196, 214, 255, 0.1) 100%);
    z-index: 0;
}

.about-values h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 5rem;
    text-align: center;
    color: var(--primary-dark);
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
}

.value-icon {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    font-size: 2.8rem;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.value-card:nth-child(1) .value-icon {
    background-color: #ff7e5f;
}

.value-card:nth-child(2) .value-icon {
    background-color: #00c9a7;
}

.value-card:nth-child(3) .value-icon {
    background-color: #4e54c8;
}

.value-card:nth-child(4) .value-icon {
    background-color: #feb47b;
}

.value-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.value-card p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* ===== ABOUT CTA SECTION ===== */
.about-cta {
    padding: 10rem 0;
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-content .btn {
    background-color: var(--secondary-color);
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    border-radius: 50px;
}

.cta-content .btn:hover {
    background-color: var(--secondary-dark);
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 992px) {
    .row {
        flex-direction: column;
    }
    
    .row.reverse {
        flex-direction: column;
    }
    
    .mission-image, .vision-image,
    .mission-content, .vision-content {
        width: 100%;
    }
    
    .mission-image, .vision-image {
        margin-bottom: 3rem;
    }
    
    .row.reverse .vision-image {
        margin-top: 3rem;
        margin-bottom: 0;
    }
    
    .about-hero-content h1 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 3.2rem;
    }
    
    .about-hero-content p {
        font-size: 1.6rem;
    }
    
    .mission-content h2, .vision-content h2,
    .about-story h2, .about-values h2,
    .cta-content h2 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 576px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .timeline-content {
        margin-left: 40px;
    }
}
