:root {
    --font-titles: "Orbitron", sans-serif;
    --font-body: "Exo 2", sans-serif;
    --primary-red: #ff1f1f;
    --background-black: #000000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--background-black);
    overflow-x: hidden;
    height: 100vh;
}

p{
    strong{
        color: var(--primary-red);
        font-weight: 700;
    }
}

.site-nav {
    width: 90%;
    max-width: 1400px;
    padding: 15px 50px;
    border-radius: 16px;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;

    position: fixed;
    top: 20px;   
    left: 50%;       
    transform: translateX(-50%); 
    margin: 0;      

    .site-nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        position: relative;
        z-index: 1001;

        img.site-nav-logo {
            height: 60px;
            width: auto;
        }

        .brand-text .site-nav-word {
            font-family: var(--font-titles);
            font-weight: 700;
            font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
            color: #fff;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
    }

    .site-nav-menu {
        display: flex;
        gap: 10px;
        align-items: center;

        .nav-link {
            font-family: var(--font-titles);
            font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
            font-weight: 500;
            color: #ccc;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            letter-spacing: 1px;

            &:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.05);
            }

            &.btn-highlight {
                background-color: #f12125;
                color: #fff;
                font-weight: 700;
                border: 1px solid #f12125;
                box-shadow: 0 4px 15px rgba(241, 33, 37, 0.4);

                &:hover {
                    background-color: #ff3b3f;
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(241, 33, 37, 0.6);
                }
            }
        }
    }

    .navcollapse {
        display: none;
        overflow: hidden;
        z-index: 1001;
        margin-right: 0;

        #nav-icon {
            width: 30px;
            height: 35px;
            position: relative;
            cursor: pointer;
            margin: 0 auto;
            transform: scale(0.8);

            span {
                display: block;
                position: absolute;
                width: 50%;
                height: 4px;
                background: white;
                transition: all 0.3s ease;

                &:nth-child(odd) {
                    left: 0;
                    border-radius: 8px 0 0 8px;
                }

                &:nth-child(even) {
                    left: 50%;
                    border-radius: 0 8px 8px 0;
                }

                &:nth-child(1),
                &:nth-child(2) {
                    top: 0;
                }

                &:nth-child(3),
                &:nth-child(4) {
                    top: 12px;
                }

                &:nth-child(5),
                &:nth-child(6) {
                    top: 24px;
                }
            }

            &.open {
                span {
                    background: var(--primary-red);
                }

                span:nth-child(1),
                span:nth-child(6) {
                    transform: rotate(45deg);
                }

                span:nth-child(2),
                span:nth-child(5) {
                    transform: rotate(-45deg);
                }

                span:nth-child(1) {
                    left: 3px;
                    top: 7px;
                }

                span:nth-child(2) {
                    top: 7px;
                    right: 7px;
                    left: auto;
                }

                span:nth-child(3) {
                    transform: translateX(-50px);
                    opacity: 0;
                }

                span:nth-child(4) {
                    transform: translateX(50px);
                    opacity: 0;
                }

                span:nth-child(5) {
                    left: 3px;
                    top: 18px;
                }

                span:nth-child(6) {
                    top: 18px;
                    right: 7px;
                    left: auto;
                }
            }
        }
    }
}

.menu_mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;

    &.menu-open {
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }

    .menu-mobile-nav {
        list-style: none;
        padding: 0;
        text-align: center;

        .item {
            margin: 25px 0;
            overflow: hidden;

            a {
                text-decoration: none;
                color: white;
                font-family: var(--font-titles);
                font-size: clamp(2rem, 1.8rem + 1vw, 2.5rem);
                font-weight: 700;
                display: block;
                text-transform: uppercase;
                letter-spacing: 2px;
                transition: color 0.3s;

                span {
                    display: block;
                }

                &:hover {
                    color: var(--primary-red);
                    transform: scale(1.1);
                }
            }
        }
    }
}

