:root {
    --clr-green-100: #a7cc39;
    --clr-green-200: #98c539;
    --clr-green-400: #89b83a;
    --clr-green-600: #5e903b;
    --clr-green-900: #43534c;

    --clr-purple-600: #582467;

    --clr-neutral-100: #f0f0f0;
    --clr-neutral-900: #3d3755;

    --ff-primary: ZZZ;
    --ff-secondary: ZZZ, system-ui;

    --ff-body: var(--ff-secondary);
    --ff-heading: var(--ff-primary);

    --fs-300: .875rem;
    --fs-400: 1rem;
    --fs-500: 2rem;
    --fs-600: 3rem;
    --fs-700: 5rem;
    --fs-800: 7rem;
    --fs-900: 9rem;

    --fs-body: var(--fs-400);
    --fs-heading: var(--fs-800);
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

/* Set core body defaults */
body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
    max-width: 100%;
    display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Utility Classes */

.split-columns {
    display: grid;
    max-width: 80%;
    margin: auto;
    align-items: center;
    gap: 1rem;
}






/* General Styling */

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-neutral-100);
    color: var(--clr-neutral-900);
    font-family: var(--ff-secondary);
}

main-content {
    width: 100vw;
}

.btn-primary {
    color: var(--clr-neutral-100);
    background-color: var(--clr-purple-600);
    font-size: var(--fs-300);
    width: 190px;
    padding: 1rem;
    border: none;
    border-radius: 100vh;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background-color: #753088;
    transition: background-color 250ms ease;
}

.btn-primary:active {
    background-color: #8F3AA6;
    transition: background-color 250ms ease;
}






/* Primary Header */

.container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

header {
    background: var(--clr-purple-600);
    padding: 1em 0;
    text-align: center;
}

.primary-nav {
    width: 100%;
}

.nav-toggle {
    cursor: pointer;
    border: 0;
    width: 3em;
    height: 3em;
    padding: 0em;
    border-radius: 50%;
    background-color: var(--clr-green-600);
    color: var(--clr-neutral-100);
    transition: background-color 250ms ease;

    position: absolute;
    top: 21px;
    right: 0;
}

.nav-toggle:hover {
    background-color: var(--clr-green-400);
}

.nav-toggle:active {
    background-color: var(--clr-green-100);
}

.hamburger {
    width: 50%;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    margin: 0 auto;
    height: 3px;
    background: var(--clr-neutral-100);
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 100%;
}

.hamburger::before {
    transform: translateY(-6px);
}

.hamburger::after {
    transform: translateY(3px);
}

.primary-nav {
    visibility: hidden;
    height: 0;
}

.nav--visible {
    visibility: visible;
    height: auto;
    position: relative;
}

.nav-logo img {
    display: inline-block;
    height: 90px;
}

.primary-nav ul {
    padding: 0;
}

.primary-nav li {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--clr-neutral-100);
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: .125rem;
}

.nav-item+.nav-item {
    padding-top: 2rem;
}

.nav-list+.nav-list {
    padding-top: 4rem;
}

.nav-link:hover {
    color: var(--clr-green-400);
    transition: color 250ms ease;
}

.nav-link:active {
    color: var(--clr-green-100);
    transition: color 250ms ease;
}


@media (min-width: 800px) {


    .nav-toggle {
        display: none;
    }

    .primary-nav {
        visibility: visible;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        height: auto;
    }

    .nav-logo {
        margin-right: 2rem;
        flex-shrink: 0;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }


    .nav-item+.nav-item {
        padding-top: 0rem;
        margin-left: 4rem;
    }

    .nav-list+.nav-list {
        padding-top: 0rem;
        margin-left: auto;
    }

    .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}



/* Hero Section */

.hero {
    background-image: url(./images/desk-clutter.jpg);
    background-position: 50% 70%;
    background-size: cover;
    position: relative;
    width: 100%;
    min-height: 60vh;
}

.hero-content {
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    left: 0;
    top: 0vh;
    background: rgba(61, 55, 85, 0.95);
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 10rem;
}

.hero-text {
    z-index: 3;
    color: var(--clr-neutral-100);
    max-width: 60%;
}

.hero-text h1 {
    color: var(--clr-green-100);
    font-family: 'Lora', system-ui;
    font-size: 5vmax;
    padding-bottom: 3rem;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3)
}

.hero-text p {
    font-size: 1.5vmax;
    font-weight: 200;
    opacity: .9;
}

@media (max-width: 1100px) {
    .hero-text {
        max-width: 80%;
    }

    .hero-text h1 {
        font-size: 7vmax;
    }

    .hero-text p {
        font-size: 2.25vmax;
    }
}


