@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

@font-face {
    font-family: Lumiare;
    src: url("../common/fonts/Lumiare.otf") format("opentype");
}

:root{
--maincolor: rgb(34, 49, 88);
--secondcolor: rgb(64, 169, 80);
--thirdcolor: rgb(255,255,255);
--accentcolor: rgb(81, 92, 216);
--pagebg: rgb(234, 228, 222);
--otherpagebg: rgb(227, 217, 208);
}

body {
            font-family: 'Lumiare', sans-serif;
            margin: 0;
            background-color: var(--pagebg);
            overflow-x: hidden;
        }

.donatetop{
    font-family: "Bricolage Grotesque", sans-serif;
    background-color: var(--accentcolor);
    padding: 2vw; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap:4vw;
    margin-top:0;
    position: relative;
    transform-origin: top;
    transition: transform 0.5s ease-in-out, padding 0.5s ease-in-out, max-height 0.5s ease-in-out;
    max-height: 250px;
    overflow: hidden;

    transform-origin: top;
    transition: transform 0.5s ease-in-out, padding 0.5s ease-in-out, max-height 0.5s ease-in-out;
    max-height: 250px;
    overflow: hidden;
}

.donatetop.closing {
    transform: scaleY(1);
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
}

.closebtn{
    filter: invert();
    width:3vw;
    display:block;
    margin:0;
    position: absolute;
    z-index: 100;
    right: 0.8vw;
    top: 1vh;
}

.donotable{
    border-collapse: separate;
    border-spacing: 0.3vw;
}

.donotable button{
    width: 9vw;
    height:6vh;
    border-radius:0.5vw;
    border: 0;
    font-size:0.9vw;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    background-color: var(--thirdcolor);
    color: var(--maincolor);
    transition: 0.3s
}

.donotable button:hover{
    background-color: var(--secondcolor);
    transition: 0.3s;
    cursor:pointer;
    color:var(--thirdcolor);
}

.donatetop .header{
    color: var(--thirdcolor);
    font-weight: 800;
    background-color: var(--accentcolor);
    font-size: 2.5vw;
    margin:0;
    letter-spacing: -1px;
    margin: 0 0 0vw;
    padding: 0; 
}

.donatetop .breadtext{
    color: var(--thirdcolor);
    font-weight: 600;
    font-size: 1.2vw;
    margin:0;
}

.donatetop .text{
    width:30vw;
    margin: 0;
    padding:0;
}

.header{
    width:100%;
    background-color: var(--thirdcolor);
    margin:0;
    font-size: 3vw;
    padding:1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logotext{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logotext p{
    padding:0.3vw
}

.header .logotext .two{
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight:800;
    font-size:1.7vw;
    color: var(--secondcolor);
}

.header p{
    color: var(--maincolor);
    margin: 0;
}


.navbarlinks a{
    color: var(--maincolor);
    margin: 0;   
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight:800;
    text-decoration: none;
    font-size: 1.2vw;
    padding-left:0.1vw;
    position: relative;
}

.navbarlinks a:hover::before{
    transform: scaleX(1);
    transform-origin: bottom left;
}

a:hover{
    color: #000;
}

.navbarlinks a::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: bottom right;
}

.navbarlinks a.donate{
    background-color: var(--secondcolor);
    color: var(--thirdcolor);
    padding: 0.7vw 1.8vw;
    border-radius: 0.5vh;
    margin-left:1vw;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    font-size: 1.2vw;
}

.navbarlinks a.donate:hover{
    background-color: var(--accentcolor);
    transition: 0.3s;
    font-size: 1.3vw;
    padding: 0.65vw 1.7vw;
}

.navbarlinks a.donate::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: transform 0.3s ease;
    transform-origin: bottom right;
}

.navbarlinks a.donate:hover::before{
    transform: scaleX(0);
    transform-origin: bottom left;
}

.navbarlinks .container{
    margin-right:7vw;
    padding-bottom:2vh
}

.extlinkbar{
    background-color: var(--maincolor);
    display: flex;
    justify-content: flex-end;
    margin:0;
    padding-right:6vw;
}

.extlinkbar img{
    width: 1.5vw;
    padding-top:0.5vw;
    padding-bottom:0.5vw;
    padding-right: 0.5vw;
    filter: invert();
    transition: 0.2s
}

.extlinkbar img:hover{
    width: 1.7vw;
    transition:0.2s;
    padding-bottom:0.4vw;
    padding-top:0.4vw;
}

.hero-image-container {
    position: relative;
    width:100vw;
    height:83vh;
    object-fit: cover;
}

.heromain{
    position: relative;
    width:100vw;
    height:83vh;
    object-fit: cover;
}

.black-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* Adjust how high the fade goes */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none; /* Allows clicks to pass through */
}

.sloganpart{
    position:relative;
    bottom:17vw;
    color:white;
    font-size:4vw;
    align-items: center;
    justify-items: center;
}

.signupusername{
    width: 15vw;
    height: 7vh;
    font-size: 1.0vw;
    position: relative;
    bottom:17vw;
    border: 0;
    border-radius: 0.5vh;
    font-family: "Bricolage Grotesque", sans-serif;
    color: black;
    background-color: var(--pagebg);
    padding:1vh;
    font-weight:600;
}

input:focus {
    outline: none;
}

.signupusernamebutton{
    width: 10vw;
    height: 9vh;
    font-size: 1.2vw;
    position: relative;
    bottom:17vw;
    border: 0;
    border-radius: 0.5vh;
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--thirdcolor);
    background-color: var(--secondcolor);
    font-weight: 800;
    cursor: pointer;
    margin-left:1vw;
    padding:1vh;
    transition: 0.3s;
}