/*HOME */
.home-page {
    .home-hero {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background-color: #000;

        .hero-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            display: flex;
            justify-content: center;
            align-items: center;

            &.layer-background {
                z-index: 1;

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

            &.layer-text-back {
                z-index: 2;
            }

            &.layer-image {
                z-index: 3;

                img {
                    width: 100%;
                    max-width: 2000px;
                    height: auto;
                    object-fit: contain;
                }
            }

            &.layer-text-front {
                z-index: 4;
            }

            &.layer-ui {
                z-index: 10;
                pointer-events: auto;

                .btn-explore {
                    position: absolute;
                    bottom: 30%;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }

        .giant-text {
            font-family: var(--font-titles);
            font-weight: 900;
            margin: 0;
            font-size: clamp(3.75rem, -0.75rem + 15vw, 11rem);
            line-height: 0.8;
            letter-spacing: -3px;
            text-transform: uppercase;
            text-align: center;

            &.filled {
                color: var(--primary-red);
                filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
            }

            &.outline {
                color: transparent;
                -webkit-text-stroke: 2px var(--primary-red);
                stroke: var(--primary-red);
            }
        }

        .hero-subtitle {
            position: absolute;
            bottom: 35%;
            right: 10%;
            font-family: var(--font-titles);
            color: var(--primary-red);
            letter-spacing: 6px;
            font-size: clamp(0.9rem, 0.8rem + 0.25vw, 1rem);
            text-transform: uppercase;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .btn-explore {
            background-color: var(--primary-red);
            color: white;
            text-decoration: none;
            padding: 15px 45px;
            border-radius: 50px;
            font-family: var(--font-titles);
            font-weight: 700;
            font-size: clamp(0.9rem, 0.8rem + 0.25vw, 1rem);
            box-shadow: 0 10px 30px rgba(255, 31, 31, 0.4);
            transition: all 0.3s ease;
            letter-spacing: 2px;

            &:hover {
                background-color: white;
                color: var(--primary-red);
                box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
            }
        }
    }

    .mountain-section {
        background-color: var(--background-black);
        padding: 80px 0;
        text-align: center;

        .section-title {
            font-family: var(--font-titles);
            font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
            color: white;
            margin-bottom: 50px;
            letter-spacing: 5px;
        }

        .accordion-container {
            display: flex;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            height: 500px;
            gap: 15px;

            .accordion-card {
                position: relative;
                flex: 1;
                overflow: hidden;
                cursor: pointer;
                transition: flex 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);

                &:hover {
                    flex: 4;

                    .card-img {
                        transform: scale(1.05);
                    }

                    .card-content {
                        opacity: 1;
                        transform: translateY(0);
                    }

                    .card-overlay {
                        opacity: 0.7;
                    }
                }

                .card-img {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    z-index: 1;
                    transition: transform 0.8s ease;
                }

                .card-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
                    z-index: 2;
                    opacity: 0.3;
                    transition: opacity 0.4s;
                }

                .card-content {
                    position: absolute;
                    bottom: 40px;
                    left: 40px;
                    z-index: 3;
                    text-align: left;
                    opacity: 0;
                    transform: translateY(30px);
                    transition: all 0.5s ease 0.1s;

                    h3 {
                        font-family: var(--font-titles);
                        font-size: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
                        margin: 0;
                        text-transform: uppercase;
                        color: white;
                    }

                    p {
                        font-family: var(--font-body);
                        color: var(--primary-red);
                        margin: 5px 0 20px 0;
                        font-weight: 700;
                        letter-spacing: 3px;
                    }

                    .card-btn {
                        display: inline-block;
                        text-decoration: none;
                        color: white;
                        font-family: var(--font-titles);
                        font-weight: 700;
                        padding: 10px 25px;
                        border: 2px solid var(--primary-red);
                        border-radius: 30px;
                        transition: all 0.3s ease;

                        &:hover {
                            background-color: var(--primary-red);
                            box-shadow: 0 0 15px rgba(255, 31, 31, 0.5);
                        }
                    }
                }
            }
        }
    }

    .gear-section {
        position: relative;
        background-color: #050505;
        overflow: hidden;
        padding: 100px 0;
        height: 900px;
        font-family: var(--font-titles);

        .background-text-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            font-family: var(--font-titles);
            font-weight: 900;
            font-size: clamp(4rem, 2rem + 6vw, 8rem);
            line-height: 0.85;
            text-align: center;
            text-transform: uppercase;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.08);
            pointer-events: none;
            user-select: none;
            overflow: hidden;
        }

        .gear-container {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
            height: 100%;
            margin: 0 auto;

            .gear-orb {
                position: absolute;
                width: 140px;
                height: 140px;
                border-radius: 50%;
                border: 1px solid rgba(255, 255, 255, 0.3);
                background: rgba(0, 0, 0, 0.6);
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 2;
                transition: transform 0.3s ease, border-color 0.3s ease;

                &:hover {
                    transform: scale(1.1);
                    border-color: var(--primary-red);
                    box-shadow: 0 0 30px rgba(255, 31, 31, 0.4);
                }

                .orb-grid {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
                    background-size: 20px 20px;
                    opacity: 0.5;
                    pointer-events: none;
                }

                img {
                    width: 60%;
                    height: auto;
                    object-fit: contain;
                    z-index: 2;
                    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
                }
            }

            .item-helmet {
                top: 5%;
                left: 15%;
            }

            .item-suit-icon {
                top: 30%;
                left: 10%;
                width: 160px;
                height: 160px;
            }

            .item-harness {
                top: 55%;
                left: 18%;
            }

            .item-boots {
                top: 65%;
                left: 40%;
            }

            .center-card {
                position: absolute;
                top: 10%;
                right: 15%;
                width: 350px;
                height: 500px;
                transform: rotate(-10deg);
                z-index: 5;
                transition: transform 0.5s ease;

                &:hover {
                    transform: rotate(0deg) scale(1.02);
                }

                .card-frame {
                    width: 100%;
                    height: 100%;
                    background-color: #1a1a1a;
                    border: 4px solid #fff;
                    overflow: hidden;
                    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);

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

                .decor-block {
                    position: absolute;
                    background-color: var(--primary-red);
                    width: 50px;
                    height: 100px;
                    z-index: 6;

                    &.top-left {
                        top: 30px;
                        left: -25px;
                    }

                    &.bottom-right {
                        bottom: 30px;
                        right: -25px;
                    }
                }

            }

            .red-line {
                position: absolute;
                background-color: var(--primary-red);
                height: 2px;
                z-index: 1;
                transform-origin: 0 0;
                box-shadow: 0 0 8px var(--primary-red);
                opacity: 0.8;
            }

            .line-1 {
                top: 12%;
                left: 22%;
                width: 500px;
                transform: rotate(15deg);
            }

            .line-2 {
                top: 40%;
                left: 20%;
                width: 500px;
                transform: rotate(-10deg);
            }

            .line-3 {
                top: 62%;
                left: 25%;
                width: 500px;
                transform: rotate(-35deg);
            }

            .line-4 {
                top: 72%;
                left: 45%;
                width: 400px;
                transform: rotate(-65deg);
            }

        }
    }

    .instructor-section {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        font-family: var(--font-body);
        background-color: #000;

        .background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .overlay-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            display: flex;
            pointer-events: none;

            .left-zone {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;

                .giant-title {
                    font-family: var(--font-titles);
                    font-size: clamp(3.75rem, 2.5rem + 5vw, 7rem);
                    line-height: 0.9;
                    color: white;
                    text-transform: uppercase;
                    margin: 0;
                    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);

                    .light-weight {
                        font-weight: 400;
                    }
                }
            }

            .right-panel-solid {
                width: 38%;
                min-width: 450px;
                height: 100%;
                background-color: rgba(51, 51, 51, 0.85);
                backdrop-filter: blur(10px);
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 60px;
                box-sizing: border-box;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
                pointer-events: auto;

                .content-box {
                    max-width: 600px;

                    p {
                        color: #d1d1d1;
                        font-size: clamp(0.9rem, 0.85rem + 0.15vw, 1rem);
                        line-height: 1.8;
                        margin-bottom: 25px;
                        text-align: justify;
                    }

                    .btn-explore {
                        display: inline-block;
                        margin-top: 20px;
                        background-color: var(--primary-red);
                        color: white;
                        text-decoration: none;
                        padding: 15px 50px;
                        border-radius: 50px;
                        font-family: var(--font-titles);
                        font-weight: 700;
                        font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.9rem);
                        letter-spacing: 2px;
                        transition: all 0.3s ease;
                        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);

                        &:hover {
                            background-color: white;
                            color: var(--primary-red);
                            transform: translateY(-3px);
                        }
                    }
                }
            }
        }
    }

    .active-jumps-section {
        background-color: #000;
        padding: 100px 0;
        font-family: var(--font-body);
        display: flex;
        flex-direction: column;
        align-items: center;

        .tech-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 60px;
            width: 90%;
            max-width: 1000px;
            justify-content: center;

            h2 {
                font-family: var(--font-titles);
                font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
                color: white;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 2px;
                white-space: nowrap;
            }
        }

        .jumps-container-border {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            width: 90%;
            max-width: 1400px;
            border: 2px solid var(--primary-red);
            padding: 5px;
            background-color: #050505;

            .jump-zone {
                padding: 40px 30px;
                border-right: 1px solid rgba(255, 31, 31, 0.3);
                display: flex;
                flex-direction: column;
                position: relative;

                &:last-child {
                    border-right: none;
                }

                .zone-title {
                    font-family: var(--font-titles);
                    font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem);
                    color: white;
                    margin: 0 0 25px 0;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }

                .zone-img {
                    width: 100%;
                    height: 200px;
                    margin-bottom: 25px;
                    overflow: hidden;
                    border: 1px solid #333;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform 0.5s ease;
                    }
                }

                .zone-desc {
                    color: #ccc;
                    font-size: clamp(0.9rem, 0.85rem + 0.2vw, 0.95rem);
                    line-height: 1.6;
                    margin-bottom: 50px;
                    flex-grow: 1;
                }

                .btn-mini-explore {
                    position: absolute;
                    bottom: 30px;
                    right: 30px;
                    background-color: var(--primary-red);
                    color: white;
                    text-decoration: none;
                    padding: 8px 20px;
                    font-family: var(--font-titles);
                    font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
                    font-weight: 700;
                    text-transform: uppercase;
                    transition: all 0.3s ease;

                    &:hover {
                        background-color: white;
                        color: var(--primary-red);
                    }
                }
            }
        }
    }

    .records-section {
        background-color: #080808;
        padding: 120px 0;
        font-family: var(--font-body);
        display: flex;
        justify-content: center;
        position: relative;
        overflow: hidden;

        &::before {
            content: "RECORDS";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--font-titles);
            font-size: 15vw;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.02);
            pointer-events: none;
            z-index: 0;
        }

        .records-container {
            position: relative;
            z-index: 1;
            width: 90%;
            max-width: 1200px;
            display: flex;
            align-items: center;
            gap: 80px;

            .record-image-box {
                flex: 1;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;

                .glow-effect {
                    position: absolute;
                    width: 60%;
                    height: 60%;
                    background: var(--primary-red);
                    filter: blur(80px);
                    opacity: 0.4;
                    z-index: -1;
                    border-radius: 50%;
                }

                img {
                    width: 100%;
                    max-width: 450px;
                    height: auto;
                    object-fit: contain;
                    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
                }
            }

            .record-info {
                flex: 1;

                .record-title {
                    font-family: var(--font-titles);
                    font-size: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
                    color: white;
                    margin: 0;
                    line-height: 1;

                    .highlight {
                        color: var(--primary-red);
                    }
                }

                .record-subtitle {
                    font-family: var(--font-titles);
                    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
                    color: #888;
                    margin: 10px 0 30px 0;
                    letter-spacing: 4px;
                    text-transform: uppercase;
                }

                .record-desc {
                    color: #ccc;
                    font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1rem);
                    line-height: 1.8;
                    margin-bottom: 40px;

                    
                }

                .stats-grid {
                    display: flex;
                    gap: 40px;
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                    padding-top: 30px;

                    .stat-item {
                        display: flex;
                        flex-direction: column;

                        .stat-number {
                            font-family: var(--font-titles);
                            font-size: clamp(2rem, 1.8rem + 1.2vw, 2.5rem);
                            font-weight: 700;
                            color: white;
                            line-height: 1;
                        }

                        .stat-label {
                            font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
                            color: var(--primary-red);
                            font-weight: 700;
                            letter-spacing: 2px;
                            margin-top: 5px;
                        }
                    }
                }
            }
        }
    }

}
/*SPORTS*/
.sports-page {
    .sports-hero {
        background-color: #000;
        padding: clamp(80px, 10vw, 120px) 0 60px;
        display: flex;
        justify-content: center;
        align-items: center;

        .hero-wrapper {
            display: flex;
            align-items: center;
            gap: clamp(15px, 4vw, 40px);

            .hero-title {
                font-family: var(--font-titles);
                font-size: clamp(40px, 8vw, 100px);
                color: #fff;
                margin: 0;
                letter-spacing: 5px;
            }

            .hero-deco {
                width: clamp(40px, 6vw, 80px);
                height: auto;

                &.deco-flip {
                    transform: scaleX(-1);
                }
            }
        }
    }

    .extreme-timeline {
        position: relative;
        padding: clamp(40px, 5vw, 60px) clamp(15px, 2vw, 20px) clamp(80px, 8vw, 120px) clamp(15px, 2vw, 20px);
        background-color: #0a0a0a;
        overflow: hidden;

        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 100px 1fr;
            align-items: center;
            min-height: 400px;
            position: relative;

            .media-content {
                padding: clamp(10px, 2vw, 20px);
                display: flex;
                justify-content: flex-end;

                img {
                    width: 100%;
                    max-width: 400px;
                    height: 250px;
                    object-fit: cover;
                    border-radius: 8px;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                    border: 2px solid #333;
                }
            }

            .timeline-axis {
                display: flex;
                flex-direction: column;
                align-items: center;
                position: relative;
                height: 100%;
                min-height: 100%;
                z-index: 1;

                .altitude-badge {
                    background: white;
                    color: black;
                    font-family: "Orbitron", sans-serif;
                    font-weight: 900;
                    font-size: clamp(0.75rem, 0.8rem + 0.1vw, 0.9rem);
                    padding: 5px 12px;
                    border-radius: 20px;
                    z-index: 10;
                    white-space: nowrap;
                    border: 2px solid black;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
                }

                .axis-line {
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    width: 14px;
                    background-color: #e60000;
                    border-left: 2px solid white;
                    border-right: 2px solid white;
                    background-image: repeating-linear-gradient(to bottom,
                            black 0px,
                            black 2px,
                            transparent 2px,
                            transparent 20px);
                    z-index: 1;
                    margin-top: 12px;
                }

                .axis-dot {
                    width: 28px;
                    height: 28px;
                    background-color: #e60000;
                    border: 3px solid white;
                    border-radius: 50%;
                    position: absolute;
                    bottom: -5px;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: 20;
                    box-shadow: 0 0 15px rgba(230, 0, 0, 0.6);
                    display: block;
                }
            }

            &:last-child {
                .timeline-axis .axis-line {
                    bottom: 25px;
                    border-bottom: none;
                }
            }

            .text-content {
                padding: clamp(10px, 2vw, 20px);
                display: flex;
                justify-content: flex-start;
                color: white;

                .card-box {
                    background-color: var(--card-background);
                    padding: clamp(20px, 3vw, 35px);
                    border-radius: 12px;
                    border: 1px solid #333;
                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
                    max-width: 450px;
                    transition: transform 0.3s ease;

                    &:hover {
                        border-color: var(--color-primary);
                    }

                    h3 {
                        font-family: var(--font-titles);
                        color: white;
                        margin-top: 0;
                        margin-bottom: 15px;
                        font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
                        text-transform: uppercase;
                    }

                    p {
                        font-family: var(--font-body);
                        color: var(--text-grey);
                        line-height: 1.6;
                        margin-bottom: 25px;
                        font-size: clamp(0.9rem, 0.85rem + 0.2vw, 0.95rem);
                    }

                    .btn-explore {
                        display: inline-block;
                        background-color: var(--primary-red);
                        color: white;
                        text-decoration: none;
                        padding: 10px 30px;
                        border-radius: 4px;
                        font-family: var(--font-titles);
                        font-weight: 700;
                        font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.8rem);
                        letter-spacing: 1px;
                        transition: all 0.3s ease;

                        &:hover {
                            background-color: white;
                            color: var(--background-black);
                        }
                    }
                }
            }
        }
    }

    .extreme-disciplines-section {
        position: relative;
        background-color: #000;
        padding: clamp(60px, 8vw, 100px) 0;
        overflow: hidden;
        color: #fff;

        .container-limited {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .background-shape {
            position: absolute;
            background: #1a1a1a;
            z-index: 1;
        }

        .background-shape--top {
            top: -10%;
            right: -10%;
            width: 40%;
            height: 600px;
            transform: rotate(-15deg);
            opacity: 0.5;
        }

        .background-shape--bottom {
            bottom: -20%;
            right: -20%;
            width: 70%;
            height: 800px;
            transform: rotate(10deg);
            background: #111;
        }

        .section-title {
            font-family: var(--font-titles);
            font-size: clamp(30px, 5vw, 54px);
            text-align: center;
            margin-bottom: 80px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 4px;
        }

        .top-content {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;

            .text-block {
                flex: 1;
                max-width: 550px;

                .subtitle {
                    font-family: var(--font-titles);
                    font-size: clamp(24px, 3vw, 36px);
                    margin-bottom: 40px;
                    display: flex;
                    align-items: center;
                    gap: 25px;
                    font-weight: 400;
                    text-transform: uppercase;

                    .red-bar-deco {
                        flex-grow: 1;
                        height: 24px;
                        background: repeating-linear-gradient(-45deg,
                                #f12125,
                                #f12125 4px,
                                transparent 4px,
                                transparent 8px);
                    }
                }

                p {
                    font-family: var(--font-body);
                    color: #ccc;
                    font-size: clamp(14px, 1.2vw, 16px);
                    line-height: 1.7;
                    margin-bottom: 25px;
                }
            }

            .main-feature-image {
                flex: 1;
                display: flex;
                justify-content: flex-end;

                img {
                    width: 100%;
                    max-width: 600px;
                    height: auto;
                    object-fit: contain;
                    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
                }
            }
        }

        .gallery-mosaic {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 350px 350px;
            gap: 20px;

            .gallery-item {
                position: relative;
                overflow: hidden;
                border-radius: 2px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.6s ease;
                }

                &:hover img {
                    transform: scale(1.08);
                }
            }

            .grid-pos-1 {
                grid-column: 1 / span 2;
                grid-row: 1;
            }

            .grid-pos-2 {
                grid-column: 3 / span 2;
                grid-row: 1;
            }

            .grid-pos-3 {
                grid-column: 1 / span 2;
                grid-row: 2;
            }

            .grid-pos-4 {
                grid-column: 3;
                grid-row: 2;
            }

            .grid-pos-5 {
                grid-column: 4;
                grid-row: 2;
            }
        }
    }

    .paragliding-section {
        position: relative;
        background-color: #080808;
        padding: clamp(60px, 8vw, 100px) 0;
        overflow: hidden;
        color: #fff;

        .background-shape--top-alt {
            position: absolute;
            top: -15%;
            left: -10%;
            width: 45%;
            height: 700px;
            background: #141414;
            transform: rotate(15deg);
            z-index: 1;
            opacity: 0.4;
        }

        .background-shape--bottom-alt {
            position: absolute;
            bottom: -25%;
            left: -20%;
            width: 75%;
            height: 900px;
            background: #111;
            transform: rotate(-10deg);
            z-index: 1;
        }

        .container-limited {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-content-alt {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 80px;
            gap: 60px;

            .main-feature-image.left-pos {
                flex: 1;
                display: flex;
                justify-content: flex-start;

                img {
                    width: 100%;
                    max-width: 600px;
                    height: auto;
                    object-fit: contain;
                    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
                    transform: rotate(-5deg);
                }
            }

            .text-block.right-pos {
                flex: 1;
                max-width: 550px;

                .subtitle {
                    font-family: var(--font-titles);
                    font-size: clamp(24px, 3vw, 36px);
                    margin-bottom: 40px;
                    display: flex;
                    align-items: center;
                    gap: 25px;
                    font-weight: 400;
                    text-transform: uppercase;

                    .red-bar-deco {
                        flex-grow: 1;
                        height: 24px;
                        background: repeating-linear-gradient(-45deg,
                                #f12125,
                                #f12125 4px,
                                transparent 4px,
                                transparent 8px);
                    }
                }

                p {
                    font-family: var(--font-body);
                    color: #ccc;
                    font-size: clamp(14px, 1.2vw, 16px);
                    line-height: 1.7;
                    margin-bottom: 25px;
                    text-align: justify;
                }
            }
        }

        .gallery-grid-2x2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 350px);
            gap: 20px;

            .gallery-item {
                position: relative;
                overflow: hidden;
                border-radius: 2px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.6s ease;
                }

                &:hover img {
                    transform: scale(1.08);
                }
            }
        }
    }

    .wingsuit-section {
        position: relative;
        background-color: #000;
        padding: clamp(60px, 8vw, 100px) 0;
        overflow: hidden;
        color: #fff;

        .container-limited {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-content.extended-margin {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 60px;

            .text-block {
                flex: 1;
                max-width: 550px;

                .subtitle {
                    font-family: var(--font-titles);
                    font-size: clamp(24px, 3vw, 36px);
                    margin-bottom: 40px;
                    display: flex;
                    align-items: center;
                    gap: 25px;
                    font-weight: 400;
                    text-transform: uppercase;

                    .red-bar-deco {
                        flex-grow: 1;
                        height: 24px;
                        background: repeating-linear-gradient(-45deg,
                                #f12125,
                                #f12125 4px,
                                transparent 4px,
                                transparent 8px);
                    }
                }

                p {
                    font-family: var(--font-body);
                    color: #ccc;
                    font-size: clamp(14px, 1.2vw, 16px);
                    line-height: 1.7;
                    margin-bottom: 25px;
                    text-align: justify;
                }
            }

            .main-feature-image {
                flex: 1;
                display: flex;
                justify-content: flex-end;

                img {
                    width: 90%;
                    max-width: 600px;
                    height: auto;
                    object-fit: contain;
                    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
                    transform: rotate(3deg);
                }
            }
        }

        .gallery-grid-3-mosaic {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 20px;

            .gallery-item {
                position: relative;
                overflow: hidden;
                border-radius: 2px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.6s ease;
                }

                &:hover img {
                    transform: scale(1.08);
                }
            }

            .grid-pos-big-left {
                grid-column: 1 / span 2;
                grid-row: 1 / span 2;
            }

            .grid-pos-top-right {
                grid-column: 3;
                grid-row: 1;
            }

            .grid-pos-bottom-right {
                grid-column: 3;
                grid-row: 2;
            }
        }
    }

    .bungee-section {
        position: relative;
        background-color: #080808;
        padding: clamp(60px, 8vw, 100px) 0;
        overflow: hidden;
        color: #fff;

        .background-shape--top-alt {
            position: absolute;
            top: -15%;
            left: -10%;
            width: 45%;
            height: 700px;
            background: #141414;
            transform: rotate(15deg);
            z-index: 1;
            opacity: 0.4;
        }

        .background-shape--bottom-alt {
            position: absolute;
            bottom: -25%;
            left: -20%;
            width: 75%;
            height: 900px;
            background: #111;
            transform: rotate(-10deg);
            z-index: 1;
        }

        .container-limited {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-content-bungee {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 80px;
            gap: 60px;

            .main-feature-image.left-pos {
                flex: 1;
                display: flex;
                justify-content: flex-start;

                img {
                    width: 100%;
                    max-width: 450px;
                    height: auto;
                    object-fit: contain;
                    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
                    transform: rotate(-10deg);
                }
            }

            .text-block.right-pos {
                flex: 1.2;
                max-width: 600px;

                .subtitle {
                    font-family: var(--font-titles);
                    font-size: clamp(24px, 3vw, 36px);
                    margin-bottom: 40px;
                    display: flex;
                    align-items: center;
                    gap: 25px;
                    font-weight: 400;
                    text-transform: uppercase;

                    .red-bar-deco {
                        flex-grow: 1;
                        height: 24px;
                        background: repeating-linear-gradient(-45deg,
                                #f12125,
                                #f12125 4px,
                                transparent 4px,
                                transparent 8px);
                    }
                }

                p {
                    font-family: var(--font-body);
                    color: #ccc;
                    font-size: clamp(14px, 1.2vw, 16px);
                    line-height: 1.7;
                    margin-bottom: 25px;
                    text-align: justify;
                }
            }
        }

        .gallery-grid-bungee {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 250px 250px;
            gap: 20px;

            .gallery-item {
                position: relative;
                overflow: hidden;
                border-radius: 2px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.6s ease;
                }

                &:hover img {
                    transform: scale(1.08);
                }
            }

            .item-top-left {
                grid-column: 1;
                grid-row: 1;
            }

            .item-bottom-left {
                grid-column: 1;
                grid-row: 2;
            }

            .item-tall-right {
                grid-column: 2;
                grid-row: 1 / span 2;
            }
        }
    }

   
}



