/* Fonts & Imports */
@font-face {
font-family: 'Quicksand';
src: url(/pages/Gastro%20Archive/assets/fonts/Quicksand_Bold.otf);

}

/* Universal */
*, *::before, *::after {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Quicksand', sans-serif;

}

/* Root */
:root {
    /* Color Theme */
    --theme__clr_bluish_gray: #486887;
    --theme__clr_forest_green: #688748;
    --theme__clr_light_brown: #876748;
    --theme__clr_light_blueGray: #b5c2cf;
    --theme__clr_lighter_blueGray: #dae0e7;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: white;
}
header {
    width: 100%;
    height: 200px;
    background-color: var(--theme__clr_light_blueGray);
    margin: 0;
    padding: 2rem;
}
nav {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}
nav ul {
    list-style-type: none;
}
nav ul li {
    
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}
.nav_item {
    marker: none;
}
a {
    text-decoration: none;
    color: white;
}
a:visited {
    color: white;
}
.mega-wrapper {
    width: fit-content;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}
.mega-logo-wrapper {
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
}
.mega-logo-wrapper span {
    width: 100%;
    height: auto;
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 2px var(--theme__clr_bluish_gray);
}
/* Navigation Image Wrapper */
.nav-img-wrapper {
    width: 100%;
    height: auto;
    display: inline-block;
}
.nav-img-wrapper img {
    width: 100px;
    height: auto;
    object-fit: cover;
}

/* Featured Section */
.feat-wrapper {
    width: 75%;
    min-width: 375px;
    height: auto;
    margin: 1rem auto;
    padding: 1rem 2rem;
    background: white;
}

.feat-wrapper h2 {
    width: 100%;
    margin: 0 0 1rem;
    color: white;
    text-shadow: 0 2px 2px var(--theme__clr_bluish_gray);
    letter-spacing: .3rem;
}
.feat-carousel-wrapper {
    width: 375px;
    height: auto;
    display: flex;
}
.feat-img-wrapper {
    width: 50%;
    height: auto;
    position: relative;
    transition: all 700ms ease;
}
.feat-img-wrapper:hover {
    width: 200%;
    height: auto;
}
.feat-img-wrapper:hover > .feat-img-detail-wrapper {
    display: block;
    opacity: 1;
}
.feat-img-wrapper img {
    width: 375px;
    height: 375px;
    border-radius: 50%;
    object-fit: cover;
}
.feat-img-detail-wrapper {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem 2rem;
    opacity: 0;
    display: none;
    position: absolute;
    top: 50%;
    background: rgba(0, 0, 0, .5);

}
.feat-img-detail-wrapper h4 {
    color: white;
    font-size: 1.5rem;
    margin: .5rem 0;
}
.feat-img-detail-wrapper p {
    color: var(--theme__clr_light_blueGray);
    margin: .25rem 0;
}
.feat-img-detail-wrapper button {
    border: none;
    outline: none;
    background: transparent;
    color: var(--theme__clr_lighter_blueGray)
}
.feat-expand-wrapper {
    width: 100%;
    height: auto;
    padding: .5rem 1rem;
    display: none;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width:873px) {
    .navbar {
        
    }
    button[aria-expanded="false"] {

    }
    button[aria-expanded="true"] {

    }
    button[aria-expanded="true"] ~ .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feat-carousel-wrapper {
    width: 375px;
    height: auto;
    display: flex;
    flex-direction: column;
}
.feat-img-wrapper img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}
}