/* =====================================================
   CSG MONACO
   MAIN STYLESHEET
===================================================== */

:root {

    --navy: #07152d;
    --navy-2: #0c2345;

    --blue: #0759b7;
    --blue-light: #eaf4ff;

    --red: #c91f37;
    --red-dark: #a9152b;

    --white: #ffffff;
    --ice: #f4f8fc;

    --text: #18253a;
    --muted: #667085;

    --line: #dce4ee;

    --shadow:
        0 20px 60px rgba(7, 21, 45, .10);

    --radius: 18px;

    --container: 1200px;

}


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-inline: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    background:
        rgba(7, 21, 45, .96);

    backdrop-filter:
        blur(12px);

    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 32px;
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    color: white;

    flex-shrink: 0;
}

.logo-mark {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 23px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #dcecff
        );

    color: var(--blue);

    box-shadow:
        0 5px 20px rgba(255,255,255,.15);
}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}

.logo-text strong {

    font-size: 18px;

    font-weight: 800;

    letter-spacing: .08em;
}

.logo-text small {

    margin-top: 5px;

    font-size: 9px;

    letter-spacing: .25em;

    opacity: .65;
}


/* NAV */

.nav {

    display: flex;

    align-items: center;

    gap: 26px;

    margin-left: auto;
}

.nav a {

    color: rgba(255,255,255,.82);

    font-size: 13px;

    font-weight: 600;

    transition:
        color .2s ease;
}

.nav a:hover {

    color: white;
}

.nav-shop {

    padding:
        10px
        17px;

    border:
        1px solid
        rgba(255,255,255,.3);

    border-radius: 50px;
}


/* LANGUAGES */

.language-switcher {

    display: flex;

    gap: 3px;

    padding: 4px;

    background:
        rgba(255,255,255,.08);

    border-radius: 30px;
}

.lang-btn {

    border: 0;

    background: transparent;

    color:
        rgba(255,255,255,.65);

    padding:
        5px 8px;

    border-radius: 20px;

    cursor: pointer;

    font-size: 10px;

    font-weight: 700;
}

.lang-btn.active {

    background: white;

    color: var(--navy);
}


/* MOBILE MENU */

.menu-toggle {

    display: none;

    margin-left: auto;

    border: 0;

    background: transparent;

    color: white;

    font-size: 27px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 820px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 70% 40%,
            rgba(33,112,203,.35),
            transparent 35%
        ),

        linear-gradient(
            120deg,
            #06142c 0%,
            #0b2a53 55%,
            #0759b7 100%
        );
}

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .14;

    background-image:
        radial-gradient(
            white 1px,
            transparent 1px
        );

    background-size:
        28px 28px;

    animation:
        moveSnow 15s linear infinite;
}

@keyframes moveSnow {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(28px);
    }

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,21,45,.95),
            rgba(7,21,45,.65),
            rgba(7,21,45,.15)
        );
}

.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 100px;

    max-width: 800px;
}

.hero-badge {

    display: inline-block;

    padding:
        8px 14px;

    margin-bottom: 24px;

    border:
        1px solid
        rgba(255,255,255,.3);

    border-radius: 30px;

    color: white;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .2em;
}

.hero h1 {

    color: white;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(52px, 8vw, 94px);

    line-height: .98;

    max-width: 850px;

    margin-bottom: 25px;

    letter-spacing: -.04em;
}

.hero p {

    color:
        rgba(255,255,255,.82);

    font-size: 20px;

    max-width: 600px;

    margin-bottom: 40px;
}

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding:
        0 25px;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .03em;

    cursor: pointer;

    border: 0;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.btn:hover {

    transform: translateY(-2px);
}

.btn-primary {

    color: white;

    background: var(--red);

    box-shadow:
        0 12px 30px
        rgba(201,31,55,.25);
}

.btn-primary:hover {

    background:
        var(--red-dark);

    box-shadow:
        0 16px 35px
        rgba(201,31,55,.35);
}

.btn-outline {

    color: white;

    border:
        1px solid
        rgba(255,255,255,.45);

    background:
        rgba(255,255,255,.05);
}

.btn-outline:hover {

    background:
        rgba(255,255,255,.12);
}

.btn-dark {

    color: white;

    background: var(--navy);
}

.btn-light {

    color: var(--navy);

    background: white;
}


/* HERO SCROLL */

.hero-scroll {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,.6);

    font-size: 9px;

    letter-spacing: .2em;
}

.scroll-line {

    width: 1px;

    height: 40px;

    background:
        rgba(255,255,255,.4);
}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    padding:
        110px 0;
}

