/* public/about.css */

.about-main {
    background-color: var(--navy-dark);
}

#about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(17, 34, 64, 0.9)), url('art/background images/popupshop.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

#about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.05) 10px, rgba(255, 215, 0, 0.05) 12px);
    animation: futuristic-grid 20s linear infinite;
    z-index: 1;
}

@keyframes futuristic-grid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400px 400px;
    }
}

#about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--light-slate);
    max-width: 800px;
    margin: 0 auto;
}

#about-timeline {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--neon-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.timeline-item {
    padding: 1rem 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-right: 25px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 25px;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--navy-dark);
    border: 3px solid var(--neon-gold);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-gold);
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--card-bg);
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.timeline-title {
    color: var(--neon-gold);
    margin-top: 0;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        padding-left: 25px;
        text-align: left;
    }

    .timeline-icon {
        left: 6px;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        left: 6px;
    }
}
