/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/4.jpg");
    background-size: cover;
    background-position: center;
    height: 60vh;
    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.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffd700; /* Golden accent */
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
}

/* Main Content Section */
.daniel-initiative {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.mission {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 1rem;
}

.scripture {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    color: #007bff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.qualities-list {
    list-style-type: disc;
    margin: 1rem 0 2rem 2rem;
    color: #555;
}

.anthem-lyrics {
    font-family: "Courier New", Courier, monospace;
    background: #eef9ff;
    padding: 1rem;
    border-left: 5px solid #007bff;
    color: #333;
    margin-bottom: 2rem;
}

.register-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
}

.register-link:hover {
    background-color: #218838;
    color: #fff;
}
