/* General Styles */
body {
    font-family: "Helvetica", sans-serif;
    overflow-y: scroll;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-container {
    margin-top: 81px;
}

.construction-message {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffcc00;
    color: #333;
    text-align: center;
    padding: 10px 0;
    z-index: 1001; /* Ensure it stays above the nav */
}

.nice-list {
	/* indent and bullet style */
	list-style-type: square;    /* small block bullets */
	padding-left: 20px; 
	text-align: left;
	list-style-position: outside;

	/* spacing and readability */
	line-height: 1.7;
}

.nice-list li {
	/* space between items */
	margin-bottom: 0.75rem;
}

.nice-list li::marker {
	color: #f28b1f; /* gold bullets */
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0; /* Start at the top of the page */
    width: 100%;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect on content beneath */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    color: #000; /* Text color for visibility */
    height: 80px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 300px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 60px;
}

.nav-links a {
    color: #34383f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    height: 3px;
    width: 25px;
    background: #34383f;
    margin: 4px 0;
}

/* Content Wrapper */
.content {
    margin-top: 120px; /* Adjusted to account for the fixed elements */
    padding: 20px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -160px;
}

.hero-section .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-section .overlay h1 {
    color: #fff;
    font-size: 48px;
    text-align: left;
    padding: 20px;
}

/* Section Styles */
section {
    background-color: #f2f2f2;
    text-align: center;
}

section p {
    font-size: 16px;
    line-height: 1.6;
	max-width: 600px;
	text-align: justify;
}

/* Columns */
.column, .single-column {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
	padding: 40px;
}

.column--display-block {
	display: block;
}

.column--black {
	background-color: #04080f;
	color: #e4e8ef;
}

.column--gray {
	background-color: #34383f;
	color: #e4e8ef;
}

.column h3 {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
}

.column p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.column--full-image {
	padding: 0;
}

.two-columns,
.three-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.two-columns .column {
    flex: 1 1 45%;
}

.three-columns .column {
    flex: 1 1 30%;
}

h1, h2, h3 {
	margin-bottom: 16px;
}

a {
	text-decoration: none;
	color: #f28b1f;
	font-weight: bold;
}
a:hover {
	transition: 0.3s;
	opacity: 0.5;
}

/* Icon Styles */
.icon--medium {
    font-size: 48px;
    color: #f28b1f;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon--medium:hover {
    transform: scale(1.2);
    color: #fff;
}

/* Form Styles */
form {
    max-width: 100%;
    margin-top: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

select[multiple] {
    height: auto;
}

input[type="submit"],
input[type="button"] {
    background-color: #34383f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #555;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
}

/* Team Member Styles */
.team-member img {
    border-radius: 50%;
    margin-bottom: 20px;
	background-color: #ddd;
	width: 225px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 30%;
    margin: 10px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-column p {
    line-height: 1.6;
    font-size: 16px;
}

.footer-logo img {
    max-width: 300px;
    opacity: 0.5;
}

.footer-socials {
    display: flex;
    align-items: center;
}

.footer-socials .social-icon {
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
}

/* Community Support Section */

/* Header Section */
.community-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.community-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #e4e8ef;
}

/* Charity Section */
.charity-image {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.charity-image:hover {
    transform: scale(1.05);
}

.charity-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.charity-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e4e8ef;
}

/* More Charities Section */
.community-more-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.community-more-intro {
    font-size: 16px;
    line-height: 1.8;
}


/* Responsive Adjustments */
@media (max-width: 1500px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px; /* Adjusted to match navigation bar height */
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        width: 100%;
        flex-direction: column;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-icon {
        display: flex;
    }

    .menu-icon span {
        background: #000;
    }

    .two-columns .column,
    .three-columns .column {
        flex: 1 1 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: center;
        margin: 20px 0;
    }

    .footer-socials {
        justify-content: center;
    }

    .hero-section .overlay h1 {
        font-size: 32px;
        padding: 10px;
    }
	
	.column {
        padding: 20px;
    }

    .icon--medium {
        font-size: 36px;
    }

    .column h3 {
        font-size: 18px;
    }

    .column p {
        font-size: 14px;
    }
}

/* Map Embed Styles */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 ratio */
    position: relative;
    height: 0;
	max-width: 900px;
	text-align: center;
	margin: auto;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}