/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* About Split */
.about-section {
    background-color: var(--color-white);
}

.about-split {
    display: flex;
    gap: 80px;
    flex-direction: row;
}

.about-split__media {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.about-split__media img {
    width: 100%;
    object-fit: cover;
}

.about-split__content {
    flex: 1;
    color: var(--color-heavy-metal);
}

.about-split__heading {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    margin-bottom: 30px;
    color: var(--color-heavy-metal);
}

.about-split__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .about-split {
        flex-direction: column;
    }

    .about-split__media {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-split__content {
        padding: 0;
    }
}

/* ============================================================
   TIMELINE SECTION
   ============================================================ */
.timeline-section {
    background-color: var(--color-heavy-metal);
    padding: 120px var(--hero-padding-x);
}

.timeline-section__inner {
    max-width: 1920px;
    margin: 0 auto;
}

.timeline-section__header {
    text-align: center;
    margin-bottom: 80px;
}

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

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-meteor), var(--color-thunderbird));
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    width: 50%;
    padding-right: 60px;
    padding-bottom: 60px;
}

.timeline__item--right {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 60px;
}

.timeline__marker {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-meteor);
    border: 4px solid var(--color-heavy-metal);
    z-index: 2;
}

.timeline__item:not(.timeline__item--right) .timeline__marker {
    right: -10px;
}

.timeline__item--right .timeline__marker {
    left: -10px;
}

.timeline__card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    color: white;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline__card:hover {
    transform: translateY(-4px);
    border-color: rgba(210, 112, 18, 0.4);
}

.timeline__year {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-meteor);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.timeline__card h3 {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeline__card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .timeline__line {
        left: 20px;
    }

    .timeline__item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline__item--right {
        margin-left: 0;
        padding-left: 60px;
    }

    .timeline__item:not(.timeline__item--right) .timeline__marker {
        right: auto;
        left: 10px;
    }

    .timeline__item--right .timeline__marker {
        left: 10px;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 80px 24px;
    }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
    background-color: #f7f7f7;
}

.team-section__header {
    text-align: center;
    margin-bottom: 20px;
}

.team-section__desc {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.team-card__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    overflow: hidden;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__photo i {
    font-size: 48px;
    color: #bbb;
}

.team-card h3 {
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-heavy-metal);
    margin-bottom: 6px;
}

.team-card span {
    font-size: 15px;
    color: var(--color-meteor);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ACCREDITATIONS SECTION
   ============================================================ */
.accreditations-section {
    background-color: var(--color-black);
    padding: 120px var(--hero-padding-x);
}

.accreditations-section__inner {
    max-width: 1920px;
    margin: 0 auto;
}

.accreditations-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.accreditations-section__desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.5;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.accreditation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(210, 112, 18, 0.4);
}

.accreditation-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(210, 112, 18, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.accreditation-card__icon i {
    font-size: 36px;
    color: var(--color-meteor);
}

.accreditation-card h3 {
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.accreditation-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .accreditations-section {
        padding: 80px 24px;
    }

    .accreditations-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SOCIALS SECTION
   ============================================================ */
.socials-full-width {
    padding: 50px var(--hero-padding-x);
    background-color: var(--color-heavy-metal);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.socials-full-width .section__container {
    gap: 20px;
}

.socials-full-width .section-subheading {
    margin-bottom: 0;
}

.socials-desc {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 600px;
    margin: 5px auto 24px;
}

.socials-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 60px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--color-meteor);
    color: var(--color-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(210, 112, 18, 0.3);
    border-color: var(--color-meteor);
}