body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#app {
    display: flex;
    flex-direction: column;
    flex: 1;
}

header {
    text-align: center;
    margin: 20px 0;
}

.logo {
    max-width: 500px;
    width: 100%;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section {
    text-align: center;
    margin: 20px;
    max-width: 900px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: none;
}

.cta-button {
    display: block;
    margin: 20px auto 0;
    background-color: #ff4b97;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 75, 151, 0.5);
}

.info-section {
    text-align: center;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin: 20px auto;
}

.donation-section {
    text-align: center;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    max-width: 1000px;
    margin: 20px auto;
    margin-top:0px;
}

.donate-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.donate-section {
    margin-top: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.donate-button {
    background-color: #ff4b97;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.donate-button:hover {
    background-color: #ff267a;
    transform: scale(1.05);
}

.qr-code {
    margin-top: 10px;
}

.qr-code img {
    max-width: 100px;
    width: 100%;
}

footer {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
    margin-top: 100px;
}

footer a {
    color: inherit;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.push {
    flex: 1;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%; /* Ensures a perfect circle */
    width: 60px; /* Set width and height to same value for circle */
    height: 60px;
    padding: 0; /* Remove padding */
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.social-icon {
    width: 40px;
    height: 40px;
    margin: 0 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .swal2-popup.custom-video-popup {
        width: 70% !important;
    }
}

@media (max-width: 767px) {
    .swal2-popup.custom-video-popup {
        width: 95% !important;
    }
}

.pink-link {
    color: #ff4b97;
}

.pink-link:hover {
    text-decoration: underline;
}

.video-container{
    background-color: rgb(255, 255, 255);
}

/*
.swal2-popup {
    padding: 0 !important;
}


.swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
}

.swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #ff4b97; 

*/



/* Add these styles to your existing CSS file */
.video-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.video-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    position: relative;
    border-radius: 10px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
