﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* =======================
   Root & Resets
======================= */
:root {
    --action-primary: #0F8440;

    --foreground-primary: #141414;
    --foreground-secondary: #4b4b4b;
    --background-primary: rgba(15, 132, 64, 0.02);
    --background: rgb(255 253 249);
    --white: white;

    --standard-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

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

a {
    color: var(--action-primary)
}

html {
    color: var(--foreground-primary);
    letter-spacing: 0.3px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    line-height: 1.5;
    margin: 0;
}

.green {
    color: var(--action-primary);
}

/* =======================
   Navigation
======================= */
nav.navbar {
    background: #0f844030;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 40px;
}

.logo .text {
    font-weight: 700;
}

.logo .green {
    color: var(--action-primary);
    font-weight: 700;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.hamburger img {
    height: 35px;
}

.nav-links {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: white;
    border: 1px solid #ddd;
    padding: 1rem;
    z-index: 1000;
    width: max-content;
    box-shadow: var(--standard-box-shadow);
}

.nav-links li a {
    padding: 0.75rem 1.25rem;
    display: block;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.nav-links li a:hover {
    background-color: #0f84401c;
}

.nav-links.active {
    display: flex;
}

/* =======================
   Main Content
======================= */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* =======================
   Article
======================= */
article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    box-sizing: border-box;
    background-color: #0f844008;
    border-radius: 10px;
    p {
        margin-bottom: 1.5em;
    }
}

/* =======================
   Typography & Headings
======================= */
.heading {
    text-align: center;
    padding: 30px 25px 20px 25px;
    border-radius: 10px !important;
    background-color: #0f84401c;
    margin: 0 auto;
    width: 100%;

    @media screen and (min-width: 800px) {
        padding: 30px 50px 20px 50px;
    }


    @media screen and (min-width: 1200px) {
        padding: 30px 75px 20px 75px;
    }
}

h1 {
    font-size: 24px !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
    color: var(--foreground-primary) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 18px !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
    color: var(--foreground-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

ul {
    margin-bottom: 15px;
    li {
        margin-left: 15px;
        margin-bottom: 8px;
        font-size: 15px;
    }
}

.partner-pitch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    box-sizing: border-box;
    background-color: #E6F4EA;
    border-radius: 10px;

    @media screen and (max-width: 800px) {
        padding: 40px 25px;
    }

    a {
        color: var(--action-primary) !important;
    }
    
    p {
        font-size: 16px;
    }
}

/* =======================
   Footer
======================= */
footer {
    margin-top: 50px;
    padding: 25px;
    background: #0f844030;
    text-align: center;
}

footer b {
    font-weight: 600;
}

footer .facebook-link img {
    margin-right: 10px;
    height: 43px;
    width: 43px;
}

footer .instagram-link img {
    margin-left: 5px;
    height: 40px;
    width: 40px;
}

footer .contact-us {
    margin-bottom: 20px;
    font-size: 16px;
    a {
        color: var(--action-primary) !important;
    }
}

/* =======================
   Misc
======================= */
.bottom {
    background: #0f844012;
    padding: 40px;
    margin-top: 60px;
    @media screen and (max-width: 800px) {
        padding: 40px 25px;
    }
}

.bottom p {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
}

.bottom .keywords {
    color: rgba(0, 0, 0, 0.65);
    font-size: 13px;
}

.workshop-selector-wrapper {
    display: flex;
    justify-content: center;
}