/*EVENTS */
.events-page {
    .events-hero {
        background-color: #000;
        padding: 120px 0 60px;
        display: flex;
        justify-content: center;
        align-items: center;

        .hero-wrapper {
            display: flex;
            align-items: center;
            gap: 40px;

            .hero-title {
                font-family: var(--font-titles);
                font-size: clamp(2.5rem, 8vw, 6.25rem);
                color: #fff;
                margin: 0;
                letter-spacing: 5px;
            }

            .hero-deco {
                width: clamp(40px, 5vw, 80px);
                height: auto;

                
            }
        }
    }

    .team-split {
        display: flex;
        width: 100%;
        min-height: 600px;
        background-color: #1a1a1a;
        overflow: hidden;

        .team-split-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #222;
            padding: clamp(20px, 4vw, 40px);

            .team-label {
                font-family: var(--font-titles);
                font-size: clamp(3.125rem, 6vw, 5.625rem);
                color: #fff;
                line-height: 1.1;
                text-transform: none;
                pointer-events: none;
            }
        }

        .team-split-media {
            flex: 1.2;

            .team-photo {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }
    }

    .hall-of-fame {
        background-color: #000;
        padding: 100px 0;
        position: relative;
        overflow: hidden;

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 500px;
            background: var(--color-primary);
            clip-path: polygon(0 0, 35% 0, 0 85%);
            z-index: 1;
        }

        .hall-header,
        .directive-header {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 60px;

            .hall-title {
                font-family: var(--font-titles);
                font-size: clamp(1.875rem, 4vw, 2.8125rem);
                color: #fff;
                display: inline-block;

                .title-dash {
                    display: inline-block;
                    width: 30px;
                    height: 10px;
                    background: var(--color-primary);
                    margin-left: 10px;
                }
            }
        }

        .hall-cards {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 100px;

            .card {
                position: relative;
                cursor: pointer;
                overflow: hidden;

                .card-img-container {
                    position: relative;
                    width: 100%;
                    aspect-ratio: 3 / 4;
                    overflow: hidden;
                    border-bottom: 3px solid var(--color-primary);

                    .card-background {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        position: absolute;
                        top: 0;
                        left: 0;
                        opacity: 0.8;
                    }

                    .card-pilot {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: top center;
                        position: relative;
                        z-index: 1;
                        transition: transform 0.4s ease;
                    }

                    .card-info-overlay {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        padding: clamp(15px, 2vw, 25px);
                        z-index: 5;

                        background-color: rgba(30, 30, 30, 0.9);
                        backdrop-filter: blur(4px);

                        transform: translateY(101%);
                        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                        display: flex;
                        align-items: center;

                        .info-text {
                            color: #fff;
                            font-family: var(--primary-red);
                            font-size: clamp(14px, 1vw, 16px);
                            line-height: 1.5;
                            margin: 0;

                            
                        }
                    }
                }

                &:hover {
                    .card-pilot {
                        transform: scale(1.05);
                    }

                    .card-info-overlay {
                        transform: translateY(0);
                    }

                    .card-arrow {
                        transform: translateX(5px);
                        background-color: var(--color-primary);
                        border-color: var(--color-primary);
                    }
                }

                .card-footer {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 15px 0;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                    background: linear-gradient(90deg,
                            rgba(255, 31, 31, 0.1) 0%,
                            transparent 50%);

                    .card-name {
                        font-family: var(--font-titles);
                        font-size: clamp(12px, 1.2vw, 14px);
                        color: #fff;
                        letter-spacing: 1px;
                        padding-left: 10px;
                        position: relative;

                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        max-width: 100%;
                        display: block;
                        

                        &::before {
                            content: "";
                            position: absolute;
                            left: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            width: 3px;
                            height: 12px;
                            background-color: var(--color-primary);
                        }
                    }

                    .card-arrow {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: clamp(30px, 3vw, 36px);
                        height: clamp(30px, 3vw, 36px);
                        border-radius: 50%;
                        border: 1px solid rgba(255, 255, 255, 0.3);
                        transition: all 0.3s ease;
                        margin-right: 10px;

                        img {
                            width: 50%;
                            height: 50%;
                            object-fit: contain;
                        }
                    }
                }
            }
        }

        .directive-cards {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto 1rem;

            .card {
                .card-img-container {
                    position: relative;
                    width: 100%;
                    aspect-ratio: 1 / 1;
                    overflow: hidden;
                    border-bottom: 3px solid var(--color-primary);

                    .card-background {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        position: absolute;
                        top: 0;
                        left: 0;
                        opacity: 0.8;
                    }

                    .card-pilot {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: top center;
                        position: relative;
                        z-index: 2;
                        transition: transform 0.4s ease;
                    }
                }

                &:hover .card-pilot {
                    transform: scale(1.05);
                }

                .card-footer {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 15px 0;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                    background: linear-gradient(90deg,
                            rgba(255, 31, 31, 0.1) 0%,
                            transparent 50%);

                    .card-name {
                        font-family: var(--font-titles);
                        font-size: 12px;
                        color: #fff;
                        letter-spacing: 1px;
                        padding-left: 10px;
                        position: relative;

                        &::before {
                            content: "";
                            position: absolute;
                            left: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            width: 3px;
                            height: 12px;
                            background-color: var(--color-primary);
                        }
                    }

                    .card-btn img {
                        width: 18px;
                        transition: transform 0.3s;
                    }

                    .card-btn:hover img {
                        transform: translateX(5px);
                    }
                }
            }

        }


        .hall-bio-section {
            position: relative;
            margin-top: 50px;
            padding: 50px 5%;

            .bio-container {
                position: relative;
                z-index: 2;
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 50px;
                align-items: center;

                .bio-image img {
                    width: 100%;
                    border: 1px solid #333;
                }

                .bio-text p {
                    font-family: var(--font-body);
                    color: #fff;
                    font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
                    line-height: 1.6;
                    margin-bottom: 20px;
                }
            }
        }


    }

    .instructors-section {
        position: relative;
        padding: 80px 5%;
        background-color: #000;
        overflow: hidden;

        background: linear-gradient(115deg,
                #000000 0%,
                #000000 55%,
                #1a1a1a 55%,
                #1a1a1a 100%);

        .instructors-container {
            max-width: 1200px;
            margin: 0 auto 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;

            .instructors-text p {
                font-family: var(--font-body);
                color: #cccccc;
                font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
                line-height: 1.6;
                margin-bottom: 25px;
            }

            .instructors-img {
                display: flex;
                justify-content: center;

                img {
                    width: 100%;
                    max-width: 500px;
                    height: auto;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                }
            }
        }

        .instructors-header {
            text-align: center;
            margin-bottom: 50px;

            .section-title {
                font-family: var(--font-titles);
                font-size: clamp(1.8rem, 1.5rem + 2vw, 2.5rem);
                color: #fff;
                text-transform: uppercase;
                letter-spacing: 2px;
                font-weight: 400;
            }
        }

        .instructors-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 700px;
            margin: 0 auto 80px;

            .card {
                .card-img-container {
                    position: relative;
                    width: 100%;
                    aspect-ratio: 1 / 1;
                    overflow: hidden;
                    border-bottom: 3px solid var(--color-primary);

                    .card-background {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        position: absolute;
                        top: 0;
                        left: 0;
                        opacity: 0.8;
                    }

                    .card-pilot {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        position: relative;
                        z-index: 2;
                        transition: transform 0.4s ease;
                    }
                }

                &:hover .card-pilot {
                    transform: scale(1.05);
                }

                .card-footer {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 15px 0;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                    background: linear-gradient(90deg,
                            rgba(255, 31, 31, 0.1) 0%,
                            transparent 50%);

                    .card-name {
                        font-family: var(--font-titles);
                        font-size: 14px;
                        color: #fff;
                        letter-spacing: 1px;
                        padding-left: 10px;
                        position: relative;
                    }

                    .card-btn img {
                        width: 20px;
                        transition: transform 0.3s;
                    }

                    .card-btn:hover img {
                        transform: translateX(5px);
                    }
                }
            }
        }

        .separator-deco {
            text-align: center;

            img {
                width: 100%;
                max-width: 600px;
                opacity: 0.9;
            }
        }
    }

    .extreme-events {
        background-color: #000;
        color: #fff;
        font-family: "Roboto", sans-serif;
        padding: 50px 20px;
        max-width: 1400px;
        margin: 0 auto;

        .main-title {
            font-family: "Orbitron", sans-serif;
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-weight: 700;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            grid-template-rows: 450px 380px;
            gap: 20px;
        }

        .card {
            position: relative;
            border: 1px solid #333;
            overflow: hidden;
            display: flex;

            img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 0;
                transition: transform 0.5s ease;
            }

            .overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: #000;
                opacity: 0.65;
                z-index: 1;
                transition: opacity 0.3s;
            }

            .content {
                position: relative;
                z-index: 2;
                padding: 40px;
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                .top-info {
                    h3 {
                        font-family: "Orbitron", sans-serif;
                        font-size: clamp(1.8rem, 4vw, 2.8rem);
                        line-height: 0.95;
                        text-transform: uppercase;
                        margin-bottom: 15px;
                        font-weight: 900;
                        letter-spacing: 1px;
                    }

                    p {
                        color: #ccc;
                        font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
                        max-width: 90%;
                        margin-bottom: 25px;
                        line-height: 1.4;
                    }

                    .btn-action {
                        display: inline-block;
                        background-color: #ff0000;
                        color: white;
                        text-decoration: none;
                        padding: 10px 25px;
                        border-radius: 50px;
                        font-weight: bold;
                        text-transform: uppercase;
                        font-size: 0.8rem;
                        letter-spacing: 1px;
                        transition: all 0.3s ease;
                        border: 2px solid #ff0000;

                        &:hover {
                            background-color: transparent;
                            color: #ff0000;
                        }
                    }
                }

                .bottom-info {
                    text-align: right;

                    .date {
                        font-family: "Orbitron", sans-serif;
                        font-size: 0.9rem;
                        text-transform: uppercase;
                        letter-spacing: 2px;
                        color: #fff;
                        display: block;
                    }
                }
            }

            &:hover {
                border-color: #fff;

                img {
                    transform: scale(1.05);
                }

                .overlay {
                    opacity: 0.5;
                }
            }
        }
    }

    .events-section {
    padding: 120px 20px 80px; 
    background-color: #050505; 
    min-height: 100vh;

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-title {
        font-family: var(--font-titles);
        font-size: clamp(2.5rem, 5vw, 4rem);
        color: white;
        text-align: center;
        margin-bottom: 60px;
        text-transform: uppercase;
        
        span {
            color: #f12125;
        }
    }

    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        
        .event-card {
            background: #111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            
            &:hover {
                transform: translateY(-10px);
                border-color: #f12125;
                box-shadow: 0 10px 30px rgba(241, 33, 37, 0.2);

                .card-image img {
                    transform: scale(1.1);
                }

                .btn-event {
                    background: white;
                    color: white;
                }
            }

            .card-image {
                height: 250px;
                overflow: hidden;
                position: relative;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }

                .date-badge {
                    position: absolute;
                    top: 15px;
                    right: 15px;
                    background: rgba(0, 0, 0, 0.8);
                    backdrop-filter: blur(5px);
                    border: 1px solid #f12125;
                    padding: 8px 12px;
                    border-radius: 8px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    min-width: 60px;

                    .day {
                        font-family: var(--font-titles);
                        font-size: 1.5rem;
                        font-weight: 700;
                        color: white;
                        line-height: 1;
                    }

                    .month {
                        font-size: 0.8rem;
                        text-transform: uppercase;
                        color: #f12125;
                        font-weight: 600;
                    }
                }
            }

            .card-content {
                padding: 25px;
                display: flex;
                flex-direction: column;
                gap: 15px;

                .event-meta {
                    display: flex;
                    justify-content: space-between;
                    font-size: 0.9rem;
                    color: #888;
                    text-transform: uppercase;
                    font-weight: 500;
                    
                    .level {
                        color: #ccc;
                    }
                }

                h3 {
                    font-family: var(--font-titles);
                    font-size: 1.5rem;
                    color: white;
                    margin: 0;
                    text-transform: uppercase;
                }

                p {
                    color: #aaa;
                    font-size: 0.95rem;
                    line-height: 1.6;
                    margin: 0;
                    flex-grow: 1; 
                }

                .btn-event {
                    display: inline-block;
                    text-align: center;
                    padding: 12px;
                    margin-top: 10px;
                    border: 1px solid #f12125;
                    color: #f12125;
                    text-decoration: none;
                    text-transform: uppercase;
                    font-weight: 700;
                    border-radius: 8px;
                    transition: all 0.3s ease;
                    letter-spacing: 1px;
                }
            }
        }
    }
}

}
/*CONTACT */
.contact-page {
    .contact-hero {
        background-color: #000;
        padding: clamp(80px, 10vw, 120px) 0 60px;
        display: flex;
        justify-content: center;
        align-items: center;

        .hero-wrapper {
            display: flex;
            align-items: center;
            gap: clamp(15px, 4vw, 40px);

            .hero-title {
                font-family: var(--font-titles);
                font-size: clamp(40px, 8vw, 100px);
                color: #fff;
                margin: 0;
                letter-spacing: 5px;
            }

            .hero-deco {
                width: clamp(40px, 6vw, 80px);
                height: auto;

                &.deco-flip {
                    transform: scaleX(-1);
                }
            }
        }
    }

    .map-section {
        position: relative;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto 4rem;
        background-color: #000;
        overflow: hidden;

        img.map-background {
            display: block;
            width: 100%;
            height: auto;
            opacity: 0.9;
        }

        .map-pin {
            position: absolute;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 10;

            .pin-dot {
                width: 8px;
                height: 8px;
                background-color: #fff;
                border-radius: 50%;
                box-shadow: 0 0 10px #f12125, 0 0 20px #f12125;
                position: relative;
                z-index: 2;
            }

            .pin-pulse {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 8px;
                height: 8px;
                background: rgba(241, 33, 37, 0.5);
                border-radius: 50%;
                animation: pulse-ring 2s infinite;
                z-index: 1;
            }

            .pin-tooltip {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%) translateY(10px);
                background: rgba(0, 0, 0, 0.85);
                border: 1px solid #f12125;
                color: #fff;
                padding: 8px 15px;
                border-radius: 4px;
                font-size: 12px;
                font-family: var(--font-text);
                white-space: nowrap;
                text-align: center;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                pointer-events: none;
                backdrop-filter: blur(4px);

                &::after {
                    content: '';
                    position: absolute;
                    top: 100%;
                    left: 50%;
                    margin-left: -5px;
                    border-width: 5px;
                    border-style: solid;
                    border-color: #f12125 transparent transparent transparent;
                }

                
            }

            &:hover {
                z-index: 20;

                .pin-dot {
                    transform: scale(1.2);
                    background-color: #f12125;
                }

                .pin-tooltip {
                    opacity: 1;
                    visibility: visible;
                    transform: translateX(-50%) translateY(0);
                }
            }
        }
    }

    @keyframes pulse-ring {
        0% {
            width: 8px;
            height: 8px;
            opacity: 0.8;
        }

        100% {
            width: 40px;
            height: 40px;
            opacity: 0;
        }
    }

    
    .contact-panel {
        background: #000;
        padding: 80px 2%;
        display: flex;
        justify-content: center;

        .contact-panel-inner {
            display: flex;
            width: 100%;
            max-width: 1400px;
            justify-content: center;
            align-items: flex-start;
            gap: 40px;
        }

        .deco-bar {
            height: auto;
            max-height: 450px;
            width: auto;
            display: block;
            object-fit: contain;
            margin-top: 20px;
        }

        .deco-bar--right {
            transform: scaleX(-1);
        }

        .contact-card {
            flex: 1;
            max-width: 1000px;
            display: grid;
            grid-template-columns: 1fr 1px 1fr;
            gap: 50px;
            align-items: center;

            .contact-divider {
                width: 1px;
                height: 100%;
                min-height: 300px;
                background: var(--color-primary);
                opacity: 0.5;
            }
        }
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;

        .field {
            width: 100%;

            .field-input,
            .field-textarea {
                width: 100%;
                background: #ffffff;
                border: none;
                padding: 20px 25px;
                font-family: var(--font-body);
                font-size: 16px;
                color: #000;
                border-radius: 0;
                outline: none;
                box-sizing: border-box;

                &::placeholder {
                    color: #000;
                    font-weight: 700;
                    font-family: var(--font-body);
                    font-size: 14px;
                    text-transform: capitalize;
                }

                &:focus {
                    box-shadow: inset 4px 0 0 var(--color-primary);
                }
            }

            .field-input {
                height: 65px;
            }

            .field-textarea {
                height: 280px;
                resize: none;
            }
        }

        .btn-send {
            background: var(--primary-red);
            color: #fff;
            font-family: var(--font-display);
            border: none;
            padding: 15px 0;
            width: 160px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            align-self: flex-end;
            margin-top: 15px;
            letter-spacing: 2px;

            &:hover {
                background: black;
                border: 1px solid var(--primary-red);
            }
        }
    }

    .contact-info {
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    height: 100%;
    margin: 0 auto; 
    padding-top: 10px;

    .contact-info-title {
        font-family: var(--font-display);
        font-size: 32px;
        margin: 0 0 30px 0;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .contact-info-subtitle {
        font-family: var(--font-display);
        font-size: 22px;
        margin: 40px 0 25px 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 400;
    }

    p,
    li {
        font-family: var(--font-body);
        color: #e0e0e0;
        font-size: 16px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 300;
        line-height: 1.5;
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .social {
        padding-top: 40px;
        display: flex;
        gap: 15px;
        align-items: center;

        .social-link {
            display: block;
            width: 36px;
            height: 36px;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                display: block;
            }
        }
    }
}

    .faq-section {
        background: #1a1a1a;
        border-top: 1px solid #333;
        color: #fff;

        .faq-inner {
            display: grid;
            grid-template-columns: 1fr 400px;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 500px;
        }

        .faq-left {
            padding: clamp(40px, 5vw, 60px) 5%;

            .faq-title {
                font-family: var(--font-body);
                font-size: clamp(24px, 2.5vw, 32px);
                margin-bottom: 40px;
                font-weight: 400;
            }

            .faq-box {
                border: 1px solid var(--color-primary);
                padding: clamp(20px, 3vw, 40px);
                background: rgba(255, 255, 255, 0.03);

                .faq-item {
                    margin-bottom: 30px;

                    &:last-child {
                        margin-bottom: 0;
                    }

                    .faq-q {
                        display: flex;
                        gap: 15px;
                        font-family: var(--font-body);
                        font-weight: 700;
                        font-size: clamp(14px, 1.2vw, 16px);
                        margin-bottom: 10px;
                        align-items: baseline;

                        .q-dot {
                            width: 10px;
                            height: 10px;
                            background: var(--color-primary);
                            border-radius: 50%;
                            flex-shrink: 0;
                        }
                    }

                    .faq-a {
                        display: flex;
                        gap: 15px;
                        font-family: var(--font-body);
                        color: #aaa;
                        font-size: clamp(13px, 1.1vw, 14px);
                        line-height: 1.6;
                        margin-left: 25px;

                        .a-square {
                            width: 8px;
                            height: 8px;
                            background: var(--color-primary);
                            flex-shrink: 0;
                            margin-top: 6px;
                            opacity: 0.8;
                        }
                    }
                }
            }
        }

        .faq-right {
            position: relative;

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

            .faq-deco {
                position: absolute;
                right: 30px;
                top: 15%;
                bottom: 15%;
                width: 40px;
                background: repeating-linear-gradient(-45deg,
                        var(--color-primary),
                        var(--color-primary) 10px,
                        transparent 10px,
                        transparent 20px);
            }
        }
    }
}

