/* Header styles */
.header {
    background-color: #f7f7f7;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    display: flex; /* Enables flexbox for alignment */
    justify-content: left; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}

/* Logo link styles */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center; /* Aligns logo and title vertically */
}

/* Logo image styles */
.logo {
    width: 50px;
    margin-right: 10px;
}

/* Site title styles */
.site-title {
    font-size: 1.7rem;
    font-weight: bold;
    color: #666;	
}

/* Ensure the page takes up the full height of the viewport */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Make the main content area take up all available space */
main {
    flex: 1;
}

.footer {
    background-color: #333; /* Match the dark gray color */
    color: white;
    text-align: center;
    padding: 5px 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
}

.thumbnail-wrapper {
    cursor: pointer;
    position: relative;
}

.thumbnail {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #aaa;
}

#full-image-container {
    text-align: center;
    margin-top: 20px;
}
