body {
    font-family: 'Arial', sans-serif;
    background-color: #28a745; /* Green from the logo */
    color: #343a40;
    padding-top: 56px; /* Height of the fixed navbar */
}

.navbar {
    margin-bottom: 20px;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-brand-text {
    font-size: 1.5em; /* Adjust as needed to make the text larger */
    font-weight: bold;
    color: #343a40;
}

.nav-link {
    color: #343a40 !important;
}

.nav-link:hover {
    color: #ffc107 !important; /* Yellow */
}

.container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px; /* Added padding for better spacing */
}

section {
    padding: 60px 0;
}

section:nth-of-type(odd) {
    background-color: #f1f1f1;
}

h2 {
    color: #dc3545; /* Red */
    margin-bottom: 30px;
}

hr {
    border-top: 3px solid #28a745; /* Green */
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    width: 100%;
    position: relative;
    left: 0;
    bottom: 0;
}

footer p {
    margin: 0;
}

a {
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

.carousel-inner img {
    max-height: 500px;
    object-fit: cover;
}

.photo-frame {
    height: 200px; /* Fixed height for all photos */
    overflow: hidden;
}

.photo-frame img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    border-radius: 10px; /* Optional: to match the container's border-radius */
}

.modal-body img {
    width: 100%;
}

.modal-xl {
    max-width: 90% !important;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    width: 90%;
    height: 90%;
}
