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

html {
    scroll-behavior: smooth;
}

html body {
    font-family: "Quicksand", sans-serif;
}

a {
    text-decoration: none;
    color: #FFF;
}

header {
    display: flex;
    justify-content: space-between;
    background-color: #2ebfab;
    padding: 10px;
    align-items: center;
    position: sticky;
    top: 0;
}

.logoBannerImg {
    height: 50px;
    margin-left: 200px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
    background-color: #2ebfab;
    margin-right: 200px;
    padding: 20px;
    font-size: 20px;
}

li a {
    text-decoration: none;
    color: #FFF;
}

#navBtn {
    display: none;
}

main {
    margin-bottom: 50px;
}

div.heroBanner {
    background: url("../assets/heroimage.JPEG");
    height: 90vh;
    width: 100%;
    align-content: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    scroll-margin-top: 85px;
}

div.heroContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}

div.heroContent h1 {
    font-size: 85px;
    line-height: 100px;
    color: #fff;
    text-shadow: 0 0 20px #053a33;
}

button {
    all: unset;
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    text-align: center;
    color: #FFF;
    padding: 10px;
    margin: 10px;
    height: 30px;
    width: 250px;
    border-radius: 10px;
    background-color: #2ebfab;
    box-shadow: 0 0 10px #053a33;
}

#about-me {
    scroll-margin-top: 90px;
}

.logoImg {
    width: 150px;
    display: flex;
    margin: 10px auto;
}

h2 {
    text-align: center;
    line-height: 15px;
}

h2.top-recipes {
    line-height: 75px;
}

main section {
    margin: 0 200px;
}

.sectionContent {
    margin: 50px 0;
    font-size: 22px;
    line-height: 30px;
}

div.sectionContent p {
    font-size: 22px;
}

.card-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-evenly;
    background-color: #2ebfac6d;
    padding: 20px;
    border-radius: 10px;
    margin: 0 200px;
    margin-top: 60px;
}

.card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 20px;
    padding: 16px;
    background-color: #FFF;
}

.card-header {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.card-img {
    width: 265px;
}

.accordion {
    margin: 0;
    padding: 0;
}

.accordion-item {
    margin-bottom: 10px;
}

button.accordion-button {
    font-size: 13px;
    height: 15px;
    width: 225px;
    box-shadow: none;
}

.accordion-content {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
    border-top: none;
}

.accordion-description {
    font-size: 13px;
    margin: 10px 25px;
}

.accordion-button.active {
    background-color: #2ebfac6d;
}

footer {
    background-color: #2ebfab;
    color: #fff;
}

footer ul {
    list-style: none;
}

#contact {
    padding: 50px 0;
    margin: 0 200px;
    display: flex;
    flex-direction: column;
}

.socialIcons {
    display: flex;
    margin: auto;
    margin-bottom: 20px;
}

.socialIcons a {
    margin-right: 25px;
    text-decoration: none;
    background-color: #2ebfab;
}

.socialIcons a i {
    font-size: 2em;
    color: #fff;
    opacity: 0, 9;
}

.footerNav {
    text-align: center;
}

.footerNav a {
    text-decoration: underline;
}

@media (max-width: 1200px) {

    .logoBannerImg {
        margin-left: 150px;
    }

    nav ul {
        margin-right: 150px;
        gap: 60px;
    }

    div.heroContent {
        gap: 20px;
    }

    div.heroContent h1 {
        font-size: 60px;
        line-height: 20px;
    }

    div.heroContent p {
        font-size: 48px;
    }

    .card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 50px;
        margin-top: 60px;
    }

    .card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-header {
        margin-top: 10px;
    }
}

@media (max-width: 1000px) {

    .logoBannerImg {
        margin-left: 50px;
    }

    nav ul {
        margin-right: 50px;
        gap: 20px;
    }

    div.heroContent {
        gap: 20px;
    }

    div.heroContent h1 {
        font-size: 50px;
        line-height: 20px;
    }

    div.heroContent p {
        font-size: 40px;
    }

    .card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 50px;
        margin-top: 60px;
    }

    .card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-header {
        margin-top: 10px;
    }
}

@media (max-width: 700px) {

    .logoBannerImg {
        margin-left: 50px;
    }

    #navBtn {
        all: unset;
        display: block;
        color: #FFF;
        margin-right: 50px
    }

    #navBtn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
    }

    div.heroContent {
        gap: 20px;
    }

    div.heroContent h1 {
        font-size: 25px;
        line-height: 0px;
    }

    div.heroContent p {
        font-size: 20px;
    }

    main section {
        margin: 0 50px;
    }

    .logoImg {
        height: 75px;
    }

    .card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 50px;
        margin-top: 60px;
    }

    .card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-header {
        margin-top: 10px;
    }

    .footerNav {
        font-size: 15px;
    }
}
