/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: ebrima, sans-serif;
}
.boldonse-regular {
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
    line-height: 1.6;
    color: #333;
    background: #fff;
}

h1 {
    color: #000; /* Red */
}
h2, h3 {
    color: #ff0000; /* Red */
}

/* Navigation */
header {
    background: #000;
    padding: 1rem;
    display: flex;
    justify-content: space-between; /* Logo on the left, nav-links on the right */
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
    align-items: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: #000; /* Black */
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal;
    transition: color 0.3s ease;
    position: relative;
    align-items: center;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff0000; /* Red */
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    color: #000; /* Black */
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    background-image: url('images/ki.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: flex-start; /* Align text to the left */
    align-items: center;
    padding-left: 10%; /* Add padding to align text from the left */
    color: #000; /* Black */
}

.hero-content h1 {
  font-family: "Anton", sans-serif;
  font-weight: 800;
  font-style: normal;
}

}

}

.hero-content h1 .africa {
    color: #ff0000; /* Red */
    font-weight: 1200; /* Extra bold */
}

.stream-btn {
    background: #ff0000; /* Red */
    color: #fff;
    margin-top: 20px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.stream-btn:hover {
    background: #cc0000; /* Darker red */
}

/* About Section */
.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.about-text {
    flex: 1;
    text-align: justify; /* Fully justify text */
}

/* Mission Section */
.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: justify;
}

.mission-text p {
    margin-bottom: 1rem;
}

/* Card Design System */
.card-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Stream Now Section */
.stream-section {
    background: #8B0000; /* Deep red */
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    text-emphasis-color: white;
}

.social-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-logos img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-logos img:hover {
    transform: scale(1.2);
}
/* Join Us Section */
.join-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.join-image img {
    width: 100%;
    border-radius: 12px;
}

.join-text {
    flex: 1;
    text-align: justify; /* Fully justify text */
}
/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button[type="submit"] {
    background: #ff0000; /* Red */
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #cc0000; /* Darker red */
}

/* Footer */
footer {
    background: #ff0000; /* Red */
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    color: #fff;
    margin: 0 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-content, .join-content {
        flex-direction: column;
    }

    .about-image img, .join-image img {
        width: 100%;
    }
}