﻿
/* ************ Layout Styles ************ */


h1 {
    font-weight: 600;
    font-style: italic;
}

header > h2 {
    margin: 50px auto 75px;
}

.navbar-brand img {
    max-width: 75px;
}

/* Footer styles */
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    footer .container .footer-links {
        display: flex;
        gap: 1em;
    }

        footer .container .footer-links i {
            font-size: 32px;
        }


/* ************ Individual Page Styles ************ */

/* Page: Home */

.webpage-home .content-1 {
    align-content: center;
    display: flex;
    justify-content: center;
    height: calc(100vh - 104px);
}

    .webpage-home .content-1 img {
        width: 100%;
        max-width: 65vh;
    }

    .webpage-home .content-1 .name-introstatement * {
        display: block;
        font-variant: small-caps;
        text-align: left;
        font-size: clamp(12px, min(15vw, 15vh), 100px);
        white-space: nowrap;
        max-width: 100%;
    }
    

        .webpage-home .content-1 .name-introstatement *:nth-child(odd) {
            color: var(--accent);
        }

.webpage-home .content-5 video {
    width: auto;
    max-width: 100%;
    cursor: pointer;
    max-height: calc(100vh - 135px);
    aspect-ratio: 16/9;
}

.webpage-home .content-2 {
    flex-direction: column;
    padding: 30px 30px 0;
    background-color: #FFF;
    box-shadow: 0 .25rem .75rem rgba(117, 76, 41, 0.5);
}

.webpage-home .content-3 .name-initiatives-desc {
    align-items: flex-start;
}

.webpage-home .content-4 .name-get-involved-methods {
    align-items: flex-start;
    gap: 2em;
}

#contact-form {
    scroll-margin-top: 115px;
}

#contact-form .form-control {
    font-size: 0.9rem;
}

.webpage-home .content-6 .card .card-header h3 {
    background-color: var(--primary);
    color: var(--light);
    padding: 10px;
    border-radius: 5px;
}

    .webpage-home .content-6 .card .card-header h3 i, .webpage-home .content-6 .card .btn-primary i {
        color: var(--light) !important;
    }

.webpage-home .content-7 .name-focus-areas i {
    font-size: 64px;
}

.webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(1) {
    background-color: var(--primary);
    color: var(--light);
}

    .webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(1) h3,
    .webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(1) p {
        color: var(--light);
    }

.webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(2) {
    background-color: var(--secondary);
    color: var(--light);
}

    .webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(2) h3,
    .webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(2) p {
        color: var(--light);
    }

.webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(3) {
    background-color: var(--dark);
    color: var(--light);
}

    .webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(3) h3,
    .webpage-home .content-7 .name-focus-areas .name-focus-areas-area:nth-of-type(3) p {
        color: var(--light);
    }

/* Page: About */

.webpage-about .name-boardleaders, .webpage-about .name-boardembers {
    margin: 50px auto;
}

.webpage-about .person {
    cursor: pointer;
}

.webpage-about .name-boardleaders-member img {
    max-width: 180px;
    max-height: 210px;
}

.webpage-about .name-boardmembers-member img {
    max-width: 150px;
    max-height: 180px;
}

/* Modal settings for Board Members */

/* Modal body settings */
#boardModal .modal-body {
    max-height: 80vh; /* modal grows but stays within viewport */
    overflow-y: auto; /* scroll if content is long */
}

/* Left column image */
#modalImage {
    max-height: 250px; /* bigger image */
    width: auto;
    display: block;
    margin: 0 auto 15px auto;
}

/* Name font */
#modalName {
    font-size: 18px; /* smaller than before */
    font-weight: bold;
}

/* Info font */
#modalInfo {
    font-size: 14px; /* smaller for long text */
    line-height: 1.5; /* better readability */
}

/* Responsive columns */
@media (max-width: 767.98px) {
    #boardModal .modal-body .row {
        flex-direction: column;
    }
}

    /* Page: Launch */
    .webpage-launch .content-1 img {
        width: 100%;
        max-width: 80vh;
    }

.webpage-launch .content-2 img {
    width: 100%;
}
