/* Modal Styles */
.modal-background {
    backdrop-filter: blur(5px);
}

.modal {
    display: none; /* Hidden by default */
}

/* Contact Form Styles */
form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.input, .textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

/* Responsive Design for Form */
@media screen and (max-width: 768px) {
    .column {
        width: 100%;
        padding: 0 15px;
    }
}

/* Fixed Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* high z-index to ensure the navbar is above other content */
}

body {
    padding-top: 3.25rem; /* Add top padding to body equal to the navbar height */
}

/* Adjust padding-top for smaller screens if navbar height changes */
@media screen and (max-width: 768px) {
    body {
        padding-top: 4rem; /* Adjust based on the height of the mobile navbar */
    }
}

/* Section Styling (optional) */
.section {
    background-color: #ffffff;
    padding: 40px 15px;
}

.container {
    max-width: 600px;
    margin: auto;
}

/* Responsive Design for Form */
@media screen and (max-width: 768px) {
    .column {
        width: 100%;
        padding: 0 15px;
    }
}

.responsive-image {
    max-width: 100%; /* ensures the image is never wider than its container */
    height: auto; /* maintains the aspect ratio */
    display: block; /* removes any extra space below the image */
    margin: 0 auto; /* optional, for centering the image in its container */
}

.image-container {
    width: 50%; /* or any other width */
    margin: 0 auto; /* for centering the container */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* high z-index to ensure the navbar is above other content */
}

body {
    padding-top: 3.25rem; /* Add top padding to body equal to the navbar height */
}

.coach-image {
    width: 100%;        /* Make the image fill its container */
    height: auto;       /* Maintain aspect ratio */
    object-fit: contain;  /* Cover the container, might crop the image */
}
