body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
}

header {
    text-align: center;
    background-color: #222;
    padding: 20px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#logo {
    display: block;
    margin: 80px auto 20px auto; /* Adjusted margin to position the logo correctly */
    width: 20vw;
    max-width: 300px;
    height: auto;
}

nav {
    margin-top: 20px; /* Adjust as needed to ensure the nav is properly placed */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 10px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6600;
}

nav ul li a.active {
    color: #ff6600;
    border-bottom: 2px solid #ff6600;
}

.intro, .gallery {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 40px; /* Reduced margin-top for closer spacing to the logo */
}

.intro {
    text-align: center;
}

h1, h2 {
    color: #ff6600;
}

.gallery {
    padding: 50px 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0 20px;
}

@media (min-width: 480px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr); /* Ensure no more than four images per line */
    }
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.image-item img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #222;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

footer .social-media-bar {
    background-color: #111;
    padding: 10px 0;
}

footer .social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-media a {
    color: #ff6600;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
    display: flex; /* Align icon and text */
    align-items: center; /* Center items vertically */
    gap: 8px; /* Space between icon and text */
}

footer .social-media a i {
    font-size: 1.5em; /* Larger icons relative to text */
}

footer .social-media a:hover {
    color: #ff8500;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0;
}

footer .about, footer .contact-info {
    max-width: 300px;
    margin: 10px;
}

footer h2 {
    color: #ff6600;
}

footer p, footer a {
    color: #ccc;
}

footer a:hover {
    color: #ff6600;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
