body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    height: 100vh;
    background-color: #E9EBF2;
    overflow-x: hidden;
}

#mobileHeader {
    display: none;
}

#mobileMenu {
    display: none;
}

#mobileServices {
    display: none;
}

#mobileContact {
    display: none;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #BEAE6D;
}

#header ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#header ul li {
    margin-left: 30px;
}

ul {
    margin-left: 50px;
}

a {
    color: #252525;
    font-weight: bold;
    text-decoration: none;
    font-size: 25px;
}

a:hover {
    cursor: pointer;
}

#phoneNum {
    font-size: 25px;
    margin-right: 20px;
}

#logo {
    width: 150px;
    margin-top: 5px;
    margin-bottom: 5px;
}

h1 {
    margin: 0;
}

#menu {
    display: none;
}

#headerSection {
    margin-top: 40px;
    width: 100%;
    height: 80%;
    background: radial-gradient(circle at center, #4E7, #E9EBF2 40%);
    position: relative;
}

#headerSection::before {
    content: "Allow Us To Fix Your Problems";
    font-size: 7.3em;
    color: white;
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    text-align: center;
    opacity: 0;
    animation: fade-in 2.5s forwards;
    letter-spacing: 1px;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#services {
    width: 100%;
    margin-top: 80px;
}

#leftText {
    display: flex;
    background-color: #3E3B2D;
}

#leftTextTitle {
    color: #ffffff;
    margin-left: 170px;
    margin-top: 170px;
}

#leftTextParagraph {
    color: #ffffff;
    width: 500px;
    text-align: center;
    margin-left: 200px;
}

#leftTextImg {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 350px;
    margin-left: 200px;
}

#rightText {
    display: flex;
    background-color: #BEAE6D;
}

#rightTextImg {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 350px;
    margin-left: 280px;
}

#rightTextTop{
    display: flex;
    flex-direction: column;
}

#rightTextTitle {
    color: #252525;
    margin-left: 200px;
    margin-top: 170px;
}

#rightTextParagraph {
    color: #252525;
    width: 500px;
    text-align: center;
    margin-left: 150px;
}

#contact {
    margin-top: 20px;
}

#contactText {
    font-size: 15px;
    margin-left: 170px;
}

#contactPhone {
    margin-top: 20px;
    font-size: 20px;
}

#contactEmail {
    font-size: 20px;
    margin-bottom: 20px;
}

#mapContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#mapContainer iframe {
    width: 100%;
    max-width: 800px;
    height: 100%;
}

#footer {
    background-color: #3E3B2D;
    color: white;
    margin: 0;
    text-align: center;
}

#footerText {
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 0;
}

@media (max-width: 500px) {

    #header {
        display: none;
        margin-bottom: 0;
    }

    #mobileHeader {
        display: block;
        background-color: #BEAE6D;
        margin-bottom: 0;
    }

    #mobileLogo {
        width: 100px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .menuContainer {
        display: inline-block;
        cursor: pointer;
        position: absolute;
        margin-top: 20px;
        margin-left: 20px;
        margin-bottom: 0;
      }
      
      .bar1, .bar2, .bar3 {
        width: 35px;
        height: 5px;
        background-color: #333;
        margin: 6px 0;
        transition: 0.4s;
      }
      
      .change .bar1 {
        transform: translate(0, 11px) rotate(-45deg);
      }
      
      .change .bar2 {opacity: 0;}
      
      .change .bar3 {
        transform: translate(0, -11px) rotate(45deg);
      }

    #mobileMenu {
        display: none;
        background-color: #252525;
        margin-top: 0;
        margin-bottom: 0;
    }

    #mobileMenu.displayed {
        display: block;
        background-color: #252525;
        margin-top: 0;
        margin-bottom: 0;
    }

    a {
        color: #BEAE6D;
        font-weight: bold;
        text-decoration: none;
        font-size: 25px;
    }

    li {
        padding-top: 10px;
    }

    ul {
        margin: 0;
        list-style-type: none;
    }

    #lastLi {
        padding-bottom: 20px;
    }

    #headerSection {
        margin-top: 40px;
        width: 100%;
        height: 80%;
        background: radial-gradient(circle at center, #4E7, #E9EBF2 40%);
        position: relative;
    }
    
    #headerSection::before {
        content: "Allow Us To Fix Your Problems";
        font-size: 50px;
        color: white;
        position: absolute;
        top: 47%;
        left: 50%;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
        text-align: center;
        opacity: 0;
        animation: fade-in 2.5s forwards;
        letter-spacing: 1px;
    }
    
    @keyframes fade-in {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    #services {
        display: none;
    }

    #mobileServices {
        display: block;
        align-items: center;
        text-align: center;
    }

    #mobileServices h1 {
        padding-top: 20px;
        padding-bottom: 10px;
        font-size: 20px;
    }

    #mobileServices p {
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #topServicesImg {
        width: 90%;
        margin-bottom: 20px;
    }

    #bottomServicesImg {
        width: 90%;
        margin-bottom: 20px;
    }

    #topServices {
        background-color: #3E3B2D;
        color: #ffffff;
    }

    #bottomServices {
        background-color: #BEAE6D;
    }

    #contact {
        display: none;
    }

    #mobileContact {
        display: block;
    }

    #mobileMapContainer {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #mobileContactText {
        margin-top: 20px;
        font-size: 12px;
        margin-left: 10px;
    }

}