.section-heading {

    max-width: 750px;

    margin-bottom: 55px;
}

.section-heading h2 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(36px, 5vw, 58px);

    line-height: 1.08;

    letter-spacing: -.025em;

    margin:
        10px 0 18px;
}

.section-heading p {

    color: var(--muted);

    max-width: 650px;
}

.eyebrow {

    display: inline-block;

    color: var(--red);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .22em;
}


/* =====================================================
   DISCIPLINES
===================================================== */

.disciplines {

    background:
        var(--ice);
}

.discipline-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.discipline-card {

    min-height: 420px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    padding: 35px;

    color: white;

    display: flex;

    align-items: flex-end;

    box-shadow: var(--shadow);

    isolation: isolate;
}

.discipline-card::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            140deg,
            #08244a,
            #0870d5
        );
}

.discipline-card::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            to top,
            rgba(3,12,26,.95),
            transparent 65%
        );
}

.discipline-card.hockey::before {

    background:
        linear-gradient(
            140deg,
            #240913,
            #c91f37
        );
}

.discipline-card.curling::before {

    background:
        linear-gradient(
            140deg,
            #061d32,
            #0a8197
        );
}

.discipline-number {

    position: absolute;

    top: 25px;

    right: 25px;

    font-size: 12px;

    font-weight: 700;

    opacity: .55;
}

.discipline-content {

    position: relative;

    z-index: 2;
}

.discipline-icon {

    font-size: 42px;

    display: block;

    margin-bottom: 20px;
}

.discipline-card h3 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 34px;

    margin-bottom: 10px;
}

.discipline-card p {

    color:
        rgba(255,255,255,.75);

    font-size: 14px;

    margin-bottom: 20px;
}

.card-link {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background: white;
}

.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-image {

    min-height: 550px;

    border-radius: var(--radius);

    overflow: hidden;

    position: relative;

    background:
        linear-gradient(
            135deg,
            #d9eafa,
            #6fa7dc
        );

    box-shadow: var(--shadow);
}

.about-image::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 25% 25%,
            rgba(255,255,255,.8),
            transparent 30%
        );
}

.about-image-box {

    position: absolute;

    inset: 45px;

    border:
        1px solid
        rgba(255,255,255,.6);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--navy);

    text-align: center;
}

.about-image-box span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .3em;
}

.about-image-box strong {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 65px;

    line-height: .9;

    margin-top: 10px;
}

.about-content h2 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(38px, 5vw, 60px);

    line-height: 1.05;

    margin:
        12px 0 25px;
}

.about-content p {

    color: var(--muted);

    margin-bottom: 18px;
}

.about-content .btn {

    margin-top: 15px;
}


/* =====================================================
   NEWS
===================================================== */

.news-section {

    background:
        var(--ice);
}

.heading-row {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;
}

.text-link {

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;
}

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.news-card {

    background: white;

    border-radius:
        14px;

    overflow: hidden;

    border:
        1px solid
        var(--line);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.news-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow);
}

.news-image {

    height: 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 50px;

    background:
        linear-gradient(
            135deg,
            #0a315f,
            #1683d7
        );
}

.news-card:nth-child(2)
.news-image {

    background:
        linear-gradient(
            135deg,
            #370914,
            #c91f37
        );
}

.news-card:nth-child(3)
.news-image {

    background:
        linear-gradient(
            135deg,
            #07343b,
            #0792a3
        );
}

.news-body {

    padding: 27px;
}

