/* ============================================
   HALLMEDIA DESIGN - Main Stylesheet
   Author: Marlon Hall
   Purpose: Custom styles and animations
   ============================================ */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Body Typography */
body {
    font-family: 'EB Garamond', serif;
    -webkit-font-smoothing: antialiased;
}

#about {
    background-color: #2e393b;
}

#about p,
#about span {
    color: white;
}

.about-hmlogo {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    height: 208px;
    margin-bottom: 63px;
}

#hero-heading {
    color: #39bee7;

}

.content-stack-ftr {
    display: flex; flex-direction: row; align-items: flex-end; justify-content: flex-start; gap: 1rem; padding-bottom: 18px;
}

.logo-ftr {
    width: 47px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Fade In Class */
.fade-in {
    opacity: 0;
}

/* ============================================
   MODAL STYLES
   ============================================ */

#contact-modal.hidden {
    display: none;
}

#contact-modal input,
#contact-modal textarea {
    background-color: #ffffff;
}

#contact-modal input:focus,
#contact-modal textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(21, 154, 196, 0.1);
}