/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    padding: 10px;
    position: relative;
}

.home-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.home-icon a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
}

.home-icon a:hover {
    color: #007bff;
}

h1 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.menu button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu button:hover {
    background-color: #0056b3;
}

/* "Thank you for visiting" message */
.message {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
    display: none;
}

.gallery {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.gallery img {
    max-width: 90%;
    height: auto;
    margin: 10px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-color: #007bff;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (min-width: 600px) {
    .gallery img {
        max-width: 45%;
    }
}

@media (min-width: 992px) {
    .gallery img {
        max-width: 30%;
    }
}
