

/*--- General site layout + default styling ---*/

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.5;
    font-family: sans-serif;
    color: #424953;
}

* {
    box-sizing: border-box;
}

header,
nav,
footer {
    width: 100%;
}

main {
    width: 100%;
    max-width: 960px;
    padding: 25px;
}

header {
    border-bottom: 1px solid #424953;
    margin-bottom: 0.5em;
    color: #f5f5f5;
}

footer {
    background-color: #202945;
    color: white;
    padding: 1.5em;
    text-align: center;
    width: 100%;
}

footer a {
    color: #F3C300;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

h1 {
    color: #1A3D6D;
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-family: 'Calibri', sans-serif;
    font-weight: bold;
}

h2 {
    color: #1A3D6D;
    margin-top: 1.2em;
}

h3 {
    color: #1A3D6D;
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-weight: normal;
}

a {
    color: #1A3D6D;
    text-decoration: none;
}

a:hover {
    color: #F3C300;
    text-decoration: underline;
}

p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 7em;
    gap: 15px;
    padding-top: 15px;
}

.header-content,
.nav-content {
    max-width: 960px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 960px;
    margin: 0 auto;
}

.logo {
    width: 150px;
}

.navigation {
    display: flex;
    background-color: #202945;
    padding: 10px;
}

.nav-content {
    display: flex;
    justify-content: center;
}

.navigation-link {
    color: #f5f5f5;
    margin-right: 20px;
    text-decoration: none;
    font-weight: bold;
}

.navigation-link:hover {
    color: #F3C300;
}

.image-row {
    display: flex;
    gap: 20px;
    margin: 2em 0;
}

.image-row img {
    width: 33.33%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* Table styling */

.membership-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.membership-table th,
.membership-table td {
    border: 1px solid #424953;
    padding: 10px;
    text-align: left;
}

.membership-table th {
    background-color: #202945;
    color: #ffffff;
}

.membership-table tr:nth-child(even) {
    background-color: #f5f5f5;
}


/* Form styling */

.contact-form {
    max-width: 40em;
    border: 1px solid #e5e5e5;
    background-color: #f5f5f5;
    padding: 1.5em;
    margin: 2em 0;
}

label {
    font-size: 0.9em;
    font-weight: bold;
}

input[type='text'],
input[type='email'],
textarea {
    border: 1px solid #b3b3b3;
    width: 100%;
    margin-bottom: 1em;
    padding: 0.4em;
}

textarea {
    resize: vertical;
}

input[type='submit'] {
    padding: 0.5em 2em;
    background-color: #F3C300;
    color: #000000;
    border: none;
    margin-top: 1em;
}

input[type='submit']:hover {
    background-color: #1A3D6D;
    color: white;
}