.news-date {

    color: var(--red);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.news-body h3 {

    font-size: 20px;

    line-height: 1.25;

    margin:
        10px 0;
}

.news-body p {

    color: var(--muted);

    font-size: 13px;
}


/* =====================================================
   EVENTS
===================================================== */

.events-section {

    background: white;
}

.events-list {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.event {

    display: grid;

    grid-template-columns:
        90px
        1fr
        auto;

    gap: 25px;

    align-items: center;

    padding: 25px;

    border:
        1px solid
        var(--line);

    border-radius: 12px;

    transition:
        border-color .2s ease,
        transform .2s ease;
}

.event:hover {

    border-color:
        #b7c7da;

    transform:
        translateX(4px);
}

.event-date {

    text-align: center;

    border-right:
        1px solid
        var(--line);

    padding-right: 20px;
}

.event-day {

    display: block;

    font-size: 31px;

    font-weight: 800;

    line-height: 1;
}

.event-month {

    display: block;

    margin-top: 5px;

    color: var(--red);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .12em;
}

.event-info h3 {

    font-size: 18px;

    margin-bottom: 5px;
}

.event-info p {

    color: var(--muted);

    font-size: 13px;
}

.event-type {

    padding:
        8px 12px;

    border-radius: 20px;

    background:
        var(--blue-light);

    color:
        var(--blue);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;
}


/* =====================================================
   SHOP
===================================================== */

.shop-banner {

    padding:
        85px 0;

    color: white;

    background:
        linear-gradient(
            120deg,
            var(--red-dark),
            var(--red)
        );
}

.shop-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.shop-banner .eyebrow {

    color:
        rgba(255,255,255,.65);
}

.shop-banner h2 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(35px, 5vw, 55px);

    margin:
        10px 0;
}

.shop-banner p {

    color:
        rgba(255,255,255,.8);
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {

    background:
        var(--ice);
}

.contact-grid {

    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 90px;
}

.contact-info h2 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(40px, 5vw, 58px);

    line-height: 1.05;

    margin:
        12px 0 20px;
}

.contact-info > p {

    color: var(--muted);

    margin-bottom: 40px;
}

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact-detail {

    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-detail > span {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 5px 20px
        rgba(0,0,0,.05);
}

.contact-detail div {

    display: flex;

    flex-direction: column;
}

.contact-detail strong {

    font-size: 13px;
}

.contact-detail small {

    color: var(--muted);

    font-size: 11px;
}


/* FORM */

.contact-form {

    background: white;

    padding: 40px;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.form-group {

    display: flex;

    flex-direction: column;

    margin-bottom: 20px;
}

.form-group label {

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {

    width: 100%;

    border:
        1px solid
        var(--line);

    border-radius: 7px;

    padding:
        13px 15px;

    outline: none;

    background: #fbfcfe;

    transition:
        border .2s ease,
        box-shadow .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {

    border-color:
        var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(7,89,183,.1);
}

.form-group textarea {

    resize: vertical;

    min-height: 130px;
}

.submit-btn {

    width: 100%;
}

.form-message {

    display: none;

    margin-top: 15px;

    padding: 13px;

    border-radius: 6px;

    font-size: 12px;

    text-align: center;
}

.form-message.success {

    display: block;

    background: #e8f8ef;

    color: #08733b;
}

.form-message.error {

    display: block;

    background: #fff0f1;

    color: #a9152b;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: var(--navy);

    color: white;

    padding:
        70px 0 25px;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand p {

    max-width: 300px;

    margin-top: 20px;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {

    margin-bottom: 8px;

    font-size: 11px;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.footer-column a {

    color:
        rgba(255,255,255,.6);

    font-size: 12px;

    transition: color .2s ease;
}

.footer-column a:hover {

    color: white;
}

.footer-bottom {

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.1);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,.4);

    font-size: 10px;
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .nav {

        gap: 15px;
    }

    .nav a {

        font-size: 11px;
    }

    .about-grid {

        gap: 50px;
    }

}


@media (max-width: 850px) {

    .menu-toggle {

        display: block;
    }

    .nav {

        position: absolute;

        top: 82px;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 25px;

        background:
            var(--navy);

        border-top:
            1px solid
            rgba(255,255,255,.08);
    }

    .nav.open {

        display: flex;
    }

    .nav a {

        padding: 10px 0;

        font-size: 13px;
    }

    .language-switcher {

        margin-left: 0;
    }

    .discipline-grid {

        grid-template-columns:
            1fr;
    }

    .discipline-card {

        min-height: 350px;
    }

    .about-grid {

        grid-template-columns:
            1fr;
    }

    .about-image {

        min-height: 400px;
    }

    .news-grid {

        grid-template-columns:
            1fr;
    }

    .contact-grid {

        grid-template-columns:
            1fr;
    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 600px) {

    .container {

        width:
            calc(100% - 28px);
    }

    .section {

        padding:
            75px 0;
    }

    .hero {

        min-height: 720px;
    }

    .hero h1 {

        font-size: 50px;
    }

    .hero p {

        font-size: 16px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .btn {

        width: 100%;
    }

    .heading-row {

        flex-direction: column;

        align-items: flex-start;
    }

    .event {

        grid-template-columns:
            65px
            1fr;
    }

    .event-type {

        grid-column: 2;
        width: max-content;
    }

    .event-date {

        padding-right: 12px;
    }

    .event-day {

        font-size: 24px;
    }

    .form-row {

        grid-template-columns:
            1fr;
    }

    .contact-form {

        padding: 25px;
    }

    .shop-inner {

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {

        grid-template-columns:
            1fr;
    }

    .footer-bottom {

        flex-direction: column;
    }

}