body {
    background-color: #d9caaa; /* Light golden background color */
    color: #333; /* Dark gray text color for readability */
    font-family: Arial, sans-serif;
}

header, .navbar {
    background-color: #faf0d0 !important; /* Lighter golden color for header and footer */
}

h1, h2, h3 {
    color: #111; /* Darker color for headings */
}

.navbar-brand, .nav-link {
    color: #333 !important; /* Ensure the navbar links are readable */
}

.nav-link:hover {
    color: #111 !important; /* Change color on hover for better UX */
}

.nav-item {
    margin-right: 20px; /* Increase the distance between navigation menu items */
}

/* styles.css */
a {
    color: #587bee;
}
a:hover {
    color: #f2aa00;
}


.card {
    border-radius: 15px;
    background-color: #d9caaa;
    background-color: #f6ecd6;
    background-color: #ffffff;
}

.card-color-pri {
    background-color: #faf0d080;
}

.card-color-alt {
    background-color: #ffffff80;
}

.card-title {
    font-weight: bold;
}

.btn-outline-primary {
    border-color: #ffd700;
    color: #ffd700;
}

.btn-outline-primary:hover {
    background-color: #ffd700;
    color: #fff;
}

footer, .bg-light {
    /*background-color: #aaa490 !important; /* Lighter golden color for header and footer */
    background-color: #faf0d0 !important;
    color: #333; /* Footer text color */
}

.accordion {
    background-color: #eee !important; /* Lighter golden color for accordion */
    border-radius: 10px;
}

.img-fluid {
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
}

.background-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    filter: blur(8px);
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(210, 205, 190, 0.9); /* Semi-transparent white overlay */
    /* background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white overlay */
    z-index: -1;
}

.content-overlay {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

.image-text-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}
.image-container, .image-container-right {
    width: 100%;
    height: 100%;
    display: contents;
    justify-content: center;
}
.image-wrapper {
    align-items: center;
}
.image-wrapper img {
    width: auto;
    height: 20vh;
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
}
.text-container {
    overflow-wrap: break-word;
}
@media (min-width: 768px) {
    .image-text-container {
        display: block;
    }
    .image-container {
        display: flex;
        width: auto;
        max-width: 50%;
        margin-left: 0;
        float: left;
        margin-right: 20px;
        margin-bottom: 2px;
    }
    .image-container-right {
        display: flex;
        width: auto;
        max-width: 50%;
        margin-left: 0;
        float: right;
        margin-right: 20px;
        margin-bottom: 2px;
    }
    .image-wrapper {
        height: auto;
        max-height: none;
    }
    .image-wrapper img {
        height: auto;
        max-height: 20vh;
    }
}