/* Basic Reset & Body Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styles */
.header {
    width: 100%;
    position: relative;
    overflow: hidden; /* Ensures image doesn't overflow */
    background-color: #000; /* Fallback background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px; /* Space below title */
}

.header-img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    object-fit: cover; /* Covers the area without distortion */
    object-position: center; /* Centers the image */
    max-height: 300px; /* Limit height for larger screens */
}

.channel-title {
    color: #fff;
    font-size: 2.5em;
    text-align: center;
    margin-top: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Main Content Area */
.content {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Channel Links Section */
.channel-links {
    display: flex;
    flex-wrap: wrap; /* Allows icons to wrap on smaller screens */
    justify-content: center;
    gap: 200px; /* Space between icons */
    margin-top: 30px;
    margin-bottom: 40px;
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 120px; /* Fixed width for icon block */
    text-align: center;
}

.icon-link:hover {
    transform: translateY(-5px);
    color: #007bff; /* Example hover color */
}

.icon-link i {
    font-size: 12em; /* Icon size */
    margin-bottom: 10px;
}

.youtube-icon {
    color: #FF0000; /* YouTube red */
}

.blog-icon {
    color: #E65100; /* Example blog orange */
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.about-section h2 {
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
}

/* --- Responsive Design (Media Queries) --- */

/* Small devices (e.g., mobile phones) */
@media (max-width: 600px) {
    .header-img {
        max-height: 200px; /* Smaller header image on mobile */
    }

    .channel-title {
        font-size: 1.8em;
    }

    .channel-links {
        flex-direction: row; /* Keep row for two icons, let wrap if more */
        gap: 20px;
    }

    .icon-link {
        width: 100px; /* Adjust width for smaller screens */
    }

    .icon-link i {
        font-size: 3em;
    }

    .content {
        padding: 0 15px;
    }

    .about-section {
        padding: 20px;
    }
}

/* Medium devices (e.g., tablets) */
@media (min-width: 601px) and (max-width: 900px) {
    .header-img {
        max-height: 250px;
    }

    .channel-title {
        font-size: 2.2em;
    }

    .channel-links {
        gap: 40px;
    }
}

/* Large devices (e.g., desktops) - styles already largely covered by base CSS */
@media (min-width: 901px) {
    .header-img {
        max-height: 350px; /* Slightly taller header for very large screens if desired */
    }
}