@font-face {
    font-family: 'Charis SIL Regular';
    src: url(../Fonts/Charis-SIL/CharisSIL-Regular.ttf);
}
@font-face {
    font-family: 'Charis SIL Bold';
    src: url(../Fonts/Charis-SIL/CharisSIL-Bold.ttf);
}
@font-face {
    font-family: 'Charis SIL Bold Italic';
    src: url(../Fonts/Charis-SIL/CharisSIL-BoldItalic.ttf);
}
@font-face {
    font-family: 'Charis SIL Italic';
    src: url(../Fonts/Charis-SIL/CharisSIL-Italic.ttf);
}
@font-face {
    font-family: 'Geist';
    src: url(../Fonts/Geist/Geist-VariableFont_wght.ttf);
}
body {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
}
.aboutSection {
    margin-top: 90px;
}
.historySection {
    margin-top: 100px;
}
.meetTheCouncil {
    margin-top: 100px;
}
.homeBanner {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}
.homeBannerImage {
    width: 100%;
    height: auto;
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Charis SIL Bold', serif;
    color: #FE993C;
}
#imgLandscape {
    width: 510px;
    height: 270px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}
#imgPortrait {
    width: auto;
    height: 450px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}
#carouselImg {
    width: auto;
    height: 350px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}
#carouselBtn .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FE993C' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}
#carouselBtn .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FE993C' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}
#goToTop {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: #DE710C;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Geist', sans-serif;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}
#goToTop:hover {
  background-color: #ffffff;
  color: #DE710C;
  outline: #DE710C solid 2px;
  font-family: 'Geist', sans-serif;
  box-shadow: 2px 2px 6 rgba(0, 0, 0, 0.2);
}
.fa-arrow-up:hover, .fa-solid:hover {
    color: #DE710C !important;
}
@media (max-width: 768px) {
    #imgLandscape {
        width: 100% !important;
        height: auto !important;
    }
    #imgPortrait {
        width: auto !important;
        height: 300px !important;
    }
    .carousel-item .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }
    .carousel-item figure {
        margin: 0 auto !important;
    }
    #carouselImg {
        width: 200px !important;
        height: auto !important;
    }
    .aboutSection .col-md-8 {
        margin-top: 20px;
    }
    .aboutSection, .historySection, .meetTheCouncil {
        margin-top: 50px;
    }
    p {
        font-size: 14px;
    }
}