.signupmail{
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-75%);
    margin-top: 0;
}

.signupusernamebutton:hover{
    background-color: var(--accentcolor);
    transition: 0.3s;
    font-size: 1.3vw;
}

.signuptext{
    font-size: 0.8vw;
    width: 50%;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    position: relative;
    bottom: 30vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--thirdcolor)
}

.section1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    width: 52%;
    margin: 0 auto;
    padding: 0px 0;
    height: 0;
    margin-top: 8vh;
    margin-left: 19vw;
}

.section2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    width: 52%;
    margin: 0 auto;
    padding: 0px 0;
    height: 0;
    margin-top: 50vh;
}

.coverdiv{
    background: linear-gradient(
    to bottom,
    var(--otherpagebg) 0%,
    transparent 100%
    );
    width: 100vw;
    height: 30vw;
    margin-top: -35vh;
    margin-left: 0vw;
    position: absolute;
    z-index: -1;
}

.section_text {
    flex: 1;
    width: 50vw
}

.section_title {
    font-size: 3.6vw;
    margin-bottom: 20px;
    font-weight: 450;
    line-height: 5.5vh;
    color: var(--secondcolor);
}

.section2 .section_title{
    text-align: center;
}

.section2 .section_breadtext{
    text-align: center;
}

.section_breadtext {
    font-size: 1.2vw;
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 3.2vh;
    font-weight: 450;
    color: var(--maincolor)
}

.section_image_container {
    flex: 1;
    max-width: 650px;
    position: relative;
}

.sectionimage {
    width: 40vw;
    height: 51vh;
    display: block;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.learnmorebtn{
    width: 10vw;
    height: 6vh;
    font-size: 1.2vw;
    position: relative;
    border: 0;
    border-radius: 0.5vh;
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--thirdcolor);
    background-color: var(--accentcolor);
    font-weight: 800;
    cursor: pointer;
    padding:1vh;
    transition: 0.3s;
}

.learnmorebtn:hover{
    background-color: var(--secondcolor);
    transition: 0.3s;
    font-size: 1.3vw;
}

.sec2buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 40%;
    margin: 0 auto;
    padding: 0px 0;
    height: 0;
    margin-top: 24vh
}

.section2btn{
    width: 12.5vw;
    height: 20vh;
    font-size: 1.4vw;
    position: relative;
    border: 0;
    border-radius: 0.5vh;
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--thirdcolor);
    background-color: var(--accentcolor);
    font-weight: 800;
    cursor: pointer;
    padding:1vh;
    transition: 0.3s;
}

.section2btn:hover{
    background-color: var(--secondcolor);
    transition: 0.3s;
    font-size: 1.5vw;
}

.section3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5vw;

    width: 65%;
    margin: 0 auto;
    padding: 0px 0;
    height: 0;
    margin-top: 65vh;
    margin-left: 19vw;
}

.section3 .section_image_container{
    margin-right: 10vw
}

.section3 .sectionimage{
    width: 35vw;
    height: 70vh;
}

.policyheaders{
    width: 25vw;
    height: 8vh;
    font-size: 1.2vw;
    position: relative;
    border: 0;
    border-radius: 0.5vh;
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--thirdcolor);
    background-color: var(--accentcolor);
    font-weight: 800;
    cursor: pointer;
    padding:1vh;
    transition: 0.3s;
    margin-bottom:1vh
}

.policyheaders:hover{
    background-color: var(--secondcolor);
    transition: 0.3s;
    font-size: 1.3vw;
}

.policyheaders2{
    width: 25vw;
    height: 8vh;
    font-size: 1.2vw;
    position: relative;
    border: 0;
    border-radius: 0.5vh;
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--thirdcolor);
    background-color: var(--secondcolor);
    font-weight: 800;
    cursor: pointer;
    padding:1vh;
    transition: 0.3s;
    margin-bottom:1vh
}

.policyheaders2:hover{
    background-color: var(--accentcolor);
    transition: 0.3s;
    font-size: 1.3vw;
}

.section4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    width: 52%;
    margin: 0 auto;
    padding: 0px 0;
    height: 0;
    margin-top: 90vh;
}

.section4 .section_title{
    text-align: center;
    margin-top: -25vh
}

.section4 .section_breadtext{
    text-align: center;
}

.sec4news{
    margin-top: -6vh;
    align-items: center;
    justify-items: center;
}

.newscard{
    background-color: var(--thirdcolor);
    padding: 2vw;
    max-width: 40%;
    border-radius: 0.25vw;
    box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.1);
}

.newscard a{
    text-decoration: none;
}

.newscard h2{
    margin: 0.5vw;
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 2.5vw;
    font-weight: 450;
    color: var(--maincolor);
}

.newscard p{
    margin: 0;
    font-size: 1vw;
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--maincolor);
}

.newscard h4{
    font-size: 0.7vw;
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--secondcolor);
}

.newscard h3{
    font-size: 0.7vw;
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    margin-bottom: 0.4vw;
    color: var(--maincolor);
}

.coverdiv4{
    background: linear-gradient(
    to bottom,
    var(--otherpagebg) 0%,
    transparent 100%
    );
    width: 100vw;
    height: 30vw;
    margin-top: -55vh;
    margin-left: 0vw;
    position: absolute;
    z-index: -1;
}

.footer{
    background-color: var(--maincolor);
    height: 30vh;
    margin-top: 10vh;
    font-family: "Bricolage Grotesque", sans-serif;
    color: white;
    font-weight: 500;
}