/* 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: #ffcb70;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    color: white;
}

/* Devotional Section */
.devotional-section {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.devotional-today, .devotional-upcoming {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.devotional-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.devotional-content {
    font-size: 1rem;
    color: #666;
    text-align: left;
    margin-bottom: 20px;
}

.upcoming-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f4f4f4;
}

.upcoming-item h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: #444;
}

.no-devotional, .no-upcoming {
    color: #999;
    font-size: 1rem;
}

.search-result {
    margin-top: 20px;
}

#search-form {
    margin: 20px 0;
}

#search-form input {
    padding: 10px;
    font-size: 1rem;
    margin-right: 10px;
}

#search-form button {
    padding: 10px 15px;
    font-size: 1rem;
    background-color: #ffcb70;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#search-form button:hover {
    background-color: #ffa500;
}
