/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}

/* Full-height layout for video background */
.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Style the video element */
#video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
#mobile-video-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#000000; /* Adjust the transparency (0.5 is 50% opaque) */
}

.header-right {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
}

.header-right .menu-item {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding-right: 30px;
    text-transform: uppercase;

}

.header-right .menu-item:hover {
    color: rgb(255, 154, 22);
}

.social-icons {
    border-left: 1px solid ;
    padding-left: 10px;
}


/* Container for centered content */
.content {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
}

/* Style the logo */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.title {
    text-transform: uppercase;
    font-size: 80px;
    font-weight: 800;
    line-height: 80px;
    margin-bottom: 0.5em;
}

.description {
    font-size: 20px;
    margin-bottom: 1.5em;
}


.not-bold {
    font-weight: 100;
}

.social-icons a {
    margin-left: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

body.donate .social-icons {border: none;}
/* Style the centered content */
.centered-content {
    text-align: left;
    margin-left: 10%;

}

.centered-content h1, .centered-content h2 {
    margin-bottom: 10px;
}

.buttons {
    margin-top: 10px;
}

.button {
    min-width: 200px;
    display: inline-flex;
    padding: 10px 20px;
    background-color: rgba(255, 154, 22, 0.45);
    color: white;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    zoom: 1.1;
    margin-top: 10px;
}
.button small {
    margin-left: 5px;
}
.button:hover {
    background-color: #555;
}
.buttons a img {
    width: 30px;
    height: 16px;
    margin-right: 15px;
}

body.donate .buttons a.card img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
body.donate .buttons a.paypal img {
    width: 17px;
    height: 20px;
    margin-right: 15px;
}

body.donate .buttons a.idram img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
body.donate .buttons a.sms img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
/* Style the contact info */
.contact-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Style the copyright text */
.copyright {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
}

footer .social-icons {
        display: none;
    }



@media only screen and (max-width: 720px) {
    .content {
        top: 0;
        height: 100%
    }
    #video-bg {
        display: none;
    }
    #mobile-video-bg {
        display: block;
    }
    .title {
        font-size: 21px;
        line-height: 24px;
    }
    .description {
        font-size: 14px;
    }
    .header-right .social-icons, .contact-info {
        display: none;
    }
    footer .social-icons {
                display: inline-block;
        border: none;
        padding-left: 0;
        margin-left: -10px;
        margin-top: 15px;
    }
    .header-right .menu-item {
        border: none;
        margin-right: 0;
        padding-right: 0;
    }
    .button {
        margin-top: 10px;
        padding: 7px 15px;
    }

}
