/* Global Styles - Matched to original voiceoffree.org */
:root {
    --primary-color: #0693e3; /* Original site blue */
    --secondary-color: #f8f9fa;
    --accent-color: #ff6900; /* Original site orange */
    --text-color: #32373c; /* Original site dark gray for text */
    --light-text: #fff;
    --border-color: #abb8c3; /* Original site border color */
    --success-color: #00d084; /* Original site green */
    --error-color: #cf2e2e; /* Original site red */
    --footer-color: #32373c; /* Original site footer background */
    --gray-text: #6c757d; /* Original site secondary text */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Donation Section */
.donation-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.donation-form-wrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.donation-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

/* Donation Amount Buttons */
.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.amount-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

.custom-amount-input {
    max-width: 300px;
    margin-top: 15px;
}

/* Form Controls */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

/* Submit Button */
.submit-donation {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.submit-donation:hover {
    background-color: #e05d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.disclaimer-content {
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.disclaimer-content h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.disclaimer-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--footer-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .donation-form-wrapper {
        padding: 20px;
    }
    
    .amount-buttons {
        justify-content: center;
    }
    
    .amount-btn {
        min-width: 80px;
        font-size: 1rem;
    }
}

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* Animation for form submission */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 1.5s infinite;
}
