/*Styles.css*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #ccc;
}

.logo img {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

#home {
    padding: 50px;
    background: #fff;
    text-align: center;
}

#home img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

#services {
    background: #f4f4f4;
    padding: 50px;
    text-align: center;
}

#services ul {
    list-style: none;
    padding: 0;
}

#services ul li {
    margin: 10px 0;
    font-size: 18px;
}

#gallery {
    padding: 50px;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-container img {
    width: 100%;
    height: auto;
}

#contact {
    background: #f4f4f4;
    padding: 50px;
    text-align: center;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: sticky;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    nav ul {
        display: none; /* Hides the navigation menu on smaller screens */
    }
    .menu-icon {
        display: block; /* You would need to add a menu icon (hamburger) in your HTML */
    }
    nav ul.show {
        display: block;
        text-align: center; /* Makes the navigation menu appear centered when toggled */
    }
}