/* 
COLOR CODES:

Orange:
#EE6C4F
RGB(238, 108, 79)

Red:
#E13A44
RGB(255, 58, 68)

Dark Grey:
#444444
RBG(68, 68, 68)

Light Grey:
#888888
RGB(136, 136, 136)

Off White Grey:
#EEEEEE
RGB(238, 238, 238)
*/


body {
    font-family: 'Arial', sans-serif;
}

i {
    font-size: 24px;
}

/* NAV BAR */
.container-or-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Aligns vertically */
    align-items: center;
    /* Aligns horizontally */
    height: 100vh;
    /* Or any specific height */
}

.navbar {
    z-index: 1050;
    /* Bootstrap's modal is 1050, so this ensures the navbar is above most other elements */
}

.nav-item {
    padding-right: 30px;
}

/* Center the navbar-brand logo */
.navbar-brand {
    margin-right: auto;
    margin-left: 200px;
}

/* Center the navbar-nav */
.navbar-nav {
    justify-content: center;
    width: 100%;
}

@media (max-width: 1024px) {
    .navbar-brand {
        margin-left: 20px;
    }

    .hero-content {
        padding-left: 20px !important;
    }
}

@media (max-width: 800px) {
    .social-media {
        display: none !important;
        /* Hide the social media bar on small screens */
    }

    .navbar-brand {
        margin-left: 0;
    }

    .hero-content {
        padding-left: 10px !important;
    }
}

.nav-link {
    color: #333;
}

.nav-link:hover {
    color: #f00;
}

/* HOME */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    background: #f8f9fa url("background.png") no-repeat fixed center;
    background-size: cover;
    padding-top: 10vh;
    /* Adjust this value as needed */
    padding-bottom: 10vh;
    /* Adjust this value as needed */
}

.hero-content {
    padding-left: 200px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}


.mash-up {
    margin-top: 90px;
    padding: 10px;
    border-left: 4px solid #EE6C4F;
    max-width: 100%;
    font-size: 16px !important;
    background-color: rgb(238, 108, 79, .1);
}


.social-media {
    position: fixed;
    top: 0;
    /* Ensure it's at the very top */
    right: 0;
    bottom: 0;
    /* Adjust if the bar is not fully sliding in */
    width: 50px;
    /* Adjust the width as needed */
    background-color: #f26522;
    /* Orange color */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Change from center to start */
    transition: right 0.5s ease-out;
    z-index: 1050;
    /* Ensure it's above most other elements */
}

/* Add this part for the animation */
@keyframes slideIn {
    from {
        right: -50px;
    }

    to {
        right: 0;
    }
}

/* This class will be added via JavaScript */
.slide-in {
    animation: slideIn 0.5s forwards;
}

.social-media a {
    color: #fff;
    /* White color for the icons */
    text-decoration: none;
    padding: 10px;
    display: block;
}

.social-media a:hover {
    background-color: darken(#f00, 10%);
    /* Darken the orange on hover */
}

.explore-container {
    display: inline-block;
    overflow: hidden;
}

.explore-link {
    position: relative;
    color: #000;
    text-decoration: underline;
    white-space: nowrap;
    clip-path: inset(0 100% 0 0);
    /* Start with the text completely clipped */
    animation: revealText 4s forwards;
    /* Adjust time as needed */
}

@keyframes revealText {
    0% {
        clip-path: inset(0 100% 0 0);
        /* Text is fully clipped (not visible) */
    }

    75% {
        clip-path: inset(0 50% 0 0);
        /* By 75% of the time, half of the text is revealed */
    }

    100% {
        clip-path: inset(0 0 0 0);
        /* Text fully revealed */
    }
}


/* ABOUT PAGE */

.about-page {
    /* height: 100vh; */

}

.about-section-line {
    width: 70px;
    /* Set the width of the line */
    border: 0;
    /* Remove the default border */
    height: 1px;
    /* Set the height of the line */
    background-color: white;
    /* Set the color of the line */
    margin-top: 5px;
    margin-left: 2px;
}

.about-hero-section {
    display: flex;
    align-items: center;
    padding-top: 36px;
    /* Height of the navbar */
    background: #f8f9fa url("background.png") no-repeat fixed center;
    background-size: cover;
    background-position: center;
}


.about-hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    margin-left: 20px;
    margin-right: 120px;
}


.about-button {
    display: inline-block;
    padding: 5px;
    /* Adjust padding to your liking */
    padding-left: 20px;
    padding-right: 40px;
    background-color: rgba(68, 68, 68, 0.2);
    color: white;
    /* White text */
    text-decoration: none;
    /* Removes underline from links */
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
}

.about-button .arrow {
    display: inline-block;
    /* Aligns the arrow with the text */
    margin-left: 5px;
    /* Space between the text and the arrow */
}

.about-button:hover {
    text-decoration: none;
    color: white;
    background-color: rgba(68, 68, 68, 0.9);
}

.image-background {
    position: relative;
    background: #f8f9fa url("nyc-city-scape.jpg") no-repeat center center;
    background-size: 100% auto;
    /* Cover the full width, auto-adjust the height */
    height: 400px;
    /* Set the div height to 400px */
    width: 100%;
    /* Ensure the div takes up the full width of its container */
}

.text-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(73, 71, 71, 0.5);
    color: #fff;
    /* Assuming you want white text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px;
    /* Add some padding around your content */
}

.community-stats-line {
    width: 500px;
    /* Set the width of the line */
    border: 0;
    /* Remove the default border */
    height: 1px;
    /* Set the height of the line */
    background-color: #333;
    /* Set the color of the line */
    margin-top: 50px;
    margin-bottom: 50px;
}

.community-stats {
    color: #333;
    /* Adjust the color as needed */
    background-color: #ffffff;
    /* Adjust background color as needed */

}

.community-stats h2 {
    font-size: 24px;
    /* Adjust font size as needed */
    margin-bottom: 30px;
    /* Adjust margin as needed */
}

.statistic .percentage {
    font-size: 36px;
    /* Adjust font size as needed */
    font-weight: bold;
    /* Makes the percentage bold */
}

.statistic .category {
    font-size: 18px;
    /* Adjust font size as needed */
    margin-top: 5px;
    /* Adjust margin as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .statistic .percentage {
        font-size: 28px;
        /* Smaller font size on smaller screens */
    }

    .statistic .category {
        font-size: 16px;
        /* Smaller font size on smaller screens */
    }
}

.community-values ol li {
    padding-bottom: 10px;
}

footer {
    padding-top: 50px;
}


/* FORMS */

.google-form-container {
    display: flex;
    justify-content: center;
    /* Centers the child horizontally */
    align-items: center;
    /* Centers the child vertically if needed */

}

.google-form iframe {
    max-width: 100%;
    /* Ensures iframe is responsive and does not overflow its container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: Adds some shadow for better visibility */
}