/*
Theme Name: Campaign Child
Template: astra
Description: Child theme for Somali Presidential Campaign website
Version: 1.0
Author: Campaign Team
*/

/* Import parent theme styles */
@import url("../astra/style.css");

/* Custom styles for campaign site */
.campaign-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.campaign-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.campaign-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.donate-button {
    background: #ff6b35;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.donate-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.news-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.volunteer-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-info {
    background: #1e3c72;
    color: white;
    padding: 40px;
    border-radius: 10px;
}

/* RTL Support for Arabic */
[dir="rtl"] .campaign-hero {
    text-align: right;
}

[dir="rtl"] .news-card {
    text-align: right;
}

[dir="rtl"] .contact-info {
    text-align: right;
}

/* Responsive design */
@media (max-width: 768px) {
    .campaign-hero h1 {
        font-size: 2.5rem;
    }
    
    .campaign-hero p {
        font-size: 1.1rem;
    }
    
    .donate-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Form styling */
.campaign-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.campaign-form .form-group {
    margin-bottom: 20px;
}

.campaign-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.campaign-form input,
.campaign-form textarea,
.campaign-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.campaign-form input:focus,
.campaign-form textarea:focus,
.campaign-form select:focus {
    outline: none;
    border-color: #1e3c72;
}

/* Footer styling */
.campaign-footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.campaign-footer a {
    color: #ff6b35;
    text-decoration: none;
}

.campaign-footer a:hover {
    text-decoration: underline;
}

select#volunteer-availability {
    padding: 2px 5px !important;
}