/* General styles */
body {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;
}

body.light-theme {
    background-color: white;
    color: black;
}

body.dark-theme {
    background-color: #333;
    color: snow;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #555;
}

.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .dropbtn {
    background-color: #db3434;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.top-bar .dropbtn:hover {
    background-color: #b92929;
}

.top-bar .logo {
    height: 40px;
}

h1 {
    text-align: center;
    margin: 6vh 0 4vh;
}

.spacer {
    height: 5vh;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.service-list li {
    margin: 0.5rem 0;
}

button.dropbtn {
    display: block;
    margin: 2rem auto;
    background-color: #db3434;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button.dropbtn:hover {
    background-color: #b92929;
}

/* Responsive styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    .top-bar {
        flex-direction: column;
    }

    .top-bar .logo {
        margin-top: 1rem;
    }
}

/* Gallery styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0 2rem;
    justify-items: center;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Contact box styles */
.contact-box {
    text-align: center;
    margin: 2rem auto;
    padding: 1rem;
    border: 1px solid black;
    border-radius: 10px;
    width: fit-content;
    background-color: transparent;
}

.contact-box p {
    margin: 0.5rem 0;
}

/* Google Maps iframe */
iframe {
    display: block;
    margin: 2rem auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Center Google Maps title */
h3 {
    text-align: center;
    margin-top: 2rem;
}