nav, #nav {
    flex-direction: column;
    height: fit-content;
}

#nav a {
    margin: 0;
}

footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 200px 1fr 50px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

#footer-logo, #footer-social, #footer-contact, #footer-copy {
    grid-area: unset;
}

section {
    width: calc(100% - 40px);
    padding: 20px;
    background-attachment: scroll !important;
}

#sec-logo {
    flex-direction: column;
    row-gap: 100px;
    text-align: center;
}

#sec-logo img {
    height: auto;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#sec-aboutme {
    flex-direction: column;
    row-gap: 100px;
    text-align: center;
}

#sec-aboutme video {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#sec-aboutme img {
    width: 500px;
    max-width: calc(100% - 50px);
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#sec-services {
    grid-template-columns: 1fr;
    grid-template-rows: 200px repeat(2, 1fr);
}

#sec-services p {
    padding-left: 10px;
    padding-right: 10px;
}

#sec-services-header {
    grid-area: unset;
}

#sec-services-drummer {
    grid-area: unset;
}

#sec-services-dj {
    grid-area: unset;
}

#sec-photos img {
    width: calc(100% - 30px);
    height: auto;
}

#sec-calendar iframe {
    width: calc(100% - 30px);
}

#sec-contact {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

#sec-contact div {
    border-radius: 0;
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 50px;
}

#sec-dj {
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

#sec-dj img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: calc(100% - 100px);
}

form {
    width: 100%;
}


input[type=text], textarea {
    width: 100%;
}