/* Join Section */

.join-content {
    display: flex;
    width: 100%;
    height: auto;
}

.join-header {
    color: var(--clr-purple-600);
    text-align: center;
}

.join-header h2 {
    font-family: 'Lora', system-ui;
    font-size: 3vmax;
    margin-bottom: 1.5rem;
}

.join-header h3 {
    color: var(--clr-neutral-900);
    font-weight: 200;
    font-style: italic;
    font-size: 1.5vmax;
    margin-bottom: 1rem;
}

.join-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.join-item {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-block: 2rem;
}

.join-item+.join-item {
    border-top: 2px solid var(--clr-purple-600);
}

.join-item p {
    font-size: 1.25vmax;
    padding-bottom: 1.5rem;
}

.join-left,
.join-right {
    flex: 0 0 50%;
}

.join-left {
    padding: 3rem;
}

.join-right {
    background: url(./images/coffee-flowers.jpg) 0 0 no-repeat;
    background-position: 35%;
    background-size: cover;
}

@media (max-width: 1100px) {
    .join-content {
        flex-direction: column;
    }

    .join-list {
        flex-direction: column;
    }

    .join-header h2 {
        font-size: 4vmax;
    }

    .join-header h3 {
        font-size: 2.25vmax;
    }

    .join-item p {
        font-size: 2vmax;
    }
}


/* About Section */

.about {
    background-image: url(./images/coffee-magazine.jpeg);
    background-size: cover;
    width: 100%;
    height: auto;
}

.about-wrapper {
    background: rgba(61, 55, 85, 0.9);
    background-size: contain;
}

.about-content {
    max-width: 80%;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.about-header {
    color: var(--clr-neutral-100);
    text-align: center;
}

.about-header h2 {
    color: var(--clr-green-100);
    font-family: 'Lora', system-ui;
    font-size: 3vmax;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.about-header h3 {
    font-size: 1.5vmax;
    font-weight: 200;
    margin-bottom: 3rem;
    margin-inline: auto;
    max-width: 70%;
    opacity: 0.9;
}

.about-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-section {
    flex: 0 0 32%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--clr-neutral-100);
    min-height: 40vh;
    text-align: center;
    padding: 2rem;
    border-radius: 1vmax;
}

.about-section h3 {
    color: var(--clr-purple-600);
    font-size: 2vmax;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.25vmax;
}

@media (max-width: 1100px) {
    .about-header h2 {
        font-size: 4vmax;
    }

    .about-header h3 {
        font-size: 2.25vmax;
        max-width: 100%;
    }

    .about-section h3 {
        font-size: 2.25vmax;
    }

    .about-section p {
        font-size: 1.5vmax;
    }
}

@media (max-width: 800px) {
    .about-main {
        flex-direction: column;
    }

    .about-section {
        min-height: 20vh;
        width: 100%;
    }

    .about-section+.about-section {
        margin-top: 2rem;
    }
}


/* Stats Section */

.stats-content {
    display: flex;
    width: 100%;
    height: auto;
}

.stats-left,
.stats-right {
    flex: 0 0 50%;
}

.stats-left {
    background: url(./images/girl-magazine.jpg) 0 0 no-repeat;
    background-position: 75%;
    background-size: cover;
}

.stats-right {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.stats-section {
    text-align: center;
    width: 100%;
    font-size: 2vmax;
    font-weight: 200;
    font-style: italic;
    padding-block: 2rem;
}

.stats-section+.stats-section {
    border-top: 2px solid var(--clr-purple-600);
}

.stats-br {
    display: block;
}

.stats-lg {
    color: var(--clr-purple-600);
    font-weight: 400;
    font-style: normal;
    font-size: 4vmax;
}

@media (max-width: 1100px) {
    .stats-section {
        font-size: 3vmax;
    }

    .stats-lg {
        font-size: 5vmax;
    }

}

@media (max-width: 800px) {
    .stats-content {
        flex-direction: column;
    }

    .stats-right {
        flex-direction: row;
        flex: 0 0 30%;
        padding-inline: 1rem;
    }

    .stats-section {
        padding-inline: 2rem;
        font-size: 1.75vmax;
    }

    .stats-section+.stats-section {
        border-top: none;
    }

    .stats-section:nth-of-type(2) {
        border-inline: 2px solid var(--clr-purple-600);
    }

    .stats-lg {
        font-size: 3.5vmax;
    }
}



/* Footer */


.primary-footer {
    background: var(--clr-purple-600);
    padding: 1em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-neutral-100);
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: .125rem;
}

.footer-wrapper {
    text-align: center;
}

.footer-logo {
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    margin: 0 auto;
    height: 90px;
}

.footer-email {
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 5%;
}

.footer-nav-item {
    list-style: none;
    margin-bottom: 1rem;
}

.footer-copyright {
    margin-bottom: 1rem;
}

.footer-nav-link {
    text-decoration: none;
    color: var(--clr-neutral-100);
}

.footer-nav-link:hover {
    color: var(--clr-green-400);
    transition: color 250ms ease;
}

.footer-nav-link:active {
    color: var(--clr-green-100);
    transition: color 250ms ease;
}

.primary-footer svg path:hover {
    fill: var(--clr-green-400);
    transition: fill 250ms ease;
}

.primary-footer svg path:active {
    fill: var(--clr-green-100);
    transition: fill 250ms ease;
}

@media (max-width: 1100px) {
    .footer-email {
        max-width: 10%;
    }
}


/* Alt Pages */


/* Submissions */

.hero-sub {
    background-image: url(./images/open-books.jpeg);
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    width: 100%;
    min-height: 30vh;
}

.hero-content-sub {
    padding-block: 8rem;
}

.hero-sub h1 {
    padding-bottom: 0;
}




.sub {
    background-color: #E0E0E0;
    padding: 2rem;
    width: 100%;
    height: auto;
}

.sub-main {
    max-width: 80%;
    margin: 0 auto;
}

.sub-wrapper {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.sub-heading {
    color: var(--clr-neutral-900);
    font-weight: 200;
    font-style: italic;
    font-size: 1.5vmax;
    margin: 0 auto;
    margin-bottom: 3rem;
    max-width: 70%;
    text-align: center;
}

.sub-btn {
    font-size: 1.125rem;
    width: 200px;
}

.sub-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--clr-neutral-100);
    min-height: 30vh;
    text-align: center;
    padding: 2rem;
    border-radius: 1vmax;
}


