/* =========================
   VARIABLES
========================= */

:root {

    --blue: #174b9f;
    --blue-dark: #0c3475;
    --blue-light: #eaf1ff;

    --green: #2f9d62;
    --red: #d9403f;
    --yellow: #f1b62c;

    --white: #ffffff;
    --background: #f7f9fc;

    --text: #1d2433;
    --text-light: #657084;

    --border: #e5e9f0;

    --container: 1180px;

}


/* =========================
   RESET
========================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--background);

    color: var(--text);

    line-height: 1.6;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button {

    font: inherit;

}


/* =========================
   CONTAINER
========================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

}


/* =========================
   HEADER
========================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    background:
        rgba(255, 255, 255, 0.92);

    backdrop-filter:
        blur(12px);

    border-bottom:
        1px solid transparent;

    transition:
        0.3s ease;

}


.header.scrolled {

    border-color:
        var(--border);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.05);

}


.header-container {

    height: 84px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo img {

    height: 62px;

    width: auto;

}


.navigation {

    display: flex;

    gap: 30px;

    align-items: center;

}


.navigation a {

    font-size: 14px;

    font-weight: 600;

    color: var(--text);

    position: relative;

}


.navigation a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background:
        var(--blue);

    transition:
        width 0.3s ease;

}


.navigation a:hover::after {

    width: 100%;

}


.header-button {

    padding:
        12px 20px;

    background:
        var(--blue);

    color:
        var(--white);

    border-radius:
        8px;

    font-weight:
        600;

    font-size:
        14px;

    transition:
        0.3s ease;

}


.header-button:hover {

    transform:
        translateY(-2px);

    background:
        var(--blue-dark);

}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu-button {

    display: none;

    border: none;

    background: none;

    cursor: pointer;

    flex-direction: column;

    gap: 5px;

}


.mobile-menu-button span {

    width: 26px;

    height: 2px;

    background:
        var(--blue);

}


/* =========================
   HERO
========================= */

.hero {

    position: relative;

    min-height: 780px;

    padding-top: 84px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #edf3ff 100%
        );

}


.hero-background {

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background:

        linear-gradient(
            135deg,
            rgba(23, 75, 159, 0.12),
            rgba(47, 157, 98, 0.08)
        );

    right: -250px;

    top: 100px;

}


.hero-container {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 70px;

    align-items: center;

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero-label {

    color:
        var(--blue);

    font-size:
        14px;

    font-weight:
        700;

    text-transform:
        uppercase;

    letter-spacing:
        2px;

    margin-bottom:
        20px;

}


.hero h1 {

    font-size:
        clamp(
            55px,
            8vw,
            100px
        );

    line-height:
        0.95;

    letter-spacing:
        -4px;

    margin-bottom:
        30px;

}


.hero h1 span {

    display: block;

    color:
        var(--blue);

}


.hero-description {

    font-size:
        20px;

    max-width:
        600px;

    color:
        var(--text-light);

    margin-bottom:
        35px;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


/* =========================
   BUTTONS
========================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        15px 25px;

    border-radius:
        8px;

    font-weight:
        700;

    transition:
        0.3s ease;

}


.button-primary {

    background:
        var(--blue);

    color:
        var(--white);

}


.button-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(23, 75, 159, 0.25);

}


.button-secondary {

    border:
        1px solid
        var(--blue);

    color:
        var(--blue);

}


.button-secondary:hover {

    background:
        var(--blue-light);

}


.button-outline {

    border:
        1px solid
        var(--blue);

    color:
        var(--blue);

}


.button-white {

    background:
        var(--white);

    color:
        var(--blue);

}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {

    position: relative;

    height: 520px;

}


.hero-placeholder {

    position: absolute;

    width: 100%;

    height: 100%;

    border-radius:
        30px;

    background:

        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        rgba(255,255,255,0.7);

    font-size:
        18px;

    box-shadow:

        0 30px 80px
        rgba(23,75,159,0.25);

}


.hero-circle {

    position: absolute;

    width: 150px;

    height: 150px;

    border-radius:
        50%;

    background:
        var(--yellow);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 2;

    right: -50px;

    top: 50px;

    box-shadow:

        0 15px 40px
        rgba(0,0,0,0.12);

}


.hero-circle span {

    font-size:
        28px;

    font-weight:
        800;

    color:
        var(--text);

}


.hero-wave {

    position: absolute;

    bottom: -1px;

    width: 100%;

    height: 120px;

    background:
        var(--background);

    clip-path:

        polygon(
            0 70%,
            25% 100%,
            50% 75%,
            75% 100%,
            100% 65%,
            100% 100%,
            0 100%
        );

}


/* =========================
   QUICK INFO
========================= */

.quick-info {

    padding:
        40px 0 80px;

}


.quick-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.quick-info-item {

    padding:
        25px;

    background:
        var(--white);

    border-radius:
        12px;

    border:
        1px solid
        var(--border);

}


.quick-info-item strong {

    display: block;

    color:
        var(--blue);

    font-size:
        18px;

}


.quick-info-item span {

    color:
        var(--text-light);

    font-size:
        14px;

}


/* =========================
   SECTIONS
========================= */

.section {

    padding:
        120px 0;

}


.section-heading {

    max-width:
        700px;

    margin-bottom:
        60px;

}


.section-label {

    font-size:
        13px;

    font-weight:
        800;

    color:
        var(--blue);

    text-transform:
        uppercase;

    letter-spacing:
        2px;

    margin-bottom:
        15px;

}


.section-heading h2,
.club-content h2,
.fscf h2,
.news-header h2,
.contact h2 {

    font-size:
        clamp(
            38px,
            5vw,
            60px
        );

    line-height:
        1.05;

    margin-bottom:
        25px;

    letter-spacing:
        -2px;

}


.section-heading h2 span,
.club-content h2 span,
.fscf h2 span {

    color:
        var(--blue);

}


/* =========================
   ACTIVITIES
========================= */

.activities {

    background:
        var(--white);

}


.activities-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

}


.activity-card {

    background:
        var(--background);

    border-radius:
        18px;

    overflow: hidden;

    transition:
        0.35s ease;

}


.activity-card:hover {

    transform:
        translateY(-10px);

    box-shadow:

        0 25px 60px
        rgba(0,0,0,0.08);

}


.activity-image {

    height:
        260px;

}


.image-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        rgba(255,255,255,0.75);

    font-weight:
        700;

}


