﻿/* Stronger, explicit hero rule to force the hero image */
.emerald-heading {
    font-size: 36px;
    text-align: center;
    color: forestgreen;
    padding-top: 12px;
    padding-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Roboto', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.2);
}

/* Stronger, explicit hero rule to force the hero image */
.header--emerald-welcome {
    background-image: url("/images/emerald/emerald-road-hero-center.png") !important;
    background-position: center 45% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 720px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* responsive overrides */
@media (max-width: 600px) {
    .header--emerald-welcome {
        background-image: url("/images/emerald/emerald-road-mobile-center.png") !important;
        min-height: 360px !important;
        background-position: center 40% !important;
    }
}

@media (min-width: 601px) and (max-width: 1199px) {
    .header--emerald-welcome {
        background-image: url("/images/emerald/emerald-road-desktop-center.png") !important;
        min-height: 480px !important;
        background-position: center 45% !important;
    }
}


/* swirl svg */

.tile-yellow {
    fill: #FFD700;
    transition: fill 0.5s ease-in-out;
}

.tile-maroon {
    fill: #800000;
    transition: fill 0.5s ease-in-out;
}

.emerald-theme .tile-maroon {
    fill: #50C878;
}
/* swirl svg */

.moo-swirl {
    border:0px dashed red;
}

svg {
    border: 0px dashed green;
    width: 100%;
    height: auto;
}

.brick {
    transition: stroke 0.5s ease-in-out;
    stroke: #008928; /* Emerald Green */
}

    .brick.marooned {
        stroke: #800000; /* Maroon */
    }

/* CSS Targeting the SVG Inside the Container */
.swirl-wrapper svg {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}
