/* Reset some default styles */
html, body, h1, p, ul, section {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
}

body {
    line-height: 1.6;
    color: #333;
}

h1, h2 {
    line-height: 1.6;
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: hsl(0 0 30)
}

p {
    line-height: 1.9;
    font-size: 18px;
    color: hsl(0 0 20)
}

p a {
    font-size: 18px;
    color: hsl(0 0 20)
}

/* Navigation styles */
nav {
    background: #ffffff;
    color: #000000;
    padding: 10px 0;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: right;
    width: 100%;
    margin: 0;
    padding: 0;
}

nav ul li {
    padding: 0;
    margin: 0 15px;
    border: none;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 23px;
    font-weight: 600;
}

nav ul li a:hover {
    text-decoration: none;
}

nav ul li .menu-text:hover {
    border-bottom: 2px solid #000;
    position: relative;
    bottom: 2px;
}

nav ul li .menu-button {
    padding: 10px;
    border: 1.5px solid #646044;
    border-radius: 10px;
}

nav ul li .menu-button:hover {
    background: #646044;
    color: #fff;
}

/* Section styles */
.content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

#menu {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

#home {
    padding-top: 90px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

#home img {
    max-height: 100%;
    object-fit: cover;
    overflow: hidden;

}

#about {
    padding-top: 90px;
    padding: 40px 0 0 0;
    max-width: 650px;
    text-align: center;
}


#services {
    padding-top: 90px;
    padding: 40px 0 0 0;
}

#contact {
    padding-bottom: 100px;
    text-align: center;
}

.contact-info {
    margin: 0 auto;
    text-align: left;
    width: auto;
    display: table;
}

.contact-info img {
    margin-right: 10px;
}

#book-now {
    padding: 40px 0px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #fff;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
}

/* Link styles */
a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-weight: 400;
    font-size: 16px;
    color: hsl(0, 0, 60);
}

/* Iframe styles */
#services-iframe {
    width: 100%;
    height: 2150px;
    border: none;
}

.hidden {
    display: none;
}

/* Responsive design */
@media (max-width: 580px) {
    #book-now-link {
        display: none;
    }

    #services-iframe {
        height: 3100px;
    }

    footer {
        text-align: left;
        padding-left: 40px;
    }

    nav ul {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    nav ul li a{
        font-size: 18px;
    }
}