/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: #2C8C84; /* Maintained header background color */
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .logo img {
    height: 120px;
    cursor: pointer;
}

/* Coaches Hierarchy */
.coaches-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.coaches-category {
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.coaches-category h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C8C84; /* Color for headings */
}

.coaches-branch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.coach-member {
    width: 180px;
    text-align: center;
}

.coach-member img {
    width: 100%;
    border-radius: 10px;
}

.coach-member p {
    font-weight: bold;
    margin-top: 10px;
    color: #333; /* Dark text for readability */
}

/* Get Involved Section */
.get-involved {
    text-align: center;
    padding: 40px 20px;
    background: #2C8C84; /* Game Point Green */
    margin-top: 40px;
    color: white;
}

.get-involved h2 {
    font-size: 2.5rem;
    color: #fff;
}

.get-involved p {
    font-size: 1.5rem;
    color: #f8f8f8;
    margin-bottom: 20px;
}

/* Get Involved Button */
.get-involved .btn {
    background-color: #000; /* Black background for buttons */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.get-involved .btn:hover {
    background-color: #333; /* Slightly darker black */
}

/* Fade-In Effect */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background-color: #2C8C84; /* Game Point Green */
    color: white;
    text-align: center;
    padding: 20px 15px;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 50px; /* Adds space between content and footer */
}

/* Social Icons */
footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .social-icons a {
    font-size: 22px;
    transition: transform 0.3s ease-in-out;
}

footer .social-icons a:hover {
    transform: scale(1.2);
}

/* Copyright Text */
footer p {
    font-size: 14px;
    margin-top: 5px;
}

/* Logo Styling */
footer .header-logo {
    width: 120px;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

footer .header-logo:hover {
    transform: scale(1.1);
}

/* Ensures Footer Stays at Bottom if Content is Short */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 15px;
    }

    footer .social-icons a {
        font-size: 20px;
    }

    footer p {
        font-size: 12px;
    }

    footer .header-logo {
        width: 100px;
    }
}