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

/* VARIABLES */
:root {
    --c-dark: #090a0b;
    --c-brand: #462000;
    --c-brand-light: #c26f04;
    --c-brand-rgb: 205,133,63;
    --c-body: #727272;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.07);
    --transition: all 0.5s ease;
}
/* html, body {
    margin: 0;
    padding: 0;
} */
 body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1; /* Allows main content to expand and push footer down */
}

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

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 400p;
    color: var(--c-dark);
}
h1 {
    font-size: 2.3rem; /* Default size for larger screens */
}
@media screen and (max-width: 600px) {
    h1 {
        font-size:3rem !important; /* Adjust this value as needed */
    }

    h5 {
        font-size: 1.2rem; /* Smaller size for h5 */
    }
}
a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

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

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.1);
}


/* NAVBAR */
.navbar {
    box-shadow: var(--box-shadow);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
}

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


/* BTN */
.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: white;
}


/* HERO */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height 900px*/
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.507), rgba(var(--c-brand-rgb), 0.438)), url(../images/pexels3.jpg);
    /* background-position: center; */
    background-size: cover;
}

/* #hero {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.507), rgba(var(--c-brand-rgb), 0.438)), url(../images/hero-1.jpg);
    background-position: center;
    background-size: cover;
} */
 /* Service */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
    min-height: 450px;
}

.service::after {
    content: "";
    width: 20px;
    height: 20px;
    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:hover .iconbox {
    background-color: rgba(233, 151, 9, 0.2);
    color: white;
}

/* ICONBOX */
.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;
}
/* team members */


/* contact */
.contact-section{ 
    background-image: url('../images/pexels1.jpg') !important; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

}
.contact-section::before {
    content: ""; /* Necessary for pseudo-elements */
    position: absolute; /* Positions the overlay within the section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1; /* Places the overlay above the background image */
}
.contact-section .container {
    position: relative;
    z-index: 2; /* Places content above the overlay */
}
#contact::after {
    content: "";
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/counter.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.form-transparent {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    border-radius: 5px; /* Optional: adds rounded corners */
    position: relative; /* Ensures proper stacking context */
    z-index: 3; /* Places the form above other elements */
}
.form-control {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly opaque background */
    color: #333; /* Dark text color */
    border: 1px solid #ccc;
}

.form-control::placeholder {
    color: #666; /* Placeholder text color */
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 1); /* Fully opaque on focus */
    border-color: #007bff; /* Brand color */
    box-shadow: none; /* Removes default focus shadow */
}

/* #contact .form-control {
    border-radius: 0;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--c-brand);
} */
.mb-6 {
    margin-bottom: 4rem; /* 64px */
}
/* FOOTER */
footer {
    padding-top: 120px;
    /* position: absolute; */
    bottom: 0;
    height: 100% ;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}


footer li,
footer p,
footer a {
    color: rgba(255,255,255,0.7);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: var(--c-brand);
    color: white;
}
/* counters */
#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/counter.jpg);
    background-position: center;
    background-size: cover;
}
#svgimg {
    width: 60px;
    height: 60px;
    object-fit: contain; /* This ensures the entire image is visible */
    margin-right: 10px;
}