/* =========================================
   9. FOOTER
   ========================================= */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 5% 40px 5%;
    font-family: var(--font-body);
    overflow: hidden;
    position: relative;

    .footer-top {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 20px;

        .footer-brand {
            font-family: var(--font-titles);
            font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
            margin: 0;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .footer-deco {
            flex-grow: 1;
            display: flex;
            align-items: center;

            img {
                width: 100%;
                height: 25px;
                object-fit: cover;
            }
        }
    }

    .footer-line {
        width: 100%;
        height: 2px;
        background-color: #fff;
        margin: 0;
    }

    .footer-main {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 50px 0;
        gap: 40px;
        flex-wrap: wrap; /* Añadido para mejor respuesta en pantallas pequeñas */

        .footer-left {
            width: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-shrink: 0;

            .footer-social {
                display: flex;
                gap: 20px;
                margin-bottom: 30px;

                a {
                    display: block;
                    width: 32px;
                    height: 32px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        transition: transform 0.3s;
                    }

                    &:hover img {
                        transform: scale(1.2);
                    }
                }
            }

            .footer-logo-container .footer-logo {
                width: 200px;
                height: auto;
            }
        }

        .footer-center {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 5px;
            min-width: 300px; /* Asegura que no se aplaste demasiado */

            .newsletter-form {
                display: flex;
                width: 100%;
                max-width: 500px;

                input {
                    flex: 1;
                    background: transparent;
                    border: 1px solid #fff;
                    padding: 15px 20px;
                    color: #fff;
                    font-family: var(--font-body);
                    font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
                    outline: none;
                }

                button {
                    background: #d9d9d9;
                    border: 1px solid #d9d9d9;
                    color: #000;
                    padding: 0 35px;
                    font-family: var(--font-body);
                    font-weight: 700;
                    cursor: pointer;
                    transition: background 0.3s;
                    font-size: clamp(0.8rem, 0.75rem + 0.1vw, 0.875rem);
                    white-space: nowrap;

                    &:hover {
                        background: #fff;
                    }
                }
            }
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, auto);
            gap: 30px;
            flex-shrink: 0;

            .link-col {
                h4 {
                    font-family: var(--font-body);
                    font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
                    margin: 0 0 20px 0;
                    text-transform: uppercase;
                    font-weight: 400;
                    letter-spacing: 1px;
                    color: #fff;
                }

                ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    li {
                        font-size: clamp(0.8rem, 0.75rem + 0.1vw, 0.875rem);
                        color: #ffffff;
                        margin-bottom: 12px;
                        text-transform: uppercase;

                        a {
                            color: #ffffff;
                            text-decoration: none;
                            transition: color 0.3s;

                            &:hover {
                                color: var(--color-primary);
                            }
                        }
                    }
                }
            }
        }
    }

    .footer-bottom {
        display: flex;
        justify-content: center; 
        align-items: center; 
        padding-top: 20px;
        width: 100%;            
        text-align: center;     
        
        p {
            font-size: 9px;
            color: #ccc;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;           
            width: 100%;        

            span {
                margin: 0 10px;
                color: #666;
            }
        }
    }
    .scroll-to-top {
        cursor: pointer;
        display: inline-block;
        transition: transform 0.3s ease;        
        margin-top: 20px; 

        img {
            width: 40px; 
            height: auto;
            opacity: 0.8;
            transition: opacity 0.3s;

            &:hover {
                opacity: 1;
            }
        }

        &:hover {
            transform: translateY(-5px); 
        }
    }
}



