/* UNDER CONSTRUCTION PAGE STYLES */
/* FONT-FACE */
@font-face {
    font-family: 'Italiana';
    src: url('../Fonts/Italiana-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sora';
    src: url('../Fonts/Sora-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../Fonts/Jost-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* BRAND COLORS */
:root {
    --Coal: #262A2E;
    --Muted-mist: #ABBFB8;
    --Sage-green: #B9CBAF;
    --Sandstone: #F1EADA;
    --Sandstone50: #F1EADA80;
    --Eucalyptus: #3E5034;
    --Forest-roast: #40534C;
    --Cedar-molases: #693F0D;
    --Espresso: #251E0E;
    --Silver: #D2D6DA;
    --Silver50: #D9D9D980;

}

body.under-construction {
    background-color: var(--Sage-green);
    font-family: 'Sora', sans-serif;
    color: var(--Eucalyptus);
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

h1 {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    margin-bottom: 1rem;
}

p {
    font-family: 'Jost', sans-serif;
    font-weight: 100;
    font-size: 20px;
    margin-bottom: 2rem;
}

.signature {
    font-family: 'Italiana';
    font-weight: 700;
    font-size: 40px;
    color: var(--Cedar-molases);
}

.video-placeholder {
    margin-bottom: 1rem 0;
    width: 100%;
    max-width: 400px;
}

.video-placeholder video {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

nav {
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.nav-logo img {
    height: 120px;
    width: auto;
    max-width: 100%;
    display: block;
}

footer {
    padding: 2rem 1rem;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-credit img {
    height: 100px;
    width: auto;
    margin-top: 0.5rem;
}

/* MEDIA RESPONSIVENESS */
@media (max-width: 600px) {
    .nav-logo img {
        height: 80px;
    }

    .footer-credit img {
        height: 80px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }
    
    p {
        font-size: 16px;
    }

    .signature {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .video-placeholder {
        max-width: 90%;
    }

    .video-placeholder video {
        border-radius: 8px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem 1rem;
    }
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-block;
}

.social-icon {
    width: 36px;
    height: 36px;
    margin: 0 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}