/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
}

/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/2.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: #ffcb70;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
}

/* Volunteer Form Section */
.volunteer-form-section {
    background-color: #ffffff;
    padding: 40px 20px;
    max-width: 600px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.volunteer-form-section h2 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 20px;
}

.volunteer-form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.volunteer-form-section label {
    font-size: 1.1rem;
    color: #333;
    text-align: left;
}

.volunteer-form-section input,
.volunteer-form-section select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.volunteer-form-section button {
    padding: 10px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #4a90e2;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.volunteer-form-section button:hover {
    background-color: #357abd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Participation Info Section */
.participation-info {
    background-color: #f0f9ff;  /* Light blue background for emphasis */
    padding: 30px 20px;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.participation-info h2 {
    font-size: 2rem;
    color: #4a90e2; /* Deep blue color to align with theme */
    margin-bottom: 15px;
}

.participation-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.participation-info ul li {
    font-size: 1.1rem;
    color: #333;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.participation-info ul li::before {
    content: '•';
    color: #ff8a65; /* Accent color */
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.participation-info ul li strong {
    color: #4a90e2;
}

.success-message {
    color: green;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid green;
    padding: 10px;
    background-color: #e8f5e9;
    border-radius: 5px;
}