.gym-card .image-placeholder {

    background:
        var(--blue);

}


.archery-card .image-placeholder {

    background:
        var(--green);

}


.art-card .image-placeholder {

    background:
        var(--red);

}


.activity-content {

    padding:
        30px;

}


.activity-number {

    font-size:
        12px;

    font-weight:
        800;

    color:
        var(--text-light);

}


.activity-content h3 {

    font-size:
        28px;

    margin:
        12px 0;

}


.activity-content p {

    color:
        var(--text-light);

    margin-bottom:
        25px;

}


.activity-content a {

    color:
        var(--blue);

    font-weight:
        700;

}


.activity-content a span {

    margin-left:
        8px;

    transition:
        0.3s ease;

}


.activity-content a:hover span {

    margin-left:
        14px;

}


/* =========================
   CLUB
========================= */

.club {

    background:
        var(--background);

}


.club-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        90px;

    align-items:
        center;

}


.club-visual {

    position:
        relative;

    height:
        550px;

}


.club-image-placeholder {

    width:
        100%;

    height:
        100%;

    border-radius:
        25px;

    background:

        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color:
        rgba(255,255,255,0.6);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.club-year {

    position:
        absolute;

    bottom:
        -25px;

    right:
        -30px;

    background:
        var(--yellow);

    padding:
        25px;

    border-radius:
        15px;

}


.club-year span {

    display:
        block;

    font-size:
        32px;

    font-weight:
        800;

}


.club-year small {

    font-weight:
        600;

}


.club-content p {

    color:
        var(--text-light);

    margin-bottom:
        20px;

}


.club-values {

    display:
        flex;

    gap:
        15px;

    flex-wrap:
        wrap;

    margin:
        30px 0;

}


.club-values div {

    padding:
        10px 15px;

    border-radius:
        30px;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

}


.text-link {

    color:
        var(--blue);

    font-weight:
        800;

}


.text-link span {

    margin-left:
        8px;

}


/* =========================
   FSCF
========================= */

.fscf {

    padding:
        100px 0;

    background:
        var(--blue);

    color:
        var(--white);

}


.fscf-container {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        80px;

}


.fscf .section-label {

    color:
        var(--yellow);

}


.fscf h2 span {

    color:
        var(--yellow);

}


.fscf-text {

    font-size:
        18px;

}


.fscf-text p {

    margin-bottom:
        20px;

    color:
        rgba(255,255,255,0.8);

}


.fscf .text-link {

    color:
        var(--white);

}


/* =========================
   NEWS
========================= */

.news {

    background:
        var(--white);

}


.news-header {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        end;

    margin-bottom:
        50px;

}


.news-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        30px;

}


.news-card {

    border:
        1px solid
        var(--border);

    border-radius:
        15px;

    overflow:
        hidden;

    background:
        var(--white);

    transition:
        0.3s ease;

}


