﻿/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* FULLSCREEN HERO */
.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    backdrop-filter: blur(2px);
    z-index: 2;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 42, 42, 0.1) 0%,
        transparent 70%
    );
    z-index: 2;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-hero-paragraph {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.about-hero-accent {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: #aaaaaa;
    line-height: 1.7;
    font-weight: 400;
}

.about-hero-accent .highlight {
    color: #ff2a2a;
    font-weight: 600;
}

.about-hero-mission {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: #888888;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.8;
    margin-top: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SCROLL HINT */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.85rem;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-arrow {
    color: #ff2a2a;
    animation: slideDown 1s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes slideDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* STORY SECTION */
.about-story {
    padding: 5rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 42, 42, 0.1);
}

.about-story h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    padding: 2.5rem;
    background: rgba(255, 42, 42, 0.03);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.story-card:hover {
    background: rgba(255, 42, 42, 0.08);
    border-color: #ff2a2a;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.2);
}

.story-year {
    display: inline-block;
    background: #ff2a2a;
    color: #0a0a0a;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: #ffffff;
}

.story-card p {
    color: #aaaaaa;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* VALUES SECTION */
.about-values {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(255, 42, 42, 0.02) 100%);
}

.about-values h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: rgba(255, 42, 42, 0.03);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    background: rgba(255, 42, 42, 0.08);
    border-color: #ff2a2a;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(10deg);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-card p {
    color: #aaaaaa;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* TEAM SECTION */
.about-team {
    padding: 5rem 0;
    background: #0a0a0a;
}

.about-team h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-text p {
    color: #aaaaaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 42, 42, 0.1);
}

.team-stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff2a2a;
    font-family: 'Poppins', sans-serif;
}

.stat-desc {
    display: block;
    font-size: 0.85rem;
    color: #aaaaaa;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.15), rgba(255, 42, 42, 0.05));
    border: 2px solid rgba(255, 42, 42, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-team:hover .team-image {
    border-color: #ff2a2a;
    box-shadow: 0 0 40px rgba(255, 42, 42, 0.3);
}

/* CTA SECTION */
.cta {
    background: linear-gradient(135deg, #ff2a2a 0%, #ff4444 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .team-content {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        margin-top: 100px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-paragraph {
        font-size: 1rem;
    }

    .scroll-hint {
        display: none;
    }

    .story-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 70vh;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-paragraph {
        font-size: 0.95rem;
    }

    .about-hero-content {
        padding: 1.5rem;
    }

    .story-card,
    .value-card {
        padding: 1.5rem;
    }

    .story-year {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .story-card h3,
    .value-card h3 {
        font-size: 1.1rem;
    }

    .team-text p {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 0.95rem;
    }
}
