* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('SWGNBack1.jpeg'); /* Your background image */
    background-size: cover;
    background-position: center;
    font-family: sans-serif;
}

.Title {
    background: maroon;
    text-align: center;
    padding: 15px;
    color: white;
    position: relative; /* Ensure the title is above the overlay image */
    z-index: 3; /* Ensure the title is on top */
}

.Title h1 {
    font-size: 24px; /* Adjust as needed */
}

.menu-bar {
    background: maroon;
    text-align: center;
    position: relative; /* Ensure the menu bar is above the overlay image */
    z-index: 3; /* Ensure the menu bar is on top */
}

.menu-bar ul {
    display: inline-flex;
    list-style: none;
    color: #fff;
}

.menu-bar ul li {
    width: 120px;
    margin: 15px;
    padding: 15px;
}

.menu-bar ul li a {
    text-decoration: none;
    color: #fff;
}

.active,
.menu-bar ul li:hover {
    background: brown;
    border-radius: 3px;
}

.menu-bar .fa {
    margin-right: 8px;
}

.sub-menu-1 {
    display: none;
}

.menu-bar ul li:hover .sub-menu-1 {
    display: block;
    position: absolute;
    background: brown;
    margin-top: 15px;
    margin-left: -15px;
}

.menu-bar ul li:hover .sub-menu-1 ul {
    display: block;
    margin: 10px;
}

.menu-bar ul li:hover .sub-menu-1 ul li {
    width: 150px;
    padding: 10px;
    border-bottom: 1px dotted #fff;
    border-radius: 0;
    text-align: left;
}

.menu-bar ul li:hover .sub-menu-1 ul li:last-child {
    border-bottom: none;
}

.menu-bar ul li:hover .sub-menu-1 ul li a:hover {
    color: brown;
}

.fa-angle-right {
    float: right;
}

.sub-menu-2,
.sub-menu-3 {
    display: none;
}

.hover-me:hover .sub-menu-2,
.hover-me:hover .sub-menu-3 {
    position: absolute;
    display: block;
    margin-top: -40px;
    margin-left: 140px;
    background: brown;
}
.image-container {
    margin-top: 20px;
    padding: 20px; /* Optional: Add padding if needed */
    background: rgba(255, 255, 255, 0.8); /* Optional: Add background color */
    border-radius: 5px; /* Optional: Add border radius */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add box shadow */
}

.image-item {
    text-align: center;
    margin-bottom: 20px; /* Adjust spacing between rows */
}

.image-item img {
    max-width: 100%; /* Ensure images are responsive */
    max-height: 400px; /* Adjust maximum height as needed */
    height: auto;
    border: 1px solid #ddd; /* Optional: Add border */
    border-radius: 5px; /* Optional: Add border radius */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Optional: Add box shadow */
}

.image-title {
    text-align: center;
    margin-bottom: 10px; /* Adjust space between title and image */
    font-size: 18px; /* Adjust title font size */
    color: #333; /* Title text color */
}

.caption {
    text-align: center;
    margin-top: 10px; /* Adjust space between image and caption */
    font-size: 14px; /* Adjust caption font size */
    color: #333; /* Caption text color */
}