.news-card:hover {

    transform:
        translateY(-6px);

    box-shadow:

        0 20px 40px
        rgba(0,0,0,0.06);

}


.news-image {

    height:
        200px;

}


.news-image .image-placeholder {

    background:
        var(--blue-light);

    color:
        var(--blue);

}


.news-content {

    padding:
        25px;

}


.news-date {

    font-size:
        13px;

    color:
        var(--blue);

    font-weight:
        700;

}


.news-content h3 {

    font-size:
        22px;

    margin:
        12px 0;

}


.news-content p {

    color:
        var(--text-light);

}


/* =========================
   JOIN
========================= */

.join {

    padding:
        100px 0;

    background:

        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color:
        var(--white);

}


.join-container {

    display:
        grid;

    grid-template-columns:
        1fr auto;

    gap:
        50px;

    align-items:
        center;

}


.join h2 {

    font-size:
        clamp(
            38px,
            5vw,
            60px
        );

    line-height:
        1.05;

    margin-bottom:
        25px;

}


.join h2 span {

    display:
        block;

    color:
        var(--yellow);

}


.join p {

    max-width:
        650px;

    color:
        rgba(255,255,255,0.8);

}


/* =========================
   CONTACT
========================= */

.contact {

    background:
        var(--background);

}


.contact-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        100px;

}


.contact-intro {

    font-size:
        19px;

    color:
        var(--text-light);

    margin-bottom:
        30px;

}


.contact-address {

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

}


.contact-card {

    background:
        var(--white);

    padding:
        45px;

    border-radius:
        20px;

    border:
        1px solid
        var(--border);

}


.contact-card h3 {

    font-size:
        30px;

    margin-bottom:
        15px;

}


.contact-card p {

    color:
        var(--text-light);

}


.contact-placeholder {

    margin-top:
        30px;

    padding:
        20px;

    background:
        var(--blue-light);

    color:
        var(--blue);

    border-radius:
        10px;

    font-weight:
        700;

}


/* =========================
   FOOTER
========================= */

.footer {

    background:
        #111827;

    color:
        var(--white);

    padding:
        80px 0 0;

}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap:
        60px;

}


.footer-brand img {

    width:
        120px;

    background:
        var(--white);

    border-radius:
        10px;

    padding:
        8px;

    margin-bottom:
        20px;

}


.footer p {

    color:
        #aab2c2;

    max-width:
        300px;

}


.footer h4 {

    margin-bottom:
        20px;

}


.footer a {

    display:
        block;

    margin-bottom:
        10px;

    color:
        #aab2c2;

    transition:
        0.2s;

}


.footer a:hover {

    color:
        var(--white);

}


.footer-bottom {

    margin-top:
        60px;

    padding:
        25px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.1);

    color:
        #8e97a8;

    font-size:
        14px;

}


/* =========================
   RESPONSIVE
========================= */

@media (
    max-width: 900px
) {

    .navigation,
    .header-button {

        display:
            none;

    }


    .mobile-menu-button {

        display:
            flex;

    }


    .hero {

        min-height:
            auto;

        padding:
            150px 0
            100px;

    }


    .hero-container {

        grid-template-columns:
            1fr;

    }


    .hero-visual {

        height:
            400px;

    }


    .quick-info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .activities-grid {

        grid-template-columns:
            1fr;

    }


    .club-grid {

        grid-template-columns:
            1fr;

        gap:
            60px;

    }


    .fscf-container {

        grid-template-columns:
            1fr;

        gap:
            40px;

    }


    .news-grid {

        grid-template-columns:
            1fr;

    }


    .join-container {

        grid-template-columns:
            1fr;

    }


    .contact-grid {

        grid-template-columns:
            1fr;

        gap:
            60px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

    }

}


@media (
    max-width: 600px
) {

    .container {

        width:
            min(
                calc(100% - 30px),
                var(--container)
            );

    }


    .header-container {

        height:
            70px;

    }


    .logo img {

        height:
            50px;

    }


    .section {

        padding:
            80px 0;

    }


    .quick-info-grid {

        grid-template-columns:
            1fr;

    }


    .hero h1 {

        letter-spacing:
            -2px;

    }


    .hero-description {

        font-size:
            17px;

    }


    .hero-visual {

        height:
            300px;

    }


    .hero-circle {

        width:
            100px;

        height:
            100px;

        right:
            -20px;

    }


    .club-visual {

        height:
            400px;

    }


    .club-year {

        right:
            15px;

    }


    .news-header {

        flex-direction:
            column;

        align-items:
            start;

        gap:
            25px;

    }


    .hero-buttons {

        flex-direction:
            column;

    }


    .button {

        width:
            100%;

    }

}
