/* Import link for the 'Bai JamJuree' font types */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');

:root {
    --color-body: #b6cbce;
    --color-heading: #eef3db;
    --color-base: #033f47;
    --color-base2: #022a30;
    --color-brand: #e0f780;
    --color-brand2: #deff58;
    --sidebar-width: 240px;
    --font-base: "Bai Jamjuree";
}

body {
    background-color: var(--color-base2);
    color: var(--color-body);

    /* If font-base not available it will default to sans-serif */
    font-family: var(--font-base), sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: 700;
}

a {
    text-decoration: none;

    color: var(--color-body);
    transition: all 0.4s ease;
}

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

img {
    width: 100%;
}

.text-brand {
    color: var(--color-brand);
}

.bg-base {
    background-color: var(--color-base);
}

.full-height {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.shadow-effect {    
    transition: all 0.5s;
}

.shadow-effect:hover {
    box-shadow: -6px 6px 0 8px var(--color-brand);
}

/* NavigationBar */
.navbar {
    background-color: var(--color-base);
}

.navbar .nav-link {
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}
/* When you hover it changes the color of the buttons */
.navbar .nav-link:hover {
    color: var(--color-brand);
}

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

/* This sets the sidebar navigation view background image for devices that have a minimum size of 992 pixels
    if the device is smaller you don't want to display the image but just the links */
@media (min-width: 992px) {
    .navbar {
        min-height: 100vh;
        width: var(--sidebar-width);
        background: linear-gradient(rgba(3, 63, 71, 0.8), rgba(3, 63, 71, .8)), url(../images/side-bar-img\ compressed.webp);
        background-size: cover;
        background-position: center;
    }

    .navbar-brand img {
        border: 4px solid white;
    }

    /* Content */
    #content-wrapper {
        padding-left: var(--sidebar-width);
    }
}

/* Explore my work button */
.btn {
    padding: 12px 28px;
    font-weight: 700;
}

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

.btn-quote{
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: var(--color-base);
    width: 300px;
}

.btn-brand:hover,
.btn-brand:focus,
.btn-quote:hover,
.btn-quote:focus {
    background-color: var(--color-brand2);
    color: var(--color-base);
    border-color: var(--color-brand2);
}

.custom-link {
    font-weight: 700;
    position: relative;
}

.custom-link::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-brand);
    position: absolute;
    left: 0;
    top: 100%;
    transition: all 0.4s;
}

.custom-link:hover::after {
    width: 100%;
}

/* Projects */

.custom-card .custom-card-image img {
    object-fit: cover;
    transition: all 0.4s ease;
}

.custom-card-campus-map-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-card .custom-card-campus-map-image img {
    height: 500px;
    width: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.custom-card:hover .custom-card-image img {
    transform: scale(1.1);
}

.custom-card:hover .custom-card-campus-map-image img {
    transform: scale(1.1);
}

/* Bullets for Experience Section */
.custom-bullets {
    padding-left: 20px;
    list-style-type: disc;
}

.custom-bullets li {
    margin-bottom: 10px;
    color: var(--color-body);
}

/* Resume Section */
.custom-resume .custom-resume-image {
    overflow: hidden;
}

.custom-resume .custom-resume-image img {
    object-fit: cover;
    transition: all 0.4s ease;
}

/* Israel Volunteer Image */
.custom-volunteer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.custom-volunteer .custom-israel-volunteer-image img {
    height: 320px;
    width: 350px;
    border-radius: 15px;
}

.custom-volunteer .custom-thon-volunteer-image img {
    height: 300px;
    width: 350px;
    border-radius: 15px;
}

.custom-volunteer .custom-zoo-volunteer-image img {
    height: 250px;
    width: 450px;
    border-radius: 15px;
}

/* Contact Section */
#contact .form-control {
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: var(--color-body);
}

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

#contact .form-control::placeholder {
    color: var(--color-body);
}

#contact input.form-control {
    height: 44px;
}