/* General Styles */
body {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color:white;
    color: #0E9CF5;
    /*padding: 1rem 0; */
    text-align: center;
}

header h1 {
    font-family: 'Montserrat Alternates', sans-serif;
    margin: 0;
}
.header{
    display: inline-grid;
    align-items: baseline;
    padding:.5rem;
    gap: 1 rem;
    justify-content: flex-end;
    height: 300px;
}
.header-logo img{
    position: absolute;
    left: 40px ;
    width: 200px;
    height: 300px;
}

.header-nav{
    position: float;
    top: auto; 
    bottom: auto;
    left:  auto;
    width: auto;
    
}
.logo{
    float: left;
    width: 300px;
    height: 400px;
    padding: 0;

}
.nav-header{
    background-color: #7A7976;
    padding: 0;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

nav a {
    margin: 0 auto;
    color: #0E9CF5;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}
.call-now {
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    color: #0E9CF5;
}
/* Section Styles */
section {
    background-color:#0E9CF5;
    color:white;
    padding: 2rem;
    text-align: center;
}

h2 {
    color: white;
    font-family: 'Montserrat Alternates', sans-serif;
}

/* Services Section */
#services ul {
    list-style: none;
    padding: 0;
}

#services li {
    margin: 0.5rem 0;
}

/* Prior Work Section */
.gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.gallery img {
    max-width: 300px;
    border: 2px solid #7A7976;
    border-radius: 5px;
}

/* About Section */
#about p {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Josefin Sans', sans-serif;
}

/* Contact Section */
iframe {
    border: 2px solid #7A7976;
    border-radius: 5px;
}
/* Social Section */
.links{
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    color: white;
}
/* Footer */
footer {
    background-color: white;
    color: white;
    text-align: center;
    padding: 1rem 0;
}
.footer-text{
    color: :#0E9CF5;
}
footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
    }
}
