
@import url('https://fonts.googleapis.com/css2?family=Cormorant&family=DM+Sans&family=Nanum+Myeongjo&family=Poppins:wght@200;300&family=Shippori+Mincho+B1&family=Space+Mono&display=swap');


@font-face {
font-family: "Auguste";
src: url(font.woff2) format("truetype");
}

:root {
    --light: #f6f4ec;
    --dark: #0032A0;
    --chile: #0032A0;
    --usa: #0A3161;
    --nav-height: 80px;
    
    --font-a: 'Auguste', sans-serif;
    --font-b: 'Poppins', sans-serif;

    --h1-size: 60px;
    --h2-size: 40px;
    --p-size: 14px;

    --s-gap: 10px;
    --m-gap: 20px;
    --l-gap: 40px;
    --xl-gap: 80px;
}

::selection {
    background-color: var(--dark); 
    color: var(--light); 
}

a {
    text-decoration: none;
    color: inherit;
} a :visited {
    color: inherit;
}

ul {
    padding: 0;
    margin: 0;
}
ul li {
    position: relative;
    list-style: none;
    margin-left: var(--l-gap);
    padding-left: var(--s-gap);
    max-width: calc(750px - var(--l-gap));
} ul li:not(#pledge li)::before {
    content: "—"; /* Your custom character */
    position: absolute;
    left: -12px; /* Aligns the marker with the text */
    top: 0; /* Aligns vertically with the list item */
} #pledge li {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

input[type="radio"] {
    margin: 0 10px 0 0;
    accent-color: var(--dark);
}

/* Utility classes */

.cc {
    display: flex;
    align-items: center;
    justify-content: center;
} .ch:not(.ch.fc) {
    display: flex;
    justify-content: center;
} .cv:not(.cv.fc) {
    display: flex;
    align-items: center;
} .ch.fc {
    align-items: center;
} .cv.fc {
    justify-content: center;
} .df {
    display: flex;
} .fc {
    display: flex;
    flex-direction: column;
}

.sa {
    justify-content: space-around;
} .sb {
    justify-content: space-between;
} .se {
    justify-content: space-evenly;
} .fs {
    justify-content: flex-start;
} .fe {
    justify-content: flex-end;
} .c {
    justify-content: center;
}

.s-gap {
    gap: 10px;
} .m-gap {
    gap: 20px;
} .l-gap {
    gap: 40px;
} .xl-gap {
    gap: 80px;
}

.s-pad {
    padding: 10px;
} .m-pad {
    padding: 20px;
} .l-pad {
    padding: 40px;
} .xl-pad {
    padding: 80px;
}

.fw {
    width: 100%;
} .fh {
    height: 100%;
}

input:not(input[type="radio"]), .response, select {
    border: 1px solid var(--dark);
    /* height: 50px; */
    padding: 20px;
    font-family: var(--font-b);
    width: 100%;
    box-sizing: border-box;
    font-size: var(--p-size);
    background: transparent;
}

input[type="submit"]:not(input[type="radio"]) {
    background-color: var(--dark);
    color: white;
    cursor: pointer;
} input:focus:not([type='radio']), select:focus {
    outline: 3px solid var(--dark);
}

nav {
    height: var(--nav-height);
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-b);
    background-color: var(--light);
    padding: 0 38px;
    box-sizing: border-box;
}

body {
    margin:0;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-b);
    color: var(--dark);
    font-size: var(--p-size);
    background: var(--light);
}

.header {
    min-height: calc(100vh - var(--nav-height));
    background-color: var(--light);
    color: var(--dark);
    padding: 0 38px var(--nav-height) 38px;
} .header h1 {
    margin: 0;
    padding: 0;
    line-height: 1.25em;
    font-size: var(--h1-size);
    font-weight: 100;
    text-align: center;
}

section, footer {
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    padding: var(--l-gap);
    gap: var(--l-gap);
}

#vision, #apply {
    min-height: 100vh;
}

button, .button {
    appearance: none;
    background-color: var(--dark);
    color: white;
    cursor: pointer;
    border:none;
    font-family: var(--font-b);
    font-size: var(--p-size);
    height: 60px;
    min-width: 200px;
    width: max-content !important;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section:nth-child(odd) {
    background-color: white;
}

p, form, li{
    max-width: 750px;
    margin: 0;
}
#supporters {
    background-color: var(--dark);
    color: white;
}

h1, h2 {
    font-size: var(--h2-size);
    font-weight: 300;
    font-family: var(--font-a);
    margin: 0;
} h3 {
    font-size: 28px;
    font-weight: 300;
    font-family: var(--font-a);
    margin: 0;
}

img {
    mix-blend-mode: multiply;
    max-width: 100%;
}

footer {
    background: var(--dark);
    color: var(--light);
} footer ::selection {
    background-color: var(--light); 
    color: var(--dark); 
}

.content-column {
    max-width: 1000px;
    width: 100%;
}

figure {
    margin: 0;
}

figcaption {
    font-size: 11px;
    color: grey;
}


@media screen and (min-width: 1000px) {
    :root {
        --h1-size: 110px;
        --h2-size: 50px;
        --p-size: 18px;
    }

    button, .button {
        height: 80px;
    }

    section {
        flex-direction: row;
    }

    .currency {
        width: 110px;
    }

    nav {
        justify-content: flex-end;
    } nav a:not(:last-child) {
        margin-right: 68px;
    }

    section, footer {
        padding: var(--xl-gap) 10%;
        gap: var(--xl-gap);
    }
}

@media screen and (min-width: 1800px) {
    :root {
        --h1-size: 130px;
        --h2-size: 50px;
        --p-size: 20px;
    }

    section {
        flex-direction: row;
    }

    .currency {
        width: 110px;
    }

    nav {
        justify-content: flex-end;
    } nav a:not(:last-child) {
        margin-right: 68px;
    }
}

/* Mailchimp styles */

.indicates-required, .helper_text {
    font-size: 12px;
}

.brandingLogo {
    mix-blend-mode: darken;
    opacity: 0.51;
}

.mc-field-group {
    margin-bottom: 20px;
}

#mc_embed_signup {
    max-width: 1200px;
    width: 100%;
}

.currency {
    width: 100px;
}

@media screen and (min-width: 1000px) {

    input:not(input[type="radio"]), select {
        height: 80px;
    }

    .currency {
        width: 110px;
    }

    /* Mailchimp styles */

    .indicates-required, .helper_text {
        font-size: 16px;
    }

    .mc-field-group {
        margin-bottom: 40px;
    }
}

#mce-success-response {
    border: none;
    background: #258a25;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}