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

body {
    font-family: Clarika, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
        "Noto Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #fff;
    color: #333;
}

/* Fonts */
@font-face {
    font-family: Clarika;
    src: url(/distribution-map/assets/font/clarika/ClarikaGeoRegular.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: Clarika;
    src: url(/distribution-map/assets/font/clarika/ClarikaGeoMedium.woff2);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: Clarika;
    src: url(/distribution-map/assets/font/clarika/ClarikaGeoDemiBold.woff2);
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: Clarika;
    src: url(/distribution-map/assets/font/clarika/ClarikaGeoBold.woff2);
    font-weight: 700;
    font-display: swap;
}

/* Container (needed so footer/navbar content has max-width) */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Page content */
.section {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    margin-bottom: 70px;
    text-align: center;
    overflow: hidden;
}

.section h1 {
    margin-bottom: 20px;
}

.section h2 {
    font-size: 1.2rem;
    border-radius: 10px;
    font-weight: bold;
    border: 3px dashed #eee;
    display: inline-block;
    padding: 15px 10px;
}

.mission {
    margin-bottom: 180px;
}

.section p {
    font-size: 1.2rem;
    text-align: justify;
    max-width: 800px;
    margin: auto;
    padding-bottom: 40px;
}

.section p a {
    text-decoration: none;
    color: #4692da;
    border-bottom: 2px solid #e6eff5;
}

.section p a.cta-btn {
    color: #fff;
    border-bottom: none;
}

.section p u {
    text-decoration: none;
    color: rgb(48, 48, 48);
    font-weight: bold;
    border-bottom: 2px dashed #ddd;
}

/* CTA button (neumorphism like navbar) */
.cta-btn {
    background-color: #0286fb;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
    border: none;
    box-shadow:
        6px 6px 14px rgba(2, 134, 251, 0.35),
        -3px -3px 10px rgba(255, 255, 255, 0.7),
        inset 1px 1px 2px rgba(255, 255, 255, 0.25),
        inset -1px -1px 2px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: #0270d4;
    color: #fff;
    box-shadow:
        4px 4px 10px rgba(2, 134, 251, 0.3),
        -2px -2px 8px rgba(255, 255, 255, 0.6),
        inset 1px 1px 2px rgba(255, 255, 255, 0.25),
        inset -1px -1px 2px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

.title-figure {
    position: relative;
    display: block;
    height: 10px;
    width: 100%;
}

.cat1 {
    position: absolute;
    top: -240px;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    margin-bottom: 0;
    z-index: -1;
    border-radius: 12px;
}

.cat2 {
    top: -210px;
    left: 50%;
    display: none;
    margin-left: -200px;
    width: 400px;
    position: absolute;
    z-index: -1;
    border-radius: 12px;
}

/* Footer fix */
.footer-section {
    width: 100%;
}

@media only screen and (max-width: 576px) {
    .cat2 {
        display: block;
    }

    .cat1 {
        display: none;
    }
}
