/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff; /* White text */
    background-color: #000; /* Black background */
}

header {
    background: #000; /* Black header */
    color: #fff; /* White text */
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff; /* White text */
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0000; /* Red hover effect */
}

.cta-button {
    background: #ff0000; /* Red button */
    color: #fff; /* White text */
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d00000; /* Darker red on hover */
}

.hero {
    text-align: center;
    padding: 5rem 1rem;
    background: #111; /* Darker black for contrast */
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 2rem;
}

.about, .programs, .contact {
    padding: 4rem 1rem;
    text-align: center;
}

.program-card {
    background: #111; /* Darker black */
    border: 1px solid #ccc; /* Light gray border */
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); /* Subtle white shadow */
    margin: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc; /* Red border */
    border-radius: 5px;
    background: #000; /* Black background */
    color: #fff; /* White text */
}

button[type="submit"] {
    background: #ff0000; /* Red button */
    color: #fff; /* White text */
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #d00000; /* Darker red on hover */
}

footer {
    text-align: center;
    padding: 1rem;
    background: #000; /* Black footer */
    color: #fff; /* White text */
}
.social {
    text-align: center; /* Center-aligns text */
    padding: 4rem 1rem;
    background: #f9f9f9; /* Light background for contrast */
    color: #333; /* Dark text for readability */
}

.social-embeds {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.social-embed {
    max-width: 500px;
    width: 100%;
}

.social-embed h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #000;
}
/* Video Background */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the background */
    z-index: -1; /* Push video behind content */
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1; /* Ensure overlay appears above video */
}

.video-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Adds a shadow for better visibility */
}

/* Navbar should remain visible over the video */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2; /* Navbar above the video */
}
/* Navbar Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px; /* Adjust for desired size */
    width: auto;
    cursor: pointer; /* Makes it clear the logo is clickable */
}
/* Hours Worked == 32 */