body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #CE8946; /* Light text color */
    margin: 0;
    padding: 0;
}

header {
    background-color: #2a2a2a;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex; /* Use flexbox for logo and nav alignment */
    flex-direction: vertex; /* Stack logo and nav vertically on small screens */
    align-items: center; /* Center items horizontally */
    gap: 10px; /* Space between logo and nav */
}

.logo-container {
    padding: 0 30px;
}

.logo {
    max-height: 100px; /* Adjust logo size as needed */
    width: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Allow nav items to wrap on smaller screens */
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #CE8946; /* Accent color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #CE8946;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

h1 {
    color: #CE8946;
    text-align: center;
    margin-bottom: 20px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
}

.image-gallery img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Cover the area, cropping if necessary */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
    transform: scale(1.3);
}

.page-section {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-section p {
    line-height: 1.6;
}

.page-section a {
    color: #d3af37;
    text-decoration: none;
}

.page-section a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #2a2a2a;
    color: #888;
    border-top: 1px solid #333;
}