:root {
    --theme-black: #000;
    --theme-white: #fff;
    --theme-darkGreen: #0a3d3f;
    --theme-mediumGreen: #266452;
    --theme-lightGreen: #59a33b;
    --theme-greenishYellow: #a4c639;
    --theme-darkBlue: #10344a;
    --theme-deepBlue: #0a2531;
    --theme-teal: #1b5e68;
    --facebook: #0862f6;
    --instagram: #f73d85;
    --givelify: #f24b09;
    --cashapp: #00cf30;
}

html {
    scroll-behavior: smooth;
}

h2 {
    font-family: 'Patrick Hand', sans-serif;
}

a {
    text-decoration: none;
    font-family: 'Patrick Hand', sans-serif;
    font-size: larger;

}

.facebookframe {
    padding: 20px;
    width: 550px;
    margin: 0 auto;
}

.header-container {
    padding: 5em;
}

a:hover {
    text-decoration: none;
}

p {
    font-family: 'Patrick Hand', sans-serif;
    font-size: x-large;
}

.btn {
    border: 0px;
    font-family: 'Patrick Hand', sans-serif;
    font-weight: bold;

}

button {
    width: 100px;
}

.btn-primary {
    background-color: var(--theme-teal);
    color: #fff;
    margin: 5px;
}

.btn-primary:hover {
    background-color: #2a909f;
}

.khalils-korner {
    font-family: 'Permanent Marker', cursive;
    color: var(--theme-greenishYellow); /* Matching text color from the image */
    text-align: center;
    font-size: 3em;
    padding: 20px;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 1;
    border-bottom: white 5px solid;
}

.navbar-toggler {
    z-index: 2;
}

#navbarNav {
    z-index: 2;
}

.navbar-register {
    z-index: 2;
    position: relative;
}

.navbar-brand {
    font-weight: bold;
    color: var(--theme-white) !important;
}

.navbar-brand img {
    margin-right: 10px;
}

.nav-link {
    color: var(--theme-white) !important;
    font-weight: bold;
    margin-right: 15px;
}

.nav-link:hover {
    color: var(--theme-lightGreen);
}

.nav-link.phone {
    color: var(--theme-white) !important;
    stroke: #000 !important;
    stroke-width:  5px !important;
}

.navbar-brand.logo {
    -webkit-text-stroke: #000;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' linecap='round' linejoin='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.navTree {
    position: absolute;
    z-index: 0;
    opacity: 0.2;
    left: -100px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: var(--theme-deepBlue);
    color: #fff;
    padding: 1rem 0;
    overflow: hidden;
}

header .container {
    z-index: 1;
}



#hero {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-align: center;
    min-height: 85vh;
}

#hero img {
    height: 90%;
    width: 80%;
}

.hero-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
}

section {
    padding: 2rem;
    text-align: center;
}

section#who-we-are {
    background-color: var(--theme-mediumGreen);
    color: #fff;
}

section#upcoming-events{
    background-color: var(--theme-white);
    border-bottom: white 5px solid;
    color: black;

}

.profile-pic {
    width: 260px; /* Adjust the size as needed */
    height: 260px; /* Adjust the size as needed */
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 1em auto 1em; /* Center the image and add margin below */
    border: #fff solid 6px;
}

section#what-we-offer {
    height: auto;
    background: url(/images/chalkbackground.jpg);
    background-size: cover;
    border-top: white 5px solid;
    border-bottom: white 5px solid;
    color: white;
}

section#what-we-offer .col-md-6 {
    padding: 10px
}

section#what-we-offer img {
    height: 100%;
    width: 100%;
}

section#who-we-serve {
    background-color: var(--theme-teal);
    color: #fff;
}

section#who-we-serve img {
    height: 100%;
    width: 100%;
}

section#contact {
    background-color: var(--theme-mediumGreen);
    color: #fff;
    background: url(/images/chalkbackground.jpg);
}

section#get-involved-join {
    background-color: white;
    overflow: hidden;
    margin-bottom: 100px;
    padding-bottom: 0px;
}

section#get-involved-join img {
    width: 100%;

}

section#get-involved-support {
    background-color: white;
    overflow: hidden;
    margin-bottom: 120px;
    padding-bottom: 0px;
}

section#get-involved-support img {
    width: 100%;

}

section#get-involved-follow {
    background-color: white;
    overflow: hidden;
    margin-bottom: 100px;
    padding-bottom: 0px;
}

section#get-involved-follow img {
    width: 100%;

}

section#what-we-offer img {
    border-radius: 20px;
}

section#who-we-serve img {
    border-radius: 20px;
}

.product {
    display: inline-block;
    margin: 1rem;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
}

.btn-primary.Facebook:hover {
    background-color: var(--facebook);
}

.btn-primary.Instagram:hover {
    background-color: var(--instagram);
}

.btn-primary.givelify:hover {
    background-color: var(--givelify);
}

.btn-primary.cashapp:hover {
    background-color: var(--cashapp);
}

footer {
    background-color: var(--theme-black);
    color: #fff;
    text-align: center;
    padding: 1rem 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
    border-top: #fff 5px solid;
}

footer.register {
    margin: 2px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    .container {
        padding: 15px;
    }

    section {
        padding: none;
    }

    .header-container {
        margin-top: 50px;
    }

    .facebookframe {
        width: auto;
    }

    #get-involved-support.section {
        margin-bottom: 125px;
    }

    #get-involved-join.section {
        margin-bottom: 20px;
    }

    #get-involved-follow.section {
        margin-bottom: 20px;
    }

    #hero img {
        height: 90%;
        width: 103%;
    }

    .mission-statement {
        margin-top: 40px;
    }

    #upcoming-events {
        display: none;
    }

    .facebookframe {
        display: none;
    }

    .facebook-title {
        display: none;
    }

    footer {
        position: relative;
    }
}

