body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f0f0f0;
}


        /* Header Styles */
        .page-header {
            background-color: #004d40;
			font-family: 'Poppins', sans-serif;
            color: #ecf0f1;
            padding: 0.5rem 0;
            border-bottom: 2px solid #e74c3c;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
                /* Container for content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }


        .page-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        }

        .page-title {
            margin: 0;
            font-size: 1.7rem;
            padding-left: 0.5rem;
        }

        /* Navigation Styles */
        .main-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .main-nav li {
            position: relative;
        }

        .main-nav a {
            display: block;
            padding: 0.8rem 1.2rem;
            color: #ecf0f1;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .main-nav a:hover {
            background-color: #e74c3c;
        }

        /* Dropdown Menu (if needed, otherwise remove) */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #34495e;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 10;
        }

        .main-nav li:hover > .dropdown {
            display: block;
        }

        .dropdown a {
            padding: 0.5rem 1rem;
            color: #ecf0f1;
        }

        .dropdown a:hover {
            background-color: #e74c3c;
        }

        /* Hamburger Menu Icon */
        .menu-toggle {
            display: none; /* Hidden by default on larger screens */
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            cursor: pointer;
            padding-right: 1rem;
        }

        .menu-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #ecf0f1;
            transition: all 0.3s ease;
        }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 15px;
}

/* Updated selector to target <figure> */
.grid-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white; /* Optional: adds a white background to the item */
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.05);
}

/* New CSS for the caption */
.grid-item figcaption {
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    color: #555;
    background-color: #fff;
}

@media (max-width: 600px) {
    .photo-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 10px;
        padding: 10px;
    }
}