@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

:root {
    --pvga-title-font-size: 4rem;
    --pvga-header-font-size: 2rem;
    --pvga-body-font-size: 1.1rem;
    --pvga-cta-font-size: 1.5rem;

    --color-onion-light: #DDB17D;
    --color-onion-medium: #E77736;
    --color-onion-dark: #5D2816;
    --color-pvga-green: #156445;

    --font-lato: 'Lato', sans-serif;

}



.pvga-title {
    font-size: var(--pvga-title-font-size);
    font-family: var(--font-lato);
    font-weight: var(--extra-bold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.pvga-header {
    font-size: var(--pvga-header-font-size);
    font-family: var(--font-lato);
    font-weight: var(--semi-bold);
}


.pvga-body {
    font-size: var(--pvga-body-font-size);
    font-family: var(--font-lato);
    font-weight: var(--regular);
    line-height: 1.5rem;
}


.pvga-cta {
    font-size: var(--pvga-cta-font-size);
    font-family: var(--font-lato);
    font-weight: var(--medium);
    line-height: 1.8rem;
}

.pvga-nav {
    font-size: 1.3rem;
    font-family: var(--font-lato);
    font-weight: var(--semi-bold);
}



.color-dark {
    color: var(--color-onion-dark);
}


.color-light {
    color: var(--color-onion-light);
}


.color-med {
    color: var(--color-onion-medium);
}


.color-green {
    color: var(--color-pvga-green);
}


.color-white {
    color: white;
}


.color-black {
    color: black;
}


.bg-dark {
    background-color: var(--color-onion-dark);
}

.bg-light {
    background-color: var(--color-onion-light);
}

.bg-med {
    background-color: var(--color-onion-medium);
}

.bg-green {
    background-color: var(--color-pvga-green);
}

.bg-white {
    background-color: white;
}

.bg-black {
    background-color: black;
}


.inner-wrapper-wide {
    width: 100%;
    max-width: 1600px;
}

.inner-wrapper {
    width: 100%;
    max-width: 1300px;
}

.inner-wrapper-short {
    width: 100%;
    max-width: 1200px;
}

.partial-wrap {
    width: 30rem;
}

.wider-wrap {
    width: 50rem;
}

.sec {
    width: 100%;
    height: 41rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sec-big {
    width: 100%;
    height: 48rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sec-auto{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


.left-corner-stack {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}

.middle-split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.middle-stack {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
}


.pvga-button {
    border-radius: 6px;
    padding: 1rem;
    min-width: 10rem;
    text-align: center;
}


.card {
    width: 23rem;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.4rem;
}



/* NAVIGATION */
#nav {
    height: 4rem;
    width: calc(100% - 3rem);
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
}

#nav-wrapper-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#nav-logo-wrapper {
    height: 4rem;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

#simply-sweet-logo {
    width: auto;
}

#pvga-logo {
    width: auto;
}

#nav-links-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}





/* FOOTER */
#footer {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 10rem);
    max-width: 1440px;
}

#footer-inner-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#footer-email-bar-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#stay-in-the-know {}

#stay-in-details {
    margin-top: 1.5rem;
}

#footer-email-bar-wrapper {
    display: flex;
    width: 100%;
    margin: 3rem auto 0 auto;
}

#footer-email-bar {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 3px solid var(--color-pvga-green);
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
}

#footer-email-button {
    padding: 0.7rem 1rem;
    border: 3px solid var(--color-pvga-green);
    border-left: none;
    border-radius: 0 6px 6px 0;
    background-color: var(--color-pvga-green);
    /* optional green */
    color: white;
    cursor: pointer;
    width: 16rem;
}

#footer-email-bar-wrapper button:hover {
    background-color: #245424;
}


#footer-main-content-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 4rem;
}

#footer-logo-wrapper {
    height: 7rem;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

#footer-simply-sweet-logo {
    width: auto;
}

#footer-pvga-logo {
    width: auto;
}

#footer-links-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.7rem;
}




/* INPUTS */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width:100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.form-label {
    color: white;
    font-family: var(--font-lato);
    font-weight: var(--medium);
    font-size: var(--pvga-body-font-size);
    margin-bottom: 0.25rem;
}

.form-input {
    padding: 0.75rem;
    font-family: var(--font-lato);
    font-weight: var(--regular);
    font-size: var(--pvga-body-font-size);
    color: black;
    background-color: white;
    border: 1px solid white;
    border-radius: 4px;
}

.form-textarea {
    padding: 0.75rem;
    font-family: var(--font-lato);
    font-weight: var(--regular);
    font-size: var(--pvga-body-font-size);
    color: black;
    background-color: white;
    border: 1px solid white;
    border-radius: 4px;
    resize: vertical;
    min-height: 200px;
}

.form-select {
    padding: 0.75rem;
    font-family: var(--font-lato);
    font-weight: var(--regular);
    font-size: var(--pvga-body-font-size);
    color: black;
    background-color:white;
    border: 1px solid white;
    border-radius: 4px;
}

.drag-drop-area {
    border: 2px dashed white;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    font-family: var(--font-lato);
    font-weight: var(--medium);
    font-size: var(--pvga-body-font-size);
}


/* Contact form */
#contact{
    margin-top:3rem;
    margin-bottom:3rem;
    width:100%;
    max-width:922px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap:1rem;
}

#standalone-contact{
    padding:3rem;
    width:100%;
    max-width:922px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap:1rem;
    border-radius:12px;
}