@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@100;200;400;700&family=Inter:wght@100;300;400;700&display=swap');

/* 
    -- Fonts
    font-family: 'Advent Pro', sans-serif;
    font-family: 'Inter', sans-serif;
*/
:root {
    --max-w: 1200px;
}
body, html {
    padding: 0;
    margin: 0;
    text-align: center;
    scroll-behavior: smooth;
}
h2 {
    font-weight: 400 !important;
}
/* 
    -- Navbar
*/
nav {
    font-family: 'Inter', sans-serif;
    text-align: center;
    position: fixed;
    background-color: white;
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 9999;
    border-style: solid;
    border-color: rgba(100, 100, 111, 0.2);
    border-width: 0 0 1px 0;
}
nav div {
    display: inline-flex;
    justify-content: space-between;
    width: 80%;
    align-items: center;
    max-width: var(--max-w);
}
nav div a {
    text-decoration: none;
    color: black;
}
.btn-phone {
    text-decoration: none;
    color: black;
    font-weight: 400;
}
#site-logo {
    display: table-cell;
    font-weight: bold;
    vertical-align: middle;
}
#nav-links {
    display: flex;
    justify-content: space-between;
    width: 60%;
    align-items: center;
}
#nav-links a {
    border-style: solid;
    border-color:white;
    border-width: 0 0 4px 0;
    justify-content: center;
    padding: 32px 20px;   
    transition: all 0.6s ease;
}
#nav-links a:hover {
    background-color:rgba(0, 0, 0, 0.03); 
    border-color: #FCB101;
}
#nav-links #call {
    background-image: url('./images/tel.png');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #80DB6A;
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.6s ease;
}
#nav-links #call:hover {
    box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.2) 0px 8px 16px -8px;
    background-color: #75c961;
}
#nav-links #menu {
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #373737;
    height: 40px;
    width: 40px;
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.6s ease;
    margin-left: 12px;
    display: none;
    font-size: 21px;
}
#menu-container {
    position: fixed;
    z-index: 9000;
    width: 100%;
    color: white;
    border-style: solid;
    border-color: rgba(100, 100, 111, 0.2);
    border-width: 0 0 1px 0;
    font-family: 'Inter', sans-serif;
    background-color:  rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
}
#menu-container ul {
    list-style: none;
    text-align: left;
    margin-top: 120px;
    margin-bottom: 20px;
    width: 100%;
    display: inline-block;
    padding: 0;
    list-style-type: none;
    text-align: center;
}
#menu-container li {
    text-align: left;
    padding: 12px 0 12px 0px;
    display: inline-block;
    clear: both;
    width: 80%;
    box-sizing: border-box;
    font-weight: 300;
    max-width: var(--max-w);
    font-size: 1.1em;
}
#menu-container li:hover {
    font-weight: 400;
}
.menu-v1 {
    border-style: solid;
    border-color:rgba(0, 0, 0, 0.06);
    border-width: 1px 0 1px 0;
}
#menu-container a {
    text-decoration: none;
    color: black;
    margin-left: 12px;
}
/* 
    -- Navbar
*/
/* 
    -- Header
*/
#header {
    display: inline-block;
    text-align: center;
    width: 100%;
    background-color: black;
    color: white;
    background-image: url('./images/hbg.png');
    background-size: cover;
}
#header div {
    display: inline-block;
    width: 80%;
    text-align: left;
    padding: 240px 0 200px 0;
    max-width: var(--max-w);
}
#header div h1 {
    font-family: 'Advent Pro', sans-serif;
    font-weight: bold;
    font-size: 2.8em;
}
#header div p {
    font-family: 'Advent Pro', sans-serif;
    font-weight: 500;
    font-size: 1.1em;
}
#header a {
    background-color: rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    margin-top: 25px;
    display: inline-block;
    transition: all 0.4s ease;
}
#header a:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}
/* 
    -- Header
*/
#container-r-2 {
    display: inline-flex;
    width: 80%;
    gap: 56px;
    margin-top: -28px;
    max-width: var(--max-w);
}
.block-1 {
    box-shadow: 0px 4px 8px -3px rgba(0,0,0,0.1);
    border-radius: 16px;
    text-align: left;
    padding: 2px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    background-color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
}
.block-1 div {
    display: block;
    clear: both;
}
.block-1 p {
    font-weight: 100;
}
#review {
    color: #80DB6A;
    font-size: 2em;
}
#review span {
    font-size: 2.2em;
}
#container-s-2 {
    display: inline-flex;
    width: 80%;
    gap: 24px;
    background-color: white;
    font-family: 'Inter', sans-serif;
    max-width: var(--max-w);
}
#container-s-2 span {
    display: block;
    text-align: right;
}
#cs-v-1 {
    font-weight: bold;
}
#cs-v-2 {
    font-weight: 100;
}
#container-s-2 div {
    margin-top: 80px;
    text-align: left;
}
#container-s-2 p {
    font-weight: 100;
}
#container-r-3 { /* r : regular, s : special */
    display: inline-flex;
    width: 80%;
    gap: 24px;
    background-color: white;
    font-family: 'Inter', sans-serif;
    max-width: var(--max-w);
    align-items: flex-start;
}
#container-r-3 div a {
    border: solid 1px #FCB101;
    color: #FCB101;
    text-decoration: none;
    box-sizing: border-box;
    display: block;
    border-radius: 8px;
    padding: 8px;
    margin: 4px;
}
#container-r-3 div {
    border-style: solid;
    border-color: #FCB101;
    border-width: 1px 0 0 0;
    flex: 1;
    border-radius: 8px;
    box-shadow: 0px 4px 8px -3px rgba(0,0,0,0.1);
}
#container-r-3 p {
    font-weight: 100;
    padding: 8px;
}
#container-lg {
    width: 100%;
    text-align: center;
    background-color: #F9F9F9;
    padding: 80px 0 80px 0;
    margin-top: 80px;
    font-family: 'Inter', sans-serif;
}
#container-lg > div {
    display: inline-flex;
    width: 80%;
    padding: 24px;
    gap: 24px;
    max-width: var(--max-w);
}
#container-lg div {
    flex: 1;
}
#container-s-1 {
    text-align: center;
    padding-top: 80px;
}
#container-f-1 {
    width: 80%;
    display: inline-flex;
    font-family: 'Inter', sans-serif;
    padding-bottom: 50px;
    gap: 24px;
    max-width: var(--max-w);
}
#container-s-1 h2 {
    font-family: 'Inter', sans-serif;
}
.f-1 {
    flex: 1;
    text-align: center;
}
.f-2 {
    flex: 2;
    text-align: left;
    font-weight: 100;
    display: flex;
    align-items: center;
}
#contact {
    width: 100%;
    background-color: white;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 16px;
    box-shadow: 0px 4px 8px -3px rgba(0,0,0,0.1);
}
#contact input, textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: #F9F9F9;
    border: none;
    border-radius: 25px;
    padding: 12px 12px;
    margin-bottom: 8px;
}
#contact textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}
#contact button {
    background-color: #FCB101;
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 50px;
    color: white;
    font-size: 1.02em;
}
/* 
    -- Footer
*/
footer {
    background-color: #373737;
    font-family: 'Inter', sans-serif;
    color: white;
    padding: 50px 0 50px 0;
}
footer a {
    color: white;
    text-decoration: none;
}
footer .ft-link {
    display: block;
    margin: 25px 0 25px 0;
}
footer hr {
    background-color: #6A6A6A;
    height: 1px;
    border: none;
    width: 60%;
    max-width: var(--max-w);
}
footer span {
    font-weight: 100;
    font-size: 0.8em;
}
footer p {
    font-size: 0.8em;
}
/* 
    -- Footer
*/


@media screen and (max-width: 780px) {
    .nav-btn {
        display: none;
    }
    #nav-links {
        justify-content: end;
    }
    #container-r-2, #container-r-3, #container-lg > div, #container-f-1 {
        flex-direction: column;
    }
    #nav-links #menu {
        display: block;
    }
}