/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: green;
    /* Green background */
    color: white;
    /* White text for content */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container for Content */
.container {
    text-align: center;
    padding: 50px 20px;
}

/* Headline and Subheading Styling */
.main-text {
    margin-bottom: 50px;
}

.main-text h1 {
    font-size: 2.5em;
    color: white;
    /* Ensure text color is white */
}

.subheading {
    font-size: 1.2em;
    color: white;
    /* Ensure subheading color is white */
    margin-bottom: 30px;
}

/* Button Styling */
.grid-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.grid-buttons button {
    background: white;
    color: green;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s ease;
}

.grid-buttons button:hover {
    background: lightgreen;
}

/* Navigation Styles */
.header {
    background-color: #000;
    /* Black background for header */
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
}

.header a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #444;
    /* Dark grey background for links */
    transition: background-color 0.3s;
}

.header a:hover {
    background-color: #000;
    /* Black background on hover */
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    /* Black background for footer */
    padding: 10px 0;
    text-align: center;
    color: white;
    /* Set text color to white */
    width: 100%;
    position: fixed;
    bottom: 0;
}

.footer a {
    color: white;
    /* Set link text color to white */
    text-decoration: none;
    margin: 0 10px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #444;
    /* Dark grey background for links */
    transition: background-color 0.3s;
}

.footer a:hover {
    background-color: #000;
    /* Black background on hover */
}

/* Additional Styles */
.trainer-profile-pic {
    width: 150px;
    height: auto;
    border-radius: 50%;
    margin: 10px 0;
}

.video-player {
    margin: 20px 0;
    text-align: center;
}

button {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 auto;
}

.contact-text {
    color: white;
    font-size: 1.2em;
    text-align: center;
}