/* General styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 40px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #5e5e5e;
}

/* Header Styles */
header {
    background-color: #004d40;
    color: white;
    padding: 100px 20px 50px; /* Added padding to the top */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

header h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    margin: 0;
}

header p {
    font-size: 18px;
}

/* Content Section */
section {
    padding: 40px 20px;
    margin: 5px auto;
    max-width: 1200px;
    text-align: center;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Image Gallery Styles */
.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.image-gallery img {
    max-width: 300px; /* Set a maximum width for the images */
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer a {
    color: #00bfa5;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Button Styles */
a.btn {
    background-color: #004d40;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

a.btn:hover {
    background-color: #003d34;
}

/* Ensure Full Screen Fit */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main {
    flex-grow: 1;
}
