/* =================================
   CSS Reset & Base Styles
   ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #0a2342;
    --medium-blue: #1a4a6e;
    --footer-blue: #036;
    --cream-bg: #F2F2F2;
    --text-dark: #2c2c2c;
    --link-blue: #0066cc;
}

html {
    height: 100%;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--link-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

.phone-link {
    white-space: nowrap;
    color: inherit;
    text-decoration: none;
}

/* =================================
   Main Split Container
   ================================= */

.split-container {
    display: flex;
    flex: 1;
    max-width: 1440px;
    align-self: center;
}

/* =================================
   Hero Side (Left)
   ================================= */

.hero-side-container {
    flex: 1;
    align-self: center;
    max-width: 740px;
    height: 100%;
    display: flex;
    position: relative;
}

.hero-side {
    padding-left: 80px;
    background-color: #036;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 50%;
    width: 50%;
    position: relative;
}

.hero-logo {
    position: absolute;
    top: 24px;
    left: 0;
    width: 131px;
    height: 72px;
    z-index: 1;
    display: none;
}

.hero-logo-dark {
    position: absolute;
    top: 24px;
    left: 0;
    width: 131px;
    height: 72px;
    z-index: 1;
}

/* Background Image Overlay */
.hero-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/audience-selection.jpg');
    background-size: cover;
    background-position: right bottom;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-self: center;
}

.hero-content h1 {
    font-family: kepler-std, serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 85px;
    letter-spacing: -0.5px;
    color: #00112E;
    padding-right: 80px;
}

/* =================================
   Info Side (Right)
   ================================= */

.info-side {
    background-color: var(--cream-bg);
    display: flex;
    flex: 0 0 50%;
    width: 50%;
    align-items: center;
    justify-content: flex-start;
    /* padding: 3rem; */
    padding-inline: 80px;
    padding-block: 40px;
}

.info-content h2 {
    font-family: kepler-std, serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.6px;
    color: #00112E;
    margin-bottom: 36px;
}

/* =================================
   Contact Information
   ================================= */

.contact-info h3 {
    font-family: gesta, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.8px;
    color: #00112E;
    margin-bottom: 8px;
}

.contact-info ul {
    list-style: none;
    padding-left: 13px;
}

.contact-info li {
    position: relative;
    padding-left: 19px;
    margin-bottom: 6px;
    font-family: gesta, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    color: #00112E;
}

.contact-info li::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #B88F4F;
    color: #B88F4F;
    font-weight: bold;
}

.contact-info li a {
    color: #036;
    text-decoration: underline;
}

.contact-info strong {
    font-weight: 400;
}

/* =================================
   Footer
   ================================= */

footer {
    background-color: var(--footer-blue);
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1.5;
    height: 43vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 84px;
    max-width: 1440px;
    align-self: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-self: baseline;
    max-width: 1590px;
    padding-inline: 80px;
    gap: 40px;
    font-family: gesta, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.6px;
    color: var(--text-text-invert, #FFF);
}

.footer-column {
    display: flex;
}

.footer-column:nth-child(2) {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 1200px) {
    .info-side {
        padding-inline: 45px;
        padding-right: 40px;
    }

    .hero-side {
        padding-left: 45px;
    }

    .footer-content {
        padding-inline: 45px;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 48px;
        padding-right: 40px;
    }

    .info-content h2 {
        font-size: 25px;
        line-height: 31.2px;
    }
}

/* =================================
   Responsive Design - Tablet
   ================================= */

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .hero-side-container {
        min-height: 30vh;
    }

    .hero-side {
        width: 100%;
        padding-block: 10px;
        padding-left: 40px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .info-side {
        width: 100%;
        padding: 40px;
        flex: 1;
    }

    .info-content h2 {
        font-size: 24px;
        line-height: 28.6px;
    }

    footer {
        padding: 1.5rem;
        height: fit-content;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-inline: 14px;
    }

    .footer-column {
        padding: 0;
        justify-content: flex-start;
    }

    .footer-column:nth-child(2) {
        display: flex;
        justify-content: flex-start;
        padding-inline: 0;
    }
}

/* =================================
   Responsive Design - Mobile
   ================================= */

@media (max-width: 480px) {
    .hero-side-container {
        min-height: 150px;
    }

    .hero-logo {
        display: block;
    }

    .hero-logo-dark {
        display: none;
    }

    .hero-side {
        padding-block: 0;
        padding-inline: 20px;
    }

    .hero-side::before {
        background-image: none;
    }

    .hero-content {
        padding-top: 140px;
        padding-bottom: 24px;
    }

    .hero-content h1 {
        font-size: 26px;
        font-style: normal;
        font-weight: 600;
        line-height: 31.2px;
        letter-spacing: -0.26px;
        padding-right: 0;
        color: #fff
    }

    .info-side {
        padding: 20px;
        padding-right: 24px;
    }

    .info-content {
        padding-top: 22px;
        padding-bottom: 28px;
    }

    .info-content h2 {
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 26.4px;
        margin-bottom: 14px;
    }

    .contact-info h3 {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 17.6px;
        margin-bottom: 14px;
    }

    .contact-info li {
        font-size: 16px;
        line-height: 22.4px;
        margin-bottom: 4px;
    }

    footer {
        padding: 32px;
        padding-inline: 0;
    }

    .footer-content {
        padding-inline: 20px;
    }

    br {
        display: none;
    }
}