*{
box-sizing:border-box;
margin:0;
padding:0;
}

:root{
--primary-blue:#2F6F93;
--text-dark:#333;
--light-gray:#f4f4f4;
}

body{
font-family:'Josefin Sans', sans-serif;
color:var(--text-dark);
line-height:1.6;
background:white;
}


/* TYPOGRAPHY */

h1,h2,h3{
font-family:'Marcellus SC', serif;
text-transform:uppercase;
letter-spacing:1px;
}

h1{
font-size:48px;
}

h2{
font-size:36px;
}

h3{
font-size:22px;
}

p{
font-size:16px;
line-height:1.6;
}



/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
}

.navbar nav a{
margin:0 15px;
text-decoration:none;
color:#444;
font-weight:400;
}

.join-btn{
background:var(--primary-blue);
color:white;
padding:10px 20px;
border:none;
cursor:pointer;
}



/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:100px 10%;
}

.hero-content{
max-width:520px;
}

.hero h1{
letter-spacing:3px;
color:#6b6b6b;
margin-bottom:20px;
}

.hero p{
margin-bottom:15px;
}

.hero-image img{
    width:700px;
}



/* SHABBAT */

.shabbat-banner{
background:var(--primary-blue);
color:white;
text-align:center;
padding:45px;
}

.shabbat-banner h2{
margin-bottom:10px;
}



/* WHO */

.who{
padding:90px 20%;
text-align:center;
}

.who h2{
margin-bottom:25px;
}



/* BELIEFS */

.beliefs{
padding:90px 15%;
}

.beliefs h2{
text-align:center;
margin-bottom:60px;
}

.belief-item{
margin-bottom:30px;
padding-bottom:20px;
border-bottom:1px solid #eee;
}



/* PRAYER */

.prayer{
text-align:center;
padding:90px 20%;
}

.primary-btn{
margin-top:25px;
background:var(--primary-blue);
color:white;
padding:14px 28px;
border:none;
cursor:pointer;
font-size:15px;
}



/* SUPPORT */

.support{
background:url("images/cta2-backgroundMountain.jpg") center/cover;
padding:140px 10%;
display:flex;
justify-content:center;
}

.support-card{
background:white;
padding:45px;
text-align:center;
max-width:400px;
}

.coffee-btn{
display:inline-block;
margin-top:20px;
background:#FFD84D;
padding:12px 20px;
text-decoration:none;
color:black;
font-weight:600;
}



/* FOOTER */

footer{
padding:70px 10%;
background:var(--light-gray);
}

.footer-grid{
display:flex;
justify-content:space-between;
margin-bottom:40px;
}

footer h3{
margin-bottom:10px;
}

copyright{
text-align:center;
}



/* RESPONSIVE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-image img{
width:260px;
margin-top:40px;
}

.footer-grid{
flex-direction:column;
gap:30px;
text-align:center;
}

}


@media(max-width:768px){

    .navSection {
        display: none;
    }

    .hero-content {
        padding-top: 40px;
    }

    .who {
        text-align: left;
        padding-left: 75px;
        padding-right: 75px;
    }

    .copyright {
     text-align: center;
     padding-top: 25px;   
    }

    .shabbat-banner h2 {
        font-size: 30px;
    }

}



@media(max-width:393px){

    .hero-content {
        padding-top: 20px;
    }

    .hero-content h1 {
        font-size: 45px;
        padding-bottom: 15px;
        padding-top: 15px;
    }

    .hero-content p {
        text-align: left;
    }

    .who {
        padding-left: 40px;
        padding-right: 40px;
    }


}



@media(max-width:320px){

    .hero-content h1 {
        font-size: 36px;
    }

    .prayer {
        padding-left: 30px;
        padding-right: 30px;
    }
}