/* FONTS */
@import url(../assets/clash-display.css);
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:wght@700&display=swap');

/* Var */
:root {
    --c-dark: #000000;
    --c-brand: #4e57d4;
    --c-brand-light: #6970dd;
    --c-brand-rgb: 80, 74, 74;
    --c-body: #504a4a;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;
}

/* Set Elements */
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
    background-color: rgb(236, 236, 236);
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-weight:bolder;
    color: var(--c-dark);
    font-family: "Outfit", sans-serif;
}

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

/* Img zoom */
.image-zoom {
    position: relative;
}

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

/* Navigation */
.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);
}

/* Buttons */
.btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 10rem;
    border-radius: 2rem;
}

.btn-nav {
    font-weight: 600;
    padding: 1rem;
    width: 10rem;
    border-radius: 2rem;
    border-color: var(--c-brand);
}

.btn-nav:hover {
    font-weight: 600;
    padding: 1rem;
    width: 10rem;
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
}

/* For Home Section */
#home {
    background: linear-gradient(rgba(var(--c-brand-rgb), 1.000), rgba(var(--c-brand-rgb), 0.438)),url(../assets/imgs/logo.jpg);
    background-position: center;
    background-size: cover;
    text-shadow: #212529;
}

.hero-header {
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
}

.hero-subheader {
    font-size: 1.25rem;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    line-height: 1.6;
}

/*** Job Listing ***/
.job-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.job-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}

/* Contact Us Section */
#contact-us {
    background-color: #ffffff;
    padding: 60px 0;
    box-shadow: var(--box-shadow);
}

#contact-us .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--c-brand);
    text-align: center;
    margin-bottom: 20px;
}

#contact-us .section-description {
    font-size: 1.2rem;
    color: var(--c-body);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Footer Layout */
.new-footer .row {
    display: flex;
    justify-content: center; /* Center both columns horizontally */
    align-items: flex-start; /* Align items to the top */
    gap: 40px; /* Space between Opportunet and Contact sections */
    margin: 0 auto; /* Center the row within the container */
}

.new-footer .col-lg-3,
.new-footer .col-md-4 {
    margin-bottom: 30px; /* Bottom margin for spacing between rows */
}

/* Add margin-top to the Opportunet and Contact Sections */
.new-footer .col-lg-3:first-child, /* First column (Opportunet) */
.new-footer .col-md-4 { /* Second column (Contact) */
    margin-top: 30px; /* Margin to space it away from the top */
}

/* Title Alignment */
.new-footer h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-align: center; /* Ensure titles are aligned center */
}

/* Line style for visual separation */
.new-footer .line {
    width: 40px;
    height: 4px;
    background-color: #ff7f50;
    margin: 10px auto;
}

/* Footer styling */
.new-footer p,
.new-footer ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center; 
}

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

.new-footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.new-footer ul li a:hover {
    color: #ff7f50;
}

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

.new-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    margin: 0 10px;
    font-size: 20px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff7f50;
}

/* Responsiveness */
@media (max-width: 768px) {
    .new-footer .row {
        flex-direction: column; /* Stack columns vertically on smaller screens */
        gap: 20px; /* Reduced gap for smaller devices */
        align-items: center; /* Center align columns vertically */
    }

    .new-footer .col-lg-3, 
    .new-footer .col-md-4 {
        margin-bottom: 20px; /* Reduce margin-bottom on smaller screens */
    }

    .new-footer .footer-bottom {
        text-align: center;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    h1, h2, h3, h4, h5, h6 {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    #home .hero-header {
        font-size: 2rem;
    }

    #home .hero-subheader {
        font-size: 1rem;
    }

    #offers .job-item {
        flex-direction: column;
        text-align: center;
    }

    #offers .job-item img {
        margin: 10px auto;
        width: 60px;
        height: 60px;
    }

    #reviews .review-head {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.25rem;
    }

    #home .hero-header {
        font-size: 1.5rem;
    }

    #offers .job-item img {
        width: 50px;
        height: 50px;
    }
}