.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3% 3%;
    grid-auto-flow: row;
    grid-template-areas:
        "pets photos"
        "recipes creatives";
}

.pets {
    grid-area: pets;
}

.photos {
    grid-area: photos;
}

.recipes {
    grid-area: recipes;
}

.creatives {
    grid-area: creatives;
}







.sub-img {
    border-radius: 50%;
    max-width: 120px;
    height: auto;
    display: block;
}

@media (max-width: 1100px) {
    .sub-content h2 {
        font-size: 2.25vmax;
    }
}

@media (max-width: 800px) {
    .grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-template-areas:
            "pets"
            "photos"
            "recipes"
            "creatives";
    }

    .sub-wrapper {
        padding-bottom: 8rem;
    }

    .sub-heading {
        max-width: 85%;
    }

    .sub-main {
        max-width: 90%;
    }
}

.else-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-block: 3rem;
}

.else-content h2 {
    font-family: 'Lora', system-ui;
    font-size: 3vmax;
    color: var(--clr-purple-600);
    margin-bottom: 1.5rem;
}

.else-content p {
    color: var(--clr-neutral-900);
    font-weight: 200;
    font-style: italic;
    font-size: 1.5vmax;
    margin: 0 auto;
    margin-bottom: 2.5rem;
    max-width: 80%;
    text-align: center;
}

.else-content a {
    margin-bottom: 1rem;
}

@media (max-width: 1100px) {
    .else-content h2 {
        font-size: 4vmax;
    }

    .else-content p {
        font-size: 2vmax;
    }
}

@media (max-width: 800px) {
    .else-content p {
        max-width: 90%;
    }
}



/* Advertisers */

.hero-ads {
    background-image: url(./images/woman-reading-magazine.jpeg);
    background-size: cover;
    background-position: 50% 65%;
    position: relative;
    width: 100%;
    min-height: 30vh;
}

.hero-content-ads {
    padding-block: 8rem;
}

.hero-ads h1 {
    padding-bottom: 0;
}




.ads-content {
    display: flex;
    width: 100%;
    height: auto;
}

.ads-header {
    color: var(--clr-purple-600);
    text-align: center;
}

.ads-header h2 {
    font-family: 'Lora', system-ui;
    font-size: 3vmax;
    margin-bottom: 1.5rem;
}

.ads-list h3 {
    color: var(--clr-neutral-900);
    font-weight: 200;
    font-style: italic;
    font-size: 1.5vmax;
    margin-bottom: 1.5rem;
}

.ads-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ads-item {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-block: 2rem;
}

.ads-item:first-of-type {
    border-bottom: 2px solid var(--clr-purple-600);
    padding-top: 0rem;
}

.ads-item:last-of-type {
    padding-bottom: 1.5rem;
}

.ads-item p {
    font-size: 1.25vmax;
    padding-bottom: 1.5rem;
}

