/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Google Fonts - Impact and fallback Anton */
@import url('https://fonts.googleapis.com/css2?family=Impact&family=Anton&display=swap');

/* Body styles */
body {
    font-family: 'Arial', sans-serif; /* Use Arial for body text */
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: black; /* Header background is now black */
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: 'Impact', 'Anton', sans-serif; /* Impact with Anton fallback */
    font-size: 3em !important; /* Increased font size with !important */
}

/* Navigation */
nav {
    background-color: red; /* Navigation background is now red */
    text-align: center;
    margin: 0; /* Ensure no gap by setting margin to 0 */
}

nav a {
    color: white; /* Set link color to white */
    text-decoration: none;
    margin-right: 15px;
    padding: 10px; /* Optional: add padding for better spacing */
    font-size: 1.2em; /* Set font size for navigation links */
}

nav a:hover {
    text-decoration: underline; /* Optional: underline on hover */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

/* Gallery grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

/* Gallery images */
.gallery img {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Image hover effect */
.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

/* Image description */
.gallery-item {
    text-align: center;
}

.image-description {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}
