body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#video-reel {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    box-sizing: border-box;
}

.top-left {
    align-self: flex-start;
}

.logo {
    width: 240px; /* Adjust size as needed */
    height: auto;
}

.bottom-left {
    align-self: flex-start;
    display: flex;
    align-items: center;
}

.bottom-left a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    display: inline-block;
}

.bottom-left .social-link {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bottom-left .social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}

.bottom-left .social-link:hover .social-icon,
.bottom-left .social-link:focus-visible .social-icon,
.bottom-left .social-link:active .social-icon {
    filter: brightness(0) invert(1);
}

.bottom-left .contact-link {
    font-size: 22px;
    line-height: 32px;
}

.contact-toggle {
    background: none;
    border: none;
    color: white;
    text-decoration: none;
    font-size: 22px;
    line-height: 32px;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    margin-right: 15px;
}

.email-list {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    transition: max-width 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.email-list.expanded {
    max-width: 1000px;
    opacity: 1;
    transform: translateX(0);
}

.bottom-left .contact-link:hover,
.bottom-left .contact-link:focus-visible,
.bottom-left .contact-link:active {
    text-decoration: underline;
}
