/* Color Variables */
:root {
    --royal-blue: #1a237e;
    --soft-blue: #7986cb;
    --light-blue: #c5cae9;
    --gold: #ffd700;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--royal-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--soft-blue);
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--royal-blue), var(--soft-blue));
    color: var(--white);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

#main-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

header h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--white);
    font-weight: bold;
    padding: 0.5rem;
    display: block;
}

nav ul li a:hover {
    color: var(--gold);
}

@media screen and (max-width: 768px) {
    #mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }
    
    nav ul.show {
        display: flex;
    }
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--soft-blue);
}

/* Specific Section Styles */
#home {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('main_logo.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
}

#donate {
    background-color: var(--light-blue);
}

/* Footer Styles */
footer {
    background-color: var(--royal-blue);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.social-icons a {
    margin: 0 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.social-icons a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    main {
        padding: 1rem;
    }
    
    section {
        padding: 1.5rem;
    }
}

/* Donation Section Styles */
.donation-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.donation-option {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
}

.donation-option h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.donation-option img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--royal-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--soft-blue);
    border-radius: 4px;
}

.form-group textarea {
    min-height: 150px;
}

button {
    background-color: var(--royal-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--soft-blue);
}

/* Bible Verses Section */
.bible-verse {
    background-color: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    margin-bottom: 1.5rem;
}

.bible-verse cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: var(--royal-blue);
}

/* Mission Work Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Kingdom Warrior Styling */
.kingdom-warrior {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.warrior-image {
    flex: 1 1 300px;
}

.warrior-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.warrior-content {
    flex: 2 1 400px;
}

.warrior-content h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

/* Social Media Buttons in Header */
.header-social-icons {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 1rem;
}

.header-social-icons a {
    color: var(--white);
    font-size: 2.5rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social-icons a:hover {
    color: var(--gold);
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.4);
}

.header-social-icons a.facebook {
    background-color: #3b5998;
}

.header-social-icons a.youtube {
    background-color: #c4302b;
}

.header-social-icons a.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-media-prompt {
    position: absolute;
    top: 0.5rem;
    left: 20rem;
    background-color: #FFD700; /* 24k gold color */
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
    z-index: 100;
}

.social-media-prompt::before {
    content: "←";
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-social-prompt {
    background-color: #FFD700; /* 24k gold color */
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: inline-flex;
    align-items: center;
    animation: pulse 2s infinite;
    margin-bottom: 1rem;
}

.footer-social-prompt::after {
    content: "→";
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Adjust header padding for social icons */
header {
    padding-top: 4rem; /* Add space for social icons */
}

/* Adjust mobile menu toggle position */
#mobile-menu-toggle {
    top: 4rem; /* Move down below social icons */
}

/* Responsive adjustments for header social icons */
@media screen and (max-width: 768px) {
    .header-social-icons {
        top: 0.5rem;
        left: 0.5rem;
    }
    header {
        padding-top: 3rem;
    }
    #mobile-menu-toggle {
        top: 0.5rem;
    }
}

/* PayPal info styling */
.paypal-info {
    background-color: rgba(0, 70, 190, 0.05);
    border: 1px solid var(--soft-blue);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    max-width: 450px;
}

.paypal-info h4 {
    color: var(--royal-blue);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.paypal-info p {
    margin: 0.5rem 0;
}
