body {
    background-color: #ffffff; /* Main content background color */
    margin: 0;
    padding-bottom: 60px; /* Height of the footer */
    box-sizing: border-box;
}

a {
    font-weight: bold;
    color: #213159;
}

a:hover {
    font-weight: bold;
    color: #0041c2;
    text-decoration: none;
}

.navbar {
    transition: background-color 0.5s ease;
}

.navbar a {
    color: #e7e7e7;
    text-transform: uppercase; /* Set text to all caps */
}

.banner {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust as needed */
    background-size: cover;
    background-position: center;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 49, 89, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .banner-logo {
    max-width: 300px; /* Adjust as needed */
    width: 100%;
    height: auto;
}

.content {
    max-width: 1080px;
    margin: 0 auto;
}

/* Main menu */

.navbar-transparent {
    background-color: transparent;
}

.navbar-scrolled {
    background-color: #213159; /* dark blue */
}

/* Additional styling to center the navbar menu */
.navbar-nav {
    flex: 1;
    justify-content: center;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    display: inline-block;
}

.navbar-nav .nav-item .nav-link {
    display: block;
    padding-left: 15px; /* Adjust spacing as needed */
    padding-right: 15px; /* Adjust spacing as needed */
}

/* Language picker styles */
.dropdown .btn-secondary {
    background-color: transparent;
    border: none;
}

.dropdown-menu {
    background-color: rgba(33, 49, 89, 0.5);
    min-width: auto;
    padding: 0;
}

.dropdown-item {
    color: #e7e7e7;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background-color: rgba(33, 49, 89, 0.7);
}

.flag-icon {
    margin-right: 5px;
}

/* Separator line between menu and language chooser */
.navbar-nav .nav-item.language-picker {
    border-left: 1px solid rgba(255, 255, 255, 0.3); /* Semi-transparent white line */
    margin-left: 15px; /* Adjust for spacing */
    padding-left: 15px; /* Adjust for spacing */
}

/* Mobile view adjustments */
@media (max-width: 767.98px) {
    .navbar {
        background-color: #213159; /* dark blue */
    }

    .navbar-nav .nav-item.language-picker {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }
}

/* Footer styles */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px; /* Adjust as needed */
    background-color: #213159; /* dark blue */
    color: #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
}

.footer p {
    margin: 0;
}

.footer a {
    color: #e7e7e7;
    font-weight: bold;
}

.footer a:hover {
    color: #ccc;
    text-decoration: none;
}

/* About page */

.about-page {
    margin-top: 20px;
}

.about-page .profile-box {
    background-color: #213159; /* Same blue color as the template */
    color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.about-page .profile-photo {
    width: 300px; /* Increased size */
    height: 300px; /* Match the height to the width */
    margin-bottom: 20px;
    object-fit: cover; /* Ensures the image covers the area without stretching */
    border-radius: 50%; /* Make the image round */
}

.about-page .contact-info h3 {
    margin-bottom: 10px;
    color: #ffffff; /* Ensure the text is white */
}

.about-page .contact-info .contact-padding {
    height: 20px; /* Adjust padding height as needed */
}

.about-page .contact-info p {
    margin: 10px 0;
    color: #ffffff; /* Ensure the text is white */
}

.about-page .contact-info i {
    margin-right: 10px;
    color: #ffffff; /* Ensure the icons are white */
}

.about-page .contact-info a {
    color: #ffffff; /* Ensure the links are white */
    text-decoration: none;
}

.about-page .contact-info a:hover {
    text-decoration: underline;
}

.about-page .contact-info .social-media {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.about-page .contact-info .social-media a {
    color: #ffffff; /* Ensure the social media icons are white */
    font-size: 24px;
    text-decoration: none;
}

.about-page .contact-info .social-media a:hover {
    color: #cccccc;
}

/* Contact page */

.contact-page {
    margin-top: 20px;
}

.contact-page .profile-box {
    color: #000000; /* Ensuring text is black on a transparent background */
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.contact-page .profile-box.no-bg {
    background-color: transparent;
}

.contact-page .profile-photo {
    width: 300px; /* Adjust size as needed */
    height: 300px; /* Match the height to the width */
    margin-bottom: 20px;
    object-fit: cover; /* Ensures the image covers the area without stretching */
    border-radius: 50%; /* Make the image round */
}

.contact-page .contact-info h3 {
    margin-bottom: 10px;
    color: #000; /* Ensuring text is visible on a transparent background */
}

.contact-page .contact-info .contact-padding {
    height: 20px; /* Adjust padding height as needed */
}

.contact-page .contact-info p {
    margin: 10px 0;
    color: #000; /* Ensuring text is visible on a transparent background */
}

.contact-page .contact-info i {
    margin-right: 10px;
    color: #000; /* Ensuring icons are visible on a transparent background */
}

.contact-page .contact-info a {
    color: #000; /* Ensuring links are visible on a transparent background */
}

.contact-page .contact-info a:hover {
    text-decoration: underline;
}

.contact-page .contact-info .social-media {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.contact-page .contact-info .social-media a {
    color: #000; /* Ensuring social media icons are visible on a transparent background */
    font-size: 24px;
    text-decoration: none;
}

.contact-page .contact-info .social-media a:hover {
    color: #666666;
}

/* Horses page */

.horses-page .card {
    border: none;
}

.horses-page .card img {
    border-radius: 8px;
}

.horses-page .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.horses-page .card-text {
    font-size: 1rem;
    color: #666;
}

.modal-body img {
    max-width: 100%;
    height: auto;
}

.fixed-size {
    width: 100%;
    height: 250px; /* Adjust the height as needed */
    object-fit: cover;
}
