
/* Font Section */
.protest-riot-regular {
    font-family: 'Protest Riot', sans-serif;
    font-weight: 800;
    font-style: normal;
}

.noto-sans-700 {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-400 {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-600-bold {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: bold;
    font-variation-settings:
        "wdth" 100;
}

/* Body Styling and Universal Styles */
*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
ww
/* NavBar and CTA Section */
.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.logo {
    width: 60px;
    height: 60px;
    color: green;
}

.navigation-header {
    padding: 0 20px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

nav {
    width: 100%;
    padding-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container>a {
    color: green;
    text-decoration: none;
    font-weight: 700;
    font-size: 30px;
}

.navigation-items {
    display: flex;
    gap: 40px;
}

/* Animation Menu Items */

.navigation-items>a,
.cta-container>.auth-no>a {
    color: darkgrey;
    text-decoration: none;
    font-size: 16px;
}

.navigation-items>a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: darkgreen;
    transition: width .3s;
}

.navigation-items>a:hover::after {
    width: 100%;
    transition: width .3s;
}

.navigation-items>a:hover {
    color: darkgreen;
}

.navigation-items>a.current {
    color: darkgreen;
}

.navigation-items>a.current::after {
    width: 100%;
}

/* Hamburgers */

.hamburger {
    display: none;
    font-size: 35px;
    font-weight: 800;
    color: black;
    background-color: lightgray;
    align-items: center;
    border: 0.1px;
    border-radius: 10px;
    padding: 5px;
    padding-left:10px;
    padding-right:10px;
}

/* CTA Container */
.cta-container {
    display: flex;
    gap: 20px;
}

.cta-container>.auth-no>a.cta-login {
    color: darkgreen
}


/* Responsive Hamburgers */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .hamburger #closeHam {
        display: none;
    }

    .navigation-items {
        display: none;
    }

    .cta-container {
        display: none;
    }

    .navigation-header {
        justify-content: space-between;
    }
}

/* Hero Section */
.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 100px 20px;
    text-align: center;
}

.hero-cta>button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: green;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .3s;
}

.hero-cta>button:hover {
    background-color: darkgreen;
}

.hero-disable {
    display: none;
}

/* Recipe Showcase Section */
.recipe-showcase {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}



/* Main Recipe ShowCase */
.main-showcase {
    width: 100%;
    height: 100%;
    max-width: 700px;
    align-items: stretch;
}
/* Large Recipe Card */
.recipe-card-lg{
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height:auto
}

.recipe-card-lg > .recipe-card-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-card-lg > .recipe-card-content {
    position: relative;
    width: 100%;
    padding: 40px;
    flex-grow: 1;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Secondary Recipe Showcase */
.secondary-showcase {
    width: 100%;
    max-width: 700px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
}

.sm-recipe-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 20px;
    flex-wrap: wrap;
}

/* Small Recipe Card */
.recipe-card-sm {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.recipe-card-sm > .recipe-card-content {
    position: relative;
    width: 100%;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.recipe-card-sm > .recipe-card-img>img {
    width: 100%;
    object-fit: cover;
}

/* Footer */

.footer {
    position: relative;
    bottom: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    color: black;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-content>p{
    font-size: 14px;
}

.footer-content>a {
    color: green;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

/* Colors for the footer */

.default {
    background-color: lightgray;
}

.darkgreen {
    background-color: darkgreen;
}

.green {
    background-color: green;
}

.blue {
    background-color: blue;
}

.red {
    background-color: red;
}

.cyan {
    background-color: cyan;
}
