/* ========================================
   THE FOXGLOVE
   MASTER STYLESHEET
======================================== */

@import url("header.css");
@import url("hero.css");
@import url("welcome.css");
@import url("cards.css");
@import url("footer.css");
@import url("pages.css");
@import url("animations.css");

:root{
    --navy:#061735;
    --navy-dark:#020b1c;
    --gold:#c6a15b;
    --cream:#f6efe1;
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--navy-dark);
    color:var(--cream);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .course-card,
    .winner-presentation,
    .gallery-image,
    .featured-image {
        transition: none !important;
        animation: none !important;
    }

}