/* ################################## */
/* # Designed by Specter Web Design # */
/* ################################## */

:root {
    --site-blue: #007BFF;
    --site-gray: #1E1E1E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito Sans";
    background: url(../img/graybg.jpg);
    margin: 0;
    font-size: 16px;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    scale: 1;
}

header {
    height: 75px;
    background-color: var(--site-gray);
    width: 100%;
    position: relative;
}

.header_container_m {
    display: flex;
    height: 100%;
    width: 90%;
    margin: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header_container_fs{display: none;}

.logo {
    font-size: 1.2em;
    border: 2px solid var(--site-blue);
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
}

nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 5000;
    border-top: 2px solid black;
}

.nav_container {
    height: 100%;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 30px;
    box-sizing: border-box;
}
.nav_container a {
    color: black;
    text-decoration: none;
}
.nav_title {
    font-size: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid #0a2b5c;
}
.nav_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #bbb;
}

main {
    background-color: #fff;
    width: 100%;
    max-width: 1440px;
    padding: 20px;
    box-sizing: border-box;
}
section {
    padding-bottom: 20px;
}
.section_title {
    font-size: 30px;
    font-weight: bold;
}
.section_subtitle {
    font-size: 25px;
    padding-left: 20px;
    margin-top: -5px;
    margin-bottom: 15px;
    /* font-weight: bold; */
    font-style: italic;
}
.section_subtitle > span {
    color: var(--site-blue);
}

.hr {
    width: 60px;
    margin-left: 0;
    background-color: var(--site-blue);
    color: var(--site-blue);
    height: 2px;
    border: 1px solid var(--site-blue);
}
.hr_v {
    width: 1px;
    margin-left: 0;
    background-color: var(--site-blue);
    color: var(--site-blue);
    height: 50px;
    border: 1px solid var(--site-blue);
}

.intro_grid {
    display: grid;
    grid-template-columns: auto;
}
.intro_pic {
    width: 100%;
    border-radius: 15px;
}
.grid_pic {display: none;}

.ratings {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-between;
    align-items: center;
}
.ratings_child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio_item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #bbb;
}

.service_item_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
    padding-top: 10px;
}
.service_item {
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.service_item_pic {
    transform: scale(1.5);
}
.service_link {
    color: black;
    text-decoration: none;
}

.border_corners {
    --s: 10px; /* the size on the corner */
  
  padding: 5px; /* the gap between the border and image */
  border: 2px solid #B38184; /* the thickness and color */
  -webkit-mask:
    conic-gradient(at var(--s) var(--s),#0000 75%,#000 0)
    0 0/calc(100% - var(--s)) calc(100% - var(--s)),
    linear-gradient(#000 0 0) content-box;
}

.review {
    padding: 10px 0;
    border-bottom: 1px solid #bbb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.review_stars {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.review_stars > span {
    color: var(--site-blue);
}
.review_text {
    color: #555;
    font-style: italic;
}

.contact_container {
    background: white;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}
.lgs {
    font-weight: bold;
    color: white;
    background-color: var(--site-blue);
    border: 3px solid var(--site-blue);
    padding: 10px 15px;
    border-radius: 5px;
    margin-left: 10px;
    margin-top: 10px;
    font-size: 18px;
    /* text-shadow: 1px 1px black; */
    width: fit-content;
    /* margin: auto; */
    transition: 0.1s;
}
.lgs:hover {
    color: black;
    background-color: white;
}
.lgs_a {
    text-decoration: none;
    color: black;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    color: #1E1E1E;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
input[type="radio"] {
    width: fit-content;
}
.radio_label {
    display: inline;
    font-weight: normal;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    width: 100%;
    padding: 1rem;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #0056b3;
}

form button:active {
    transform: scale(0.98);
}

footer {
    background-color: var(--site-gray);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}
.footer_links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 0; 
    width: fit-content;
}
.footer_links > span {
    font-size: 20px;
    border-bottom: 2px solid white;
}
.footer_links > a {
    color: white;
    text-decoration: none;
}
.cw {
    width: 100%;
    text-align: center;
    font-size: 14px;
}

@media only screen and (min-width: 800px) {
    .header_container_fs {display: block;}
    .header_container_m {display: none;}
}
