/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* ABOUT HERO MINIMAL */
.about-hero-minimal {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 6rem 0 3rem 0;
}

.about-hero-content {
    text-align: center;
    max-width: 1200px;
}

.about-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #ADFF2F;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.about-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.separator {
    margin: 0 1rem;
    color: #9D00FF;
}

/* THE STORY SECTION */
.about-story {
    padding: 0.5rem 0 4rem 0;
    background: #0a0a0a;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.8rem;
}

.story-paragraph strong {
    color: #ADFF2F;
    font-weight: 600;
}


/* BTS GALLERY SECTION */
.bts-gallery {
    padding: 1rem 0 4rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bts-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
}

.bts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bts-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.bts-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.4s ease;
}

.bts-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.bts-caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ADFF2F;
    margin-bottom: 0.25rem;
}

.bts-year {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.5rem;
}

.bts-role {
    font-size: 0.85rem;
    color: #9D00FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hover Effects */
.bts-item:hover img {
    filter: grayscale(0%) brightness(0.4) contrast(1.2);
    transform: scale(1.05);
}

.bts-item:hover .bts-overlay {
    opacity: 1;
}

.bts-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.4s ease;
    pointer-events: none;
}

.bts-item:hover::before {
    border-color: #ADFF2F;
    box-shadow: 0 0 20px rgba(173, 255, 47, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .bts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* SLATE TEASER SECTION */
.slate-teaser {
    padding: 6rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.slate-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-about {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slate-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.slate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.slate-card {
    padding: 2.5rem 2rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ADFF2F, #9D00FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.slate-card:hover::before {
    transform: scaleX(1);
}

.slate-card:hover {
    transform: translateY(-5px);
    border-color: rgba(173, 255, 47, 0.2);
}

.slate-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #9D00FF;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.slate-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ADFF2F;
    margin-bottom: 0.75rem;
}

.slate-card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.slate-cta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ADFF2F 0%, #9D00FF 100%);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.slate-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(173, 255, 47, 0.3);
}

.slate-cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a;
}

.slate-cta-arrow {
    font-size: 2rem;
    color: #0a0a0a;
    transition: transform 0.3s ease;
}

.slate-cta-card:hover .slate-cta-arrow {
    transform: translateX(5px);
}

/* SKILLS SECTION */
.skills-section {
    padding: 3rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.skills-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.skill-category {
    text-align: center;
}

.skill-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ADFF2F;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    padding: 0.75rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(157, 0, 255, 0.1);
    border-color: #9D00FF;
    color: #ADFF2F;
    transform: translateY(-2px);
}

/* EDUCATION SECTION */
.education-section {
    padding: 6rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.education-timeline {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: #1a1a1a;
    border: 2px solid rgba(157, 0, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    border-color: #ADFF2F;
}

.timeline-icon {
    display: none;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.timeline-org {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.timeline-year {
    font-size: 0.85rem;
    color: #ADFF2F;
    font-weight: 600;
    line-height: 1;
}

/* CINEMATIC CTA */
.about-cta-cinematic {
    padding: 8rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.cta-cinematic-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-cinematic-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cta-cinematic-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-cinematic-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #ADFF2F, #9D00FF);
    color: #0a0a0a;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(173, 255, 47, 0.4);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ADFF2F;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cta-secondary:hover {
    background: #ADFF2F;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero-minimal {
        min-height: 50vh;
        padding: 6rem 0 3rem 0;
    }

    .about-hero-subtitle {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }

    .story-paragraph {
        font-size: 1rem;
    }

    .slate-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .cta-cinematic-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}