/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: orange;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    text-align: center;
    flex-grow: 1;
}

.nav-links {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: #2c09ba;
}

.nav-links a i {
    margin-right: 8px;
}

/* Mobile Menu Button */
.menu-button {
    display: none;
    background: white;
    color: orange;
    border: 2px solid orange;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: orange;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    width: 200px;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    text-align: left;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked ~ .mobile-menu {
    display: flex;
}

.mobile-menu a:hover {
    color: rgb(66, 8, 193);
}


.donation-section {
    padding: 50px 20px;
    margin-top: 100px;
    text-align: center;
    background-color: #fffdf5;
}

.donation-section h2 {
    font-size: 32px;
    color: #ff6600;
    margin-bottom: 10px;
}

.donation-section p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
}

.donation-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.donation-box {
    background-color: #fff;
    border: 2px solid #ffcc80;
    border-radius: 15px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.donation-box:hover {
    transform: translateY(-5px);
}

.donation-box h3 {
    color: #ff6600;
    margin-bottom: 15px;
   
}

.donation-box p {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

.qr-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .donation-methods {
        flex-direction: column;
        align-items: center;
    }

    .donation-box {
        width: 90%;
    }
}


/* Social Media Section */
.social-media-section {
    text-align: center;
    background: rgba(245, 241, 241, 0.842);
    padding: 20px 0;
    margin-top: 20px;
    margin-bottom: 40px;
}

.social-media-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
}

.social-media-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media-container a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
}

.social-media-container a:hover {
    transform: scale(1.1);
}

.social-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .social-media-container a {
        width: 40px;
        height: 40px;
    }
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: orange;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}


.donation-message {
    position: fixed;
    top: 84px; /* Adjust based on your navbar height */
    width: 100%;
    background: linear-gradient(to right, #cd7e07, #ffc107);
    color:whitesmoke;
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.donation-message i {
    margin-right: 8px;
    color:wheat;
}

/* Push main content below fixed banner */
main {
    margin-top: 40px; /* navbar (70px) + banner (70px) */
}