@media (max-width: 1500px) {
    .site-nav {
        .site-nav-menu {
            display: none;
        }

        .navcollapse {
            display: block;
        }
    }

    .home-page .home-hero .layer-image img {
        display: none;
    }
}

@media (max-width: 1200px) {
    .site-footer .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 50px;

        .footer-left {
            width: 100%;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .footer-center {
            width: 100%;

            .newsletter-form {
                max-width: 600px;
            }
        }

        .footer-links {
            width: 100%;
            justify-content: center;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
        }
    }
}

@media (max-width: 1024px) {
    .sports-page {
        .extreme-disciplines-section {
            .section-title {
                font-size: 40px;
            }

            .top-content {
                flex-direction: column;
                gap: 40px;

                .main-feature-image {
                    justify-content: center;
                }
            }

            .gallery-mosaic {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 15px;

                .grid-pos-1,
                .grid-pos-2,
                .grid-pos-3,
                .grid-pos-4,
                .grid-pos-5 {
                    grid-column: auto;
                    grid-row: auto;
                    height: 250px;
                }
            }
        }

        .paragliding-section {
            .top-content-alt {
                flex-direction: column;
                gap: 40px;
                margin-bottom: 60px;

                .main-feature-image.left-pos {
                    order: 1;
                    justify-content: center;
                    transform: none;
                }

                .text-block.right-pos {
                    order: 2;
                    max-width: 100%;
                }
            }

            .gallery-grid-2x2 {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 250px);
                gap: 15px;
            }
        }

        .wingsuit-section {
            .top-content.extended-margin {
                flex-direction: column;
                gap: 40px;

                .main-feature-image {
                    justify-content: center;
                    transform: none;
                }
            }

            .gallery-grid-3-mosaic {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 15px;

                .grid-pos-big-left,
                .grid-pos-top-right,
                .grid-pos-bottom-right {
                    grid-column: auto;
                    grid-row: auto;
                    height: 250px;
                }
            }
        }

        .bungee-section {
            .top-content-bungee {
                flex-direction: column;
                gap: 40px;

                .main-feature-image.left-pos {
                    order: 1;
                    justify-content: center;

                    img {
                        transform: none;
                        max-width: 300px;
                    }
                }

                .text-block.right-pos {
                    order: 2;
                    max-width: 100%;
                }
            }

            .gallery-grid-bungee {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 15px;

                .item-top-left,
                .item-bottom-left,
                .item-tall-right {
                    grid-column: auto;
                    grid-row: auto;
                    height: 250px;
                }
            }
        }
    }

    .contact {
        .contact-panel {
            .deco-bar {
                display: none;
            }
        }

        .faq-section {
            .faq-inner {
                grid-template-columns: 1fr;
            }

            .faq-right {
                order: -1;
                height: 300px;
            }
        }
    }

}

