body {
    background-color: rgb(25, 25, 25);
    color: rgb(134, 193, 40);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.logo-image {
    max-width: 500px;
    height: auto;
}

a {
    color: rgb(134, 193, 40);
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

header {
    margin: 1rem 0;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(25, 25, 25);
}

nav {
    margin-top: 10px;
    margin-bottom: 10px;
}

.section-title {
    color: rgb(134, 193, 40);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.decorative-bar {
    background-color: rgb(134, 193, 40);
    height: 2px;
    width: 50%;
    margin: 20px auto;
}

.carousel-border {
    border: 2px solid rgb(134, 193, 40);
    margin: 0 auto;
}

.carousel-inner img {
    max-height: 500px;
    object-fit: cover;
}

.row img {
    margin-bottom: 10px;
    border-radius: 5px;
}

.col-md-4 {
    padding: 0 5px;
}

section {
    margin: 0;
    padding: 2rem 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    clear: both;
}

.light-bg {
    background-color: rgb(35, 35, 35); /* Lighter gray for specified sections */
}

#contact {
    background-color: rgb(25, 25, 25);
}

/* Reduce padding for specific sections to decrease vertical space */
#about, #gallery {
    padding: 1rem 0; /* Original was 2rem 0 */
}

.container.py-5 {
    padding: 1rem 0; /* Reduce overall padding within the containers */
}

.contact-link {
    color: rgb(134, 193, 40);
    font-weight: bold;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

#contact i {
    color: rgb(134, 193, 40);
}

#contact p {
    font-size: 1.1rem;
    line-height: 1.5;
}
.logo-image {
    max-width: 100%; /* Prevents the image from overflowing on small screens */
    height: auto; /* Maintains aspect ratio */
}

header {
    overflow: hidden; /* Ensures no child elements overflow header */
}



.logo-image {
    width: auto; /* Adjusts based on max-size */
    height: auto; /* Maintains aspect ratio */
    max-width: 100%; /* Ensures responsiveness without overflow */
}

@media (min-width: 992px) {
    .logo-image {
        max-width: 500px; /* More significant size for larger screens */
    }
}
.carousel-inner img {
    width: 100%; /* Full width to fill carousel */
    height: auto; /* Maintain aspect ratio */
    max-height: 500px; /* Set max height consistent with desktop */
}

.carousel-inner {
    max-height: 500px; /* Set fixed height for the carousel container */
}