﻿/* BEGIN page styling */
.email-btn {
    background: #f5f4f0;
    color: #006325;
    border: solid 1px #006325;
    border-radius: 50px;
    padding: 6px 18px;
    transition: .5s;
}
.email-btn:hover {
    background: #ffffff;
    color: #213b34;
    border: solid 1px #213b34;
}

.fa-phone-alt, .fa-envelope {
    padding-right: 0.5em;
}

.contact-link a {
    text-decoration: none;
}
.contact-link a:hover {
    text-decoration: underline;
}

.hr-div {
    margin: 2em 0;
    width: 50%;
}

/* BEGIN BOOTSTRAP BREAKPOINTS */

@media only screen and (max-width: 576px) {
    .sidebar-vert {
        margin-top: 2em;
    }
    .map-contain {
        margin: 0;
    }
    .contact-initial {
        text-align: left !important;
    }
}

@media only screen and (min-width: 576px) {
    .sidebar-vert {
        margin-top: 3em;
    }
    .map-contain {
        margin: 0;
    }
    .contact-initial {
        text-align: left !important;
    }
}

@media only screen and (min-width: 768px) {
    .sidebar-vert {
        margin-top: 1em;
    }
    .map-contain {
        margin: 0;
    }
    .contact-initial {
        text-align: left !important;
    }
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1200px) {
}

@media only screen and (min-width: 1440px) {
    .sidebar-vert {
        margin-top: 3em;
    }
    .map-contain {
        margin: 0 5em;
    }
}

/* END page styling */
/* General State Styling */
.state-group {
    fill: #a1cead;
    transition: fill 0.3s ease;
}

.state-group:hover {
    fill: #006325;
}

.state-group.active {
    fill: #006325;
}

/* Marker Styling */
.marker-washington,
.marker-utah,
.marker-arizona,
.marker-northern-california,
.marker-southern-california {
    fill: #224922;
    stroke: #ffffff;
    transition: fill 0.3s ease;
}

/* Active marker when a state is selected */
.marker-washington.active,
.marker-utah.active,
.marker-arizona.active,
.marker-northern-california.active,
.marker-southern-california.active {
    fill: #d9e8e2 !important;
    stroke: #224922 !important;
}

/* Sidebar Contact Information */
.contact-info {
    display: none;
}
.contact-info.active {
    display: block;
}

/* Dropdown Styling */
#locationDropdown {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

#locationDropdown:focus {
    border-color: #224922;
    outline: none;
    box-shadow: 0 0 5px rgba(34, 73, 34, 0.5);
}