@media (max-width: 900px) {
    .site-nav {
        width: 95%;
        padding: 15px 25px;
    }

    .home-page {
        .gear-section {
            height: auto;
            padding-bottom: 80px;

            .background-text-pattern {
                font-size: 4rem;
            }

            /* Override del clamp si es necesario aquí */
            .gear-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 50px;
                padding-top: 50px;

                .gear-orb,
                .center-card,
                .loading-bar-img {
                    position: relative;
                    top: auto !important;
                    left: auto !important;
                    right: auto !important;
                    transform: none !important;
                }

                .red-line,
                .qr-code-img {
                    display: none;
                }

                .center-card {
                    width: 80%;
                    max-width: 300px;
                    height: 400px;
                    margin: 20px 0;
                }

                .gear-orb {
                    margin-bottom: 10px;
                }

                .loading-bar-img {
                    width: 80%;
                    margin-top: 30px;
                }
            }
        }

        .instructor-section {
            height: auto;

            .overlay-container {
                position: relative;
                flex-direction: column;
                pointer-events: auto;

                .left-zone {
                    height: 50vh;
                }

                .right-panel-solid {
                    width: 100%;
                    min-width: 0;
                    height: auto;
                    padding: 50px 30px;
                }
            }
        }

        .active-jumps-section {
            .tech-header {
                flex-direction: column;
                gap: 10px;

                .bar-deco {
                    display: none;
                }
            }

            .jumps-container-border {
                grid-template-columns: 1fr;
                border: none;
                gap: 30px;
                background: transparent;

                .jump-zone {
                    border: 1px solid var(--primary-red);
                    border-right: 1px solid var(--primary-red);
                    margin-bottom: 20px;
                }
            }
        }

        .records-section .records-container {
            flex-direction: column;
            text-align: center;
            gap: 50px;

            .record-info .stats-grid {
                justify-content: center;
            }

            .record-image-box img {
                max-width: 300px;
            }
        }
    }

    .events-page {
        .hall-of-fame {

            .hall-cards,
            .directive-cards {
                grid-template-columns: 1fr;
                max-width: 400px;
                gap: 40px;
            }

            .hall-bio-section .bio-container {
                grid-template-columns: 1fr;
            }
        }

        .instructors-section {
            background: #000;

            .instructors-container {
                grid-template-columns: 1fr;
                gap: 40px;

                .instructors-text {
                    order: 2;
                }

                .instructors-img {
                    order: 1;
                }
            }

            .instructors-cards {
                grid-template-columns: 1fr;
                max-width: 350px;
            }
        }

        .separator-block .section-title-bottom {
            font-size: 28px;
        }

        .extreme-events .bento-grid {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(4, 400px);
        }

        .team-split {
            flex-direction: column;

            .team-split-content {
                padding: 60px 20px;
            }

            .team-split-media {
                height: 400px;
            }
        }

        .events-hero .hero-wrapper {
            gap: 15px;

            .hero-deco {
                width: 40px;
            }
        }
    }

    .contact-page {
        .contact-hero {
            padding-top: 160px;

            .contact-hero-title {
                font-size: 45px;
            }
        }

        /* Panel */
        .contact-panel {
            padding: 40px 5%;

            .contact-panel-inner {
                flex-direction: column;
                align-items: center;
            }

            .deco-bar {
                display: none;
            }

            .contact-card {
                grid-template-columns: 1fr;
                gap: 50px;

                .contact-divider {
                    display: none;
                }
            }

            .btn-send {
                align-self: center;
            }
        }

        /* FAQ */
        .faq-section .faq-inner {
            grid-template-columns: 1fr;

            .faq-right {
                height: 300px;
            }

            .faq-left .faq-box {
                padding: 20px;
            }
        }
    }
}

@media (max-width: 768px) {
    .home-page {
        .home-hero {
            .hero-subtitle {
                bottom: 25%;
                right: 0;
                width: 100%;
                text-align: center;
            }

            .layer-image img {
                display: none;
            }
        }

        .mountain-section {
            .accordion-container {
                flex-direction: column;
                height: 700px;
            }

            .accordion-card {
                width: 100%;
            }

            .accordion-card:hover {
                flex: 2;
            }
        }
    }

    .sports-page {
        .extreme-timeline {
            padding-bottom: 60px;

            .timeline-item {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
                margin-bottom: 60px;

                .media-content,
                .text-content {
                    justify-content: center;
                }

                .timeline-axis {
                    flex-direction: row;
                    justify-content: center;
                    height: auto;
                    margin: 10px 0;

                    .axis-line,
                    .axis-dot {
                        display: none;
                    }
                }
            }
        }

    }

    .site-footer {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-links {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 40px;
        }
    }
}