/* Global styles for Hope Channel Nigeria website */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f2f2f2;
    color: #333;
}

header {
    background: #003f75;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-right: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero .hero-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 5px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.btn {
    background: #00a86b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
}

.btn:hover {
    background: #008f5a;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    margin: 20px 0;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    padding: 15px;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.card h3 {
    margin-top: 0;
}

.card p {
    color: #555;
}

.card a {
    color: #00a86b;
    text-decoration: none;
    font-weight: bold;
}

.card a:hover {
    text-decoration: underline;
}

footer {
    background: #003f75;
    color: #fff;
    text-align: center;
    padding: 15px;
}

.page-title {
    background: #00a86b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.schedule h2 {
    color: #003f75;
}

.schedule ul {
    list-style: none;
    padding: 0;
}

.schedule li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.programmes .category-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 10px 0;
}

.programmes .category-list li {
    margin-right: 10px;
}

.programmes .category-list a {
    background: #003f75;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
}

.programmes .category-list a:hover {
    background: #002a50;
}

.prayer-form form,
.contact-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}

.prayer-form input,
.prayer-form textarea,
.contact-content input,
.contact-content textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

.prayer-form button,
.contact-content button {
    background: #003f75;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.prayer-form button:hover,
.contact-content button:hover {
    background: #002a50;
}

.message {
    background: #dff0d8;
    color: #3c763d;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .card {
        width: calc(50% - 20px);
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    nav li {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .card {
        width: 100%;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero {
        height: 300px;
    }
    .hero h1 {
        font-size: 32px;
    }
}