/* ===== Reset & Base ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --global-color: black;
    --global-size: 1.1vw;
    --global-font: "Roboto", serif;

    --title-color: black;
    --title-size: 40px;
    --title-font: "Roboto", serif;

    --heading-h1-color: black;
    --heading-h1-size: 18px;
    --heading-h1-font: "Roboto", serif;

    --text-color: black;
    --text-size: 12px;
    --text-font: "Roboto", serif;

    --link-color: #009c48;

    --primary-color: #009c48;
    --primary-color-light: #befada;
    --secondary-color: #1dca6d;
    --bright-color: #ffffff;
    --dark-color: #000000;
    --background: #f3f3f3; /* background */
    --secondary-hover-color: #1dca6d;

    --header-height: 5rem;
    --navigation-height: 0em;
    --footer-height: 10rem;

    --standard-pad: 1rem;
    --navigation-col-gap: 1rem;

    --default-col-gap: 1rem;
    --default-row-gap: 1rem;

    --window-gap: 10rem;

    --text-small: calc(var(--global-size) * 0.8);
    --text-normal: calc(var(--global-size));
    --text-heading: calc(var(--global-size) * 1.3);
    --text-large: calc(var(--global-size) * 1.8);

    --article-title: calc(var(--global-size) * 1.8);
    --article-normal: calc(var(--global-size));
    --article-heading-2: calc(var(--global-size) * 1.4);
    --article-heading-3: calc(var(--global-size) * 1.2);

    --page-content-title: calc(var(--global-size) * 2);
    --page-content-normal: calc(var(--global-size));
    --page-content-heading-2: calc(var(--global-size) * 1.5);
    --page-content-heading-3: calc(var(--global-size) * 1.3);

    --green-color: #009c48;
    --green-hover-color: #1dca6d;

    --double-pad: calc(var(--standard-pad) * 2);
    --half-pad: calc(var(--standard-pad) / 2);

    --standard-radius: 0.2em;

    font-family: "Roboto", serif;
}

*{
    margin: 0;
    padding: 0;
    font-family: var(--global-font);
    font-size: var(--global-size);
    box-sizing: border-box;
}

body{
    background: var(--background);
}

/* ===== Layout ===== */
#main-site {
display: flex;
flex-direction: column;
height: 100vh;
margin-left: var(--window-gap);
margin-right: var(--window-gap);
}

/* ===== Header ===== */
#page-head {
background: #ffffff;
color: var(--primary-color);
padding: 0.75rem 1.5rem;
font-size: 1.25rem;
font-weight: 600;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2px solid var(--primary-color);
}

#page-head img{
    height: 5em;
}

/* ===== Navigation ===== */
#page-navigation {
display: flex;
gap: 1rem;
background: var(--primary-color);
padding: 0.5rem 1.5rem;
}
#page-navigation a {
text-decoration: none;
color: #ffffff;
padding: 0.4rem 0.8rem;
border-radius: 4px;
font-weight: 500;
transition: background 0.2s ease;
text-transform: uppercase;
}
#page-navigation a:hover {
background: var(--secondary-hover-color);
}


/* ===== Main Body ===== */
#breadcrum{
display: flex;
background: var(--primary-color-light);
padding-top: 0.5em;
padding-bottom: 0.5em;
padding-left: 3em;
}

#breadcrum a{
}


/* ===== Main Body ===== */
#page-body {
flex: 1;
padding-top: 1rem;
}

hr {
    margin: 1em 0;
    height: 0.5em;
    background: var(--primary-color);
    border: none;
}

/* ===== Footer ===== */
#page-footer {
background: black;
margin-top: 2rem;
padding-left: var(--window-gap);
padding-right: var(--window-gap);
padding-top: 3em;
padding-bottom: 3em;
text-align: center;
font-size: 0.9rem;
color: var(--primary-color);
border-top: 2px solid var(--primary-color);
}


.footer-content{

    display: flex;
    flex-direction: row;
    column-gap: 2em;
    padding: var(--double-pad) var(--standard-pad) var(--double-pad) var(--standard-pad);
}

.footer-items{
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
    width: 15%;
    text-align: left;
}

.footer-items h3{
    color:white;
    font-size: var(--text-normal);
}

.footer-items a{
    text-decoration: none;
    color: white;
    font-size: var(--text-small);
}

.footer-items img{
}




/* ===== Buttons ===== */
button, .btn {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}
button:hover, .btn:hover {
    background: var(--secondary-hover-color);
    transform: translateY(-1px);
    text-decoration: none;
}

/* ===== Cards ===== */
.card {
    background: #ffffff;
    border-radius: 6px;
    padding: 1.25rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

/* ===== Headings ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 600;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 1rem; }

/* ===== Paragraphs ===== */
p {
    margin-bottom: 1rem;
    color: #333;
}

.italic{
    color: #333;
    font-style: italic;
}

/* ===== Links ===== */
a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ===== Lists ===== */
ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
li { margin-bottom: 0.4rem; }

/* ===== Forms ===== */
input, select, textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background: #ffffff;
    color: #333;
    font-size: 1rem;
    transition: border 0.2s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}
::placeholder { color: #888; }

/* Checkboxes & Radios */
input[type="checkbox"], input[type="radio"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--primary-color);
    margin-right: 0.5rem;
}

/* File Inputs */
input[type="file"] {
    border: none;
    background: none;
    color: #333;
}

/* Submit Buttons */
input[type="submit"], input[type="button"], input[type="reset"] {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
    background: var(--secondary-hover-color);
}
