/*
File:       main.css
Author:     Keegan MacDonald
Created:    2026.09.12
Purpose:    Main stylesheet for colinbridge.ca
*/

/* Full page content */

@font-face {
    font-family: "CormorantGaramond";
    src: url("/font/CormorantGaramond-Regular.woff2") format("woff2");
    font-weight: 100;
    font-style: normal;
}

body {
    background-color: #002308;
    color: #FFFFFF;
    font-family: "CormorantGaramond", serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
}

/* Header/navigation bar */

.header {
    background-color: #002308EF;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1em 3em;
    box-sizing: border-box;
    font-weight: bold;
}

.header a:link, .header a:visited {
    color: #FFFFFF;
    text-decoration: underline;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 3em;
}

/* Main content */

.content {
    flex: 1;
    padding-top: 4em;
}

#home-banner {
    border: 2px solid #000000;
    width: 35%;
    min-width: 350px;
    margin-bottom: 2em;
}

.contact {
    padding-top: 1.5em;
}

.contact a:link, .contact a:visited {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Footer */

.footer {
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1em 3em;
    font-size: 10pt;
    text-decoration: none;
}