/* styles/about.css */
:root {
    --charcoal: #1A1A1A;
    --jet-black: #0A0A0A;
    --neon-green: #39FF14;
    --electric-blue: #00F3FF;
    --light-gray: #E0E0E0;
}

.about {
    position: relative;
    min-height: 100vh;
    padding: 4rem 2rem;
    background-color: var(--jet-black);
    overflow: hidden;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}




.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border-radius: 4px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.section-title {
    font-size: 4rem;
    color: var(--light-gray);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.highlight {
    font-size: 1.5rem;
    color: var(--electric-blue);
    border-left: 3px solid var(--neon-green);
    padding-left: 1rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-content p {
    color: var(--light-gray);
    line-height: 1.8;
    opacity: 0.9;
}

.skill-section {
    background: rgba(57, 255, 20, 0.05);
    padding: 2rem;
    border-radius: 12px;
}

.skill-section h3,
.achievements h3 {
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.skill-category {
    background: rgba(0, 243, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    background: rgba(0, 243, 255, 0.1);
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.achievement-card {
    background: rgba(57, 255, 20, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(57, 255, 20, 0.1);
}

/* Image Showcase Styles */
.achievements-showcase {
    position: sticky;
    top: 2rem;
}

.showcase-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(57, 255, 20, 0.05);
}

.image-container.landscape {
    aspect-ratio: 16/9;
}

.image-container.portrait {
    aspect-ratio: 3/4;
}

.achievement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(57, 255, 20, 0.1), rgba(0, 243, 255, 0.1));
    mix-blend-mode: overlay;
    pointer-events: none;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover {
    .image-overlay {
        transform: translateY(0);
    }

    .achievement-img {
        transform: scale(1.05);
    }
}

/* Animations */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .achievements-showcase {
        position: relative;
        top: 0;
    }

    .skill-grid,
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .skill-grid,
    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .highlight {
        font-size: 1.25rem;
    }
}