/* About Section */
#about {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    background: var(--color-black);
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0px 0px 8px var(--glow-3);
    z-index: 1;
}

/* Background Glow Effects */
.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.about-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: 10%;
    left: -10%;
}

.about-glow-2 {
    width: 450px;
    height: 450px;
    /* Remove green background glow on the right side of About section */
    background: transparent;
    bottom: 15%;
    right: -8%;
}

/* Container */
.about-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 2;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    /* Visible by default, hidden only when JS is enabled */
}

.js-enabled .about-tagline {
    opacity: 0;
    transform: translateY(20px);
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0;
    line-height: 1.2;
    /* text-shadow removed - using .neon-text class instead */
    /* Visible by default, hidden only when JS is enabled */
}

.js-enabled .about-title {
    opacity: 0;
    transform: translateY(30px);
}

/* Two Column Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Text */
.js-enabled .about-text {
    opacity: 0;
    transform: translateX(-30px);
}

.about-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Bullet List */
.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

.js-enabled .about-features li {
    opacity: 0;
    transform: translateX(-20px);
}

.about-features li .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glow-1);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--glow-3);
    transition: all 0.3s ease;
}

.about-features li:hover .icon {
    background: var(--glow-2);
    box-shadow: 0 0 30px var(--glow-5);
    transform: scale(1.1);
}

/* Right Column - Image Card */
.about-image-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    box-shadow: 
        0 0 40px var(--glow-3),
        inset 0 0 30px var(--glow-05);
}

.js-enabled .about-image-card {
    opacity: 0;
    transform: translateY(50px);
}

.about-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    z-index: -1;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.about-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-card:hover .about-image-wrapper img {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.overlay-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    /* text-shadow removed - using .neon-text class instead */
}

.overlay-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 50px;
    }

    .about-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 80px 20px;
    }

    .about-header {
        margin-bottom: 50px;
    }

    .about-title {
        font-size: 38px;
    }

    .about-tagline {
        font-size: 13px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-subheading {
        font-size: 20px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    #about {
        padding: 60px 15px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-subheading {
        font-size: 18px;
    }

    .about-description {
        font-size: 15px;
    }

    .overlay-title {
        font-size: 20px;
    }

    .image-overlay {
        padding: 20px;
    }
}

