<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Hero Section */
* {
    font-family: 'Bricolage Grotesque', sans-serif;
}
#recreational-hero {
    height: 100vh;
    background-image: url('../images/gadbois-gym.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#recreational-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
}

h1 {
    padding: 8px 12px;
}

/* Map Section */
.map-container iframe {
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    border: none;
    border-radius: 8px;
    display: block;
    margin: 40px auto;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 20px;
    margin: 0 auto;
    background-color: #f7f7f7;
}

/* Contact Info Section */
.contact-section {
    flex: 1 1 45%;
    padding: 20px;
    box-sizing: border-box;
}

.contact-section h2 {
    font-size: 2rem;
}
.contact-section p {
    padding-bottom: 20px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1rem;
}

/* Contact Form Section */
.contact-form {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f7f7f7;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    background-color: #5AA9E6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #FFE45E;
}

/* FAQ Section */
.faq-section {
    padding: 8px 12px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-section h2 {
    padding-top: 35px;
}

.faq-question:hover {
    color: #5AA9E6;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    color: #333;
    font-size: 1rem;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-section,
    .contact-form {
        flex: 1 1 100%;
    }
}

.job-posting {
    padding-top: 100px; /* adjust based on your navbar height */
    text-align: center;
}

.job-posting img {
    display: block;
    margin: 20px auto;
    width: 400px;
    height: auto;
    border-radius: 10px;
}
</pre></body></html>