@font-face {
    font-family: 'AlfaSlabOne';
    src: url('AlfaSlabOne.ttf') format('truetype');
}

@font-face {
    font-family: 'Allan';
    src: url('Allan.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #61777F;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #61777F;
}

.logo {
    width: 350px;
}

h1, h2, h3 {
    font-family: 'AlfaSlabOne', sans-serif;
    color: #61777F;
}

h2 {
    font-family: 'Allan', sans-serif;
    font-size: 24px;
    margin-top: 40px;
    color: #C8C8C8;
}

p {
    font-family: Arial, sans-serif;
    color: #61777F;
}

.nav-buttons {
    text-align: center;
    margin-top: 20px;
}

.nav-buttons a {
    display: inline-block;
    background-color: #61777F;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s;
    border-radius: 5px; /* Slight rounded edges */
    text-decoration: none;
}

.nav-buttons a:hover {
    background-color: #C8C8C8;
    color: #61777F;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex: 1; /* Allows the main content to grow and push the footer down */
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #61777F;
    color: #FFFFFF; /* Ensure the footer text is white */
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: #FFFFFF;
}

footer p {
    color: #FFFFFF; /* Ensure the paragraph text color is set to white */
    margin: 0;
}


.image-gallery img {
    width: 32%;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-gallery img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

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

.zoom-overlay.visible {
    visibility: visible;
    opacity: 1;
}

