:root {
    --brand-primary: #705A24;
    --brand-secondary: #3A4E4D;
    --text-dark: #0f172a;
    --text-light: #ffffff;
}

body{
    margin: 0;
    font-family: Inter, sans-serif;
    /*min-width: 1200px;*/
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}
h2{
    font-size: 2.25rem;/*36px*/
    line-height:1.2;
    margin-bottom: 24px;
}

h3{
    font-size:1.75rem;/*28px*/
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    /*display: block;*/
}
/*Layout*/
section {
/*     margin:2rem 0; */
}
.mt-4{
    margin-top: 4rem;
}
.mt-6{
    margin-top: 6rem;
}
.mb-4{
    margin-bottom: 4rem;
}
.pb-4{
    padding-bottom: 4rem;
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;

}

/* Mobile-first container sizing */
@media (min-width: 640px) {
    .container { max-width: 640px; }
}

@media (min-width: 768px) {
    .container { max-width: 768px; }
}

@media (min-width: 1024px) {
    .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
    .container { max-width: 1200px; }
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: .5rem 0;
}
.three-col {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: space-evenly;
}
.col-content {
    max-width: 520px;
}
.icn-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    margin: 2rem auto;
}
/* NAV  */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.nav {
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #3A4E4D;
    display: flex;
    flex-direction: row;
    gap:2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
}

#nav-cta{
    display: inline-block;
    border-radius: 50px;
    background: #3A4E4D;
    color: white;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/*!*  SECTIONS  *!*/
.section-title {
    padding: 4rem 1rem 1rem 1rem;
    text-align: center;
}
.section-intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-intro p {
    margin-top: 1rem;

}

/* HERO */
.hero {
    position: relative;
    min-height: 80vh;
    background:linear-gradient(180deg, #705A24 0%, rgba(115, 115, 115, 0.00) 100%),
    url('../img/hero_section.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 2rem;
    justify-content:flex-end;
    margin-top:0;
}

.hero-card {
    padding: 2.5rem;
    max-width: 600px;
    border-radius: 5px;
    background: rgba(112, 90, 36, 0.90);
    margin-right: 4rem;
}

.hero-card h1 {
    font-size: 48px;
    margin-bottom: 1rem;
    color: white;
    font-weight:500;
    line-height: 1.2;
}

.hero-card p {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 500;
}
.about-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.howItWorks-container{
    display: flex;
    flex-direction: row;
}

.list-item h4{
    color: #705A24;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;

}
.list-item p{
    margin-top: 0;
}

.primary-btn {
    display: inline-block;
    border-radius: 50px;
    background: #3A4E4D;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border:none;
}
#getInvolved{
    background: #705A24;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding: 2rem 0;
}
.form-card{
    background: white;
    max-width: 550px;
    border-radius: 10px;
    padding: 2rem;
}
.form-wrapper{
    display: flex;
    flex-direction: column;
    padding: 2rem;
}
.form-content{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: left;
}
.form-content label{
    color: #202020;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}
.form-content input{
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
}
.form-content select{
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    background: white;
    color: #757575;
}
.form-wrapper .primary-btn{
    justify-content: right;
    margin: 1rem 0;
    width: 25%;
}

.footer-content, section-title{
    color:var(--text-dark);
}
.footer-content{
    background: #3A4E4D;
    color: white;
    padding: 2rem;
}
.footer-content a{
	color:white;
}
/* RESPONSIVENESS adjustments */
@media (max-width: 900px) {
    .hero-card h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mt-4{
        margin-top: 1rem;
    }
    .three-col{
        gap:0;
    }
    .hero {
        justify-content: center;
        min-height:0;
        text-align: center;
    }

    .hero-card {
        margin-right: 0;
    }
    .about-grid {
        flex-direction: column;
        text-align: center;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .col-content{
        max-width: 100%;
    }
    .section-title{
        margin-bottom: 0;
        margin-top: 0;
        padding-top:0;
    }
    .container{
        text-align: center;
    }
    .three-col{
        flex-direction: column;
    }
}
