@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Public+Sans:wght@400;700&display=swap');
* {
    box-sizing: border-box;
}
h1.logo {
    display: none;
}
img.logo {
    display: block; 
    height: 150px;
    width: auto;
    padding: 5px 20%;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Public Sans', sans-serif;
    color: #1a1a1a;
    background-image: url('../images/background.jpg'); 
    background-repeat: repeat;
    background-color: #e5e1d8;
}
h1,h2{
    font-family: 'Bungee';
}
.topnav {
    display: flex;
    align-items: center;
    padding: 20px 5%;
}
.main-nav {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0 auto; 
    padding: 0;
    font-family: 'Public Sans', sans-serif;
    font-weight: bold;
}
.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
}
.main-nav li a:hover{
    text-decoration: underline;
    text-decoration-thickness: 3px;
}
.hero {
    text-align: center;
    padding-bottom: 60px;
}
.hero img, .support-hero img {
    width: 100%;
    height: auto;
    display: block;  
}
.hero h2, .mission h2 {
    font-size: 50px;
    margin: 40px 0 10px;
}
.hero p{
    margin: 5px 0;
}
h3{
    font-weight: bold;
}
 .button {
    background-color: #f3b06a;
    color: white;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    font-family: 'Public Sans', sans-serif;
    font-weight: bold
}

.about{
    background-color: #221f1d;
    color: #e5e1d8;
    padding: 9% 22%;
    display: flex; 
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    font-family: 'Public Sans', sans-serif;
}
.about h2 {
    flex: 1; /* https://www.w3schools.com/cssref/css3_pr_flex.php */
    font-size: 40px;
    margin: 0;
    font-family: 'Public Sans', sans-serif;
    font-weight: bold;
}
.about p {
    flex: 2;
    margin: 0;
    line-height: 1.8;
}
.card {
    padding: 80px 5%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;  /* https://www.w3schools.com/cssref/css3_pr_flex-wrap.php */
    justify-content: center;
    gap: 50px;
}
.card h2 {
    width: 100%; 
    margin-bottom: 40px;
    font-size: 32px;
    font-family: 'Public Sans', sans-serif;
    font-weight: bold;
}
.card-box {
    background: black;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-radius: 20px;
    overflow: hidden;/* https://www.w3schools.com/css/css_overflow.asp */
}
.card-box p, .card-box h3 {
    background-color: #1a1a1a;
    color: white;
    margin: 0;
    padding: 15px;
}
.card-box h3 {
    font-family: 'Public Sans', sans-serif;
    font-weight: bold;
    padding-bottom: 10px;
    font-size: 20px;
}
.card-box img {
    width: 100%;
    height: 350px;
    object-fit: cover; /* https://www.w3schools.com/css/css3_object-fit.asp */
}
.map {
    text-align: left;
    padding: 10px 20% 100px;
}
.map h2 {
    font-size: 32px;
    font-family: 'Public Sans', sans-serif;
    font-weight: bold;
}
.map img {
    width: 100%;
    max-width: 1100px;
    border-radius: 10px;
    margin: 20px 0;
    padding-bottom: 50px;
}

.mission {
    background-color: #221f1d;
    color: #e5e1d8;
    padding: 130px 27% ;
    text-align: left;
    font-family: 'Public Sans', sans-serif;
    margin-top: 0%;
}
.mission h3{
    font-size: 25px;
}
.story-container {
    padding: 80px 10%;
}

.story-box {
    padding: 0 8% 0 8%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1.5;
    text-align: left;
    padding: 0 0 0 15%;
}

.story-text h3 {
    font-family: 'Public Sans', sans-serif;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 15px;
}
.story-text h4 {
    font-family: 'Public Sans', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}
.story-img {
    flex: 1;
}

.story-img img {
    width: 100%;
    border-radius: 4px;
}

footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 10% 40px;
    background-image: url('../images/footer.png');
    background-size: cover;
}
.footer {
    display: flex;
    justify-content: flex-start;
    gap: 23%;
    align-items: flex-start;
    padding-bottom: 50px;
}
.footer-logo img {
    display: flex;
    height: 211px;
    width: auto;
    padding-left: 36%;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 10px;
 }

.footer-links a {
    font-family: 'Public Sans', sans-serif;
    color: white;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.social-icons img {
    width: 35px;
    height: auto;
}
.email {
    margin-top: 25px;
    font-size: 13px;
    color: white;
}