:root {
    --seattle-red: #AA0000;
    --seattle-white: #FFFFFF;
    --seattle-black: #000000;
    --seattle-gray: #E5E5E5;
    --seattle-dark-gray: #666666;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

header {
    background-color: var(--seattle-red); /* Seattle University Red background */
    color: var(--seattle-white);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 80px;
}

header .logo {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0 20px;
}

header .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

header nav {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 20px;
}

header nav a {
    color: var(--seattle-white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
}

header nav a:hover {
    text-decoration: underline;
    color: var(--seattle-gray);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--seattle-white);
    min-height: 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background-color: var(--seattle-red); /* Seattle University Red */
    color: var(--seattle-white);
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

footer a {
    color: var(--seattle-white);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: var(--seattle-gray);
}

.logo-link {
    display: flex;
    height: 100%;
    align-items: center;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.logo-link:hover {
    text-decoration: none;
}

.logo-link .logo {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0 20px;
}

.logo-link .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
