@import url(../css/clash-display.css);

:root {
    --c-dark: #212529;
    --c-brand: #c2af08;
    --c-brand-light: #ffed85;
    --c-brand-rgb: 50,50,0;
    --c-body: #727272;
    --c-light-yellow: #fcfdcd;
    --c-font: "M PLUS Rounded 1c", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;
}

body {
    font-family: var(--c-font);
    line-height: 1.7;
    color: var(--c-body);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5 .h6 {
    font-size: 120%;
    font-weight: 600;
    color: var(--c-dark);
}

p {
    font-size: 120%;
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

#hero img {
    width: 200px;
    margin-bottom: 10%;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.theme-shadow {
    box-shadow: var(--box-shadow) ;
}

/* Image Zoom */
.image-zoom {
    position: relative;
    overflow: hidden; 
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img{
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img{
    transform: scale(1.05);
    background-color: var(--c-light-yellow);
}

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 500;
    border-color: white;
    border-radius: 10px;
    color: var(--c-dark);
}

.navbar {
box-shadow: var(--box-shadow)
}

.navbar-nav .nav-link.active {
color: var(--c-brand);
border-radius: 10px;
}

.nav-link:hover {
    background-color: var(--c-brand);
    border-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    color: white;

}


.btn {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 50px;
    
}

.btn-brand{
    color: rgb(0, 0, 0);
    background-color: var(--c-brand);
    border-color: rgb(0, 0, 0);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.btn-brand:hover {
background-color: rgb(0, 0, 0);
border-color: black;
color: rgb(255, 255, 255);
}

/* Hero */
#hero {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.507), rgba(var(--c-brand-rgb), 0.438)), url(../images/bg-contact.jpg);
    background-position: center;
    background-size: cover;
}

/* Section title */
.section-title {
    margin-bottom: 60px;
}

/* The thin line under h1 */
.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto; 
}

.section-title p {
    max-width: 1090px;
    margin-left: auto;
    margin-right: auto;
    font-size: 120%;
}

/* Icon Box */
.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}

    
/* Service */
.service {
   position: relative;
   overflow: hidden;
   z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(var(--c-brand-rgb),0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

.service:hover::after {
width: 100%;
height: 100%;
background: var(--c-brand);
z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;
}

.service a:link, 
.service a:visited, 
.service a:hover, 
.service a:active {
    color: var(--c-body);
}

.service:hover .iconbox {
    background:rgba(255, 255, 255, 0.2) ;
    color: white;
}

/* Team */
.team-member-content {
    background-color: var(--c-brand);
    position: absolute;
    bottom: -24px;
    left: 10%;
    width: calc(100% - 50px);
    padding: 24px;
    transition: var(--transition);
    opacity: 0;
}

.team-member:hover .team-member-content {
    opacity: 1;
    bottom: 24x;
    color: white;
}

/* Contact */
#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    width: 100%;
    height: 80%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.507), rgba(var(--c-brand-rgb), 0.438)), url(../images/bg-contact.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contact .form-control:focus {
    border-color: var(--c-brand);
}

.contact-phone-bg {
    width: 70%;
}

/* Buttons */
.btn-light {
    background-color: rgb(0, 0, 0);
    border-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    color: #ffffff;
}

.btn-light:hover {
    background-color: var(--c-brand);
    border-color: rgb(0, 0, 0);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    color: rgb(0, 0, 0);
}



@media screen and (min-width: 600px) {
    #hero img {
        width: 25%;
    }
    }

    @media screen and (max-width: 383px) {
        .navbar-icon {
            display: none;
        }
    
        }

