* {
    font-family: "Philosopher";
    margin: 0px;
    padding: 0px;
    color: black;
}

body {
    background-color: rgb(255, 250, 231);
}

/* Header */
.header-img {
    width: 120px;
    aspect-ratio: 1/1;
}

.menu-img {
    width: 120px;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navoptions {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 60px;
}

.navtext {
    color: rgb(255, 250, 231);
    font-size: 2.5rem;
    padding: 0px 32px;

}

header {
    background-color: rgb(48, 10, 0);
    padding: 16px;
}

/* Hero Image */
.hero {
    background-image: url(/images/washbowl.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 372px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.title {
    display: block;
    font-size: 5rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: rgb(48, 10, 0);
    padding: 16px 0px;
    text-align: center;
}

.pagetitle {
    display: block;
    font-size: 5rem;
    -webkit-text-stroke: 2px rgb(48, 10, 0);
    color: rgb(255, 250, 231);
    padding: 16px 0px;
    text-align: center;
}

.wholesection {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.card-img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4
}

p {
    color: white;
    font-size: 1.2rem;
    line-height: 36px;
    padding-bottom: 16px;
}

.morebutton {

    font-family: "Noto Serif", serif;
    font-weight: bold;
    padding: 16px 24px;
    color: white;
    font-size: 1.5rem;
    background-color: rgb(200, 98, 34);
    border-radius: 16px;
    text-align: center;
}

/* Links & Button Links */
a:link {
    color: rgb(255, 250, 231);
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: rgb(255, 250, 231);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: rgb(255, 250, 231);
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color: rgb(255, 250, 231);
    background-color: transparent;
    text-decoration: none;
}

.cardssections {
    display: flex;
    flex-direction: column;
    width: 90%;

}

.contentcard {
    padding: 24px 16px;
    margin: 24px;
    background-color: rgb(48, 10, 0);
    border-radius: 16px;
    gap: 16px;
    width: 100%
}

.cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    margin: 8px;
}

/* footer */
.footerlogo {
    object-fit: contain;
    aspect-ratio: 1/1;
    width: 100%;
    padding-top: 32px;
}

.footer {
    background-color: rgb(48, 10, 0);
    padding: 32px;
}

.footertext {
    font-family: "Noto Serif", serif;
    color: rgb(255, 250, 231);
}

.space {
    color: rgb(48, 10, 0);
}

/* Media Queries */
@media(max-width:699px) {
    .navoptions {
        padding: 0px 24px;
    }

    .navtext {
        font-size: 1.5rem;
        padding: 0px 8px;
        display: none;
    }
}

@media(min-width:700px) {

    .navoptions {
        padding: 0px 32px;
    }

    .navtext {
        font-size: 1.8rem;
        padding: 0px 8px;
    }

    .title,
    .pagetitle {
        font-size: 6rem;
    }

    .hero {
        height: 450px;
    }

    .header-img,
    .menu-img {
        width: 160px;
    }
    .menu-img{
        display: none;
    }

    .cardssections {
        width: 90%
    }

    .contentcard {
        padding: 24px 16px;
        display: flex;
        width: 100%;
        flex-direction: row;
        align-items: center;
    }

    .card-img {
        border-radius: 16px;
        align-self: center;
        width: 50%;
        object-fit: cover;
        aspect-ratio: 2/3
    }

    .cards {
        margin: 8px;
        justify-content: space-between;
    }


    p {
        font-size: 1.5rem;
        line-height: 48px;
    }

    .morebutton {
        padding: 24px 32px;
        font-size: 1.5rem;

    }
}

@media(min-width:1000px) {

    .navoptions {
        padding: 0px 60px;
    }

    .navtext {
        font-size: 2.5rem;
        padding: 0px 32px;

    }

    .title,
    .pagetitle {
        font-size: 7rem;
    }

    .hero {
        height: 550px;
    }

    .header-img,
    .menu-img {
        width: 200px;
    }

    .menu-img{
        display: none;
    }

    .cardssections {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .contentcard {
        padding: 24px 16px;
        display: flex;
        width: 40%;
        flex-direction: column;
        align-items: stretch;
    }

    .card-img {
        border-radius: 16px;
        align-self: center;
        width: 80%;
        object-fit: cover;
        aspect-ratio: 4/5
    }

    .cards {
        margin: 8px;
        gap: 16px;
        justify-content: space-between;
    }

    p {
        font-size: 1.8rem;
        line-height: 56px;
    }

    .morebutton {
        padding: 32px 32px;
        font-size: 2.2rem;

    }
}