@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #536942;
    --secondary: #ffd936;
    --white: #efefef;
}

body {
    font-family: "DM Sans,sans-seriff";
    color: var(--primary);
}

#main {
    background-image: url("/imgs/piano\ pic.jpg");
    min-height: 70vh;
    background-position: bottom center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;

}

.container {
    max-width: 1200px;
    padding: 16px;
    margin: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;

}

.section-title h1 {
    font-size: 50px;
    text-align: center;

}

.section-title .line {
    width: 180px;
    height: 4px;
    border: 10px;
    background: var(--secondary);
    margin: auto;

}

.about-content h4 .line {
    width: 150px;
    height: 4px;
    border: 10px;
    background: var(--secondary);
    margin: auto;

}

.services {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;

}

.logo {
    width: 89px;

}

.footerLogo {
    width: 89px;
}



.service {
    width: 350px;
}

.service img {
    max-width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
}


.service img:hover {
    transform: scale(1.05);
}

#testimonial {

    background: rgb(240, 232, 232);
}

#testimonial .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    gap: 30px;
    padding: 50px 16px;


}

#testimonial .container img {
    width: 350px;
    display: inline;
}

#testimonial h1 {
    font-size: 30px;
    font-family: 'Forum', sans-serif;
    text-align: center;

}



.about-image img {
    width: 350px;

}

#testimonial .profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about-us .container .about-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;


}

#about-us .container .about-content h1 {
    font-family: "Forum", sans-serif;
    font-size: 30px;
}

#about-us .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;

}

#questions {
    min-height: 500px;
    background-image: url('/imgs/mixing\ board.jpg');
    background-position: bottom center;
    background-size: cover;
}

#questions .container {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    height: 500px;
    text-align: center;
}

#questions h1 {
    font-size: 50px;

}

footer .container {
    display: flex;
    padding: 40px 16px;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    color: rgb(16, 77, 16);
}


.about-content h4 {
    font-size: 40px;
}

.menu-btn {

    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    width: 36px;
    color: var(--white);
}

a {
    text-decoration: none;
}


.nav-list li a {
    color: var(--white);
}

.footer-links li a {
    color: #536942;
}

.btn {
    padding: 12px 20px;
    background: transparent;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: bold;

}

.btn-primary {
    border: none;
    background: var(--secondary);
    color: var(--primary);

}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    color: var(--white);
}

.main-content .intro-heading {
    font-size: 50px;
}

.main-content .main-heading {
    font-size: 55px;
    margin-top: -20px;
}

.main-content p {
    margin-bottom: 10px;
    max-width: 250px;
}

@media screen and (max-width: 520px) {
    .nav-list {
        flex-direction: column;
        background: gray;
        position: absolute;
        top: 0;
        right: -900px;
        width: 80%;
        height: 100vh;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .nav-list li:not(:last-child) {
        text-align: left;
        width: 100%;
        padding: 10px 30px;
        border-bottom: 1px solid var(--white);

    }

    .nav-list.active {
        right: 0;
    }

    .menu-btn {
        display: block;
        color: var(--white);

    }

    #about-us .container {
        flex-direction: column;
        gap: 30px;
    }

    footer .container {
        flex-direction: column;
        gap: 16px;
    }

    .main-heading h1 {
        flex-wrap: wrap;
        flex-direction: column;
    }

}

.profile h4 {
    color: #ffd936;
}

.container p {
    color: #ffd936;
}