.ads-left,
.ads-right {
    flex: 0 0 50%;
}

.ads-left {
    padding: 3rem;
}

.ads-right {
    background: url(./images/coffee-flowers.jpg) 0 0 no-repeat;
    background-position: 35%;
    background-size: cover;
}

@media (max-width: 1100px) {
    .ads-content {
        flex-direction: column;
    }

    .ads-list {
        flex-direction: column;
    }

    .ads-header h2 {
        font-size: 4vmax;
    }

    .ads-list h3 {
        font-size: 2.25vmax;
    }

    .ads-item p {
        font-size: 2vmax;
    }
}



@media (max-width: 600px) {

    .hero-content-ads,
    .hero-content-sub {
        padding-block: 6rem;
    }

}














/* About Us */

.hero-about {
    background-image: url(./images/designers-team.jpg);
    background-size: cover;
    background-position: 50% 75%;
    position: relative;
    width: 100%;
    min-height: 60vh;
}

.hero-content-about {
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    left: 0;
    top: 0vh;
    background: rgba(61, 55, 85, 0.95);
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 10rem;
}

.hero-text-about {
    z-index: 3;
    color: var(--clr-neutral-100);
    max-width: 60%;
}

.hero-text-about h1 {
    color: var(--clr-green-100);
    font-family: 'Lora', system-ui;
    font-size: 5vmax;
    padding-bottom: 3rem;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3)
}

.hero-text-about p {
    font-size: 1.5vmax;
    font-weight: 200;
    opacity: .9;
}

@media (max-width: 1100px) {
    .hero-text-about {
        max-width: 80%;
    }

    .hero-text-about h1 {
        font-size: 7vmax;
    }

    .hero-text-about p {
        font-size: 2.25vmax;
    }
}






.staff-content {
    display: flex;
    width: 100%;
    height: auto;
}

.staff-header {
    color: var(--clr-purple-600);
    text-align: center;
}

.staff-header h2 {
    font-family: 'Lora', system-ui;
    font-size: 3vmax;
    margin-bottom: 1.5rem;
}

.staff-header h3 {
    color: var(--clr-neutral-900);
    font-weight: 200;
    font-style: italic;
    font-size: 1.25vmax;
    margin-bottom: 1rem;
}

.staff-header h3:first-of-type {
    margin-top: 2rem;
}

.staff-header h3 a {
    text-decoration-color: transparent;
    color: var(--clr-purple-600);
    transition: all 250ms ease;
}

.staff-header h3 a:hover {
    color: #753088;
    text-decoration-color: #753088;
}

.staff-header h3 a:active {
    color: #8F3AA6;
    text-decoration-color: #8F3AA6;
}

.staff-list {
    display: flex;
    flex-direction: column;
}

.staff-item {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-block: 1rem;
}

.staff-item span {
    font-weight: bold;
}

.join-item p {
    font-size: 1.25vmax;
    padding-bottom: 1.5rem;
}

.staff-left,
.staff-right {
    flex: 0 0 50%;
}

.staff-left {
    padding: 3rem;
}

.staff-right {
    background: url(./images/teamwork-fistbump.jpg) 0 0 no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

@media (max-width: 1100px) {
    .staff-content {
        flex-direction: column;
    }

    .staff-list {
        flex-direction: column;
    }

    .staff-header h2 {
        font-size: 4vmax;
    }

    .staff-header h3 {
        font-size: 2vmax;
    }

    .staff-item p {
        font-size: 2vmax;
    }

    .join-item p {
        font-size: 1.5vmax;
    }
}


/* Contest */

.con-content {
    display: flex;
    width: 100%;
    height: auto;
}

.con-header {
    color: var(--clr-purple-600);
    text-align: center;
}

.con-header h2 {
    font-family: 'Lora', system-ui;
    font-size: 4vmax;
    margin-bottom: 1.5rem;
}

.con-list h3 {
    color: var(--clr-neutral-900);
    font-weight: 200;
    font-style: italic;
    font-size: 1.5vmax;
    padding-top: 3rem;
}

.con-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.con-item {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-block: 2rem;
}

.con-column {
    flex: 0 0 100%;
}

.con-column {
    padding-inline: 3rem;
    padding-block: 6rem;
}

.contest-btn {
    font-size: 1.5rem;
    width: 230px;
}

@media (max-width: 1100px) {
    .con-header h2 {
        font-size: 4.5vmax;
    }

    .con-list h3 {
        font-size: 2.25vmax;
    }

    .con-column {
        padding: 3rem;
    }

    .contest-btn {
        font-size: 1rem;
        width: 190px;
    }
}