@import url(https://db.onlinewebfonts.com/c/1e6ec96c95301fa73aa1d026f161a269?family=Marzo+W00+Regular); 

@font-face {
    font-family: "Marzo W00 Regular";
    src: url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.eot");
    src: url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.svg#Marzo W00 Regular")format("svg");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Marzo W00 Regular", sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    font-family: "Lucida Console", "Courier New", monospace;
    background: linear-gradient(to bottom, #236275, #000000);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00a86b;
}

header {
    background-image: url('./images/content-header.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 300px; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

header h1 {
    background-color: #252525;
    background: transparent linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    border: #000000 2px solid;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2rem;
}

main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.youtube-widget {
    text-align: center;
}

.g-ytsubscribe {
    margin: 2rem auto;
    display: inline-block;
}

/* Three songs side-by-side on larger screens, stacked on mobile */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    background: #252525;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: #00a86b;
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.video-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    text-align: center;
    background: #252525;
    color: #ffffff;
}

/* Featured main video */
.featured-video {
    margin: 3rem auto;
    max-width: 1000px;
}

.featured-video .video-card {
    border: 2px solid #00a86b;
}

.featured-video iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

.channel-link {
    text-align: center;
    margin: 3rem 0 2rem;
}

.channel-link a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.channel-link a:hover {
    color: #00a86b;
    text-decoration: underline;
}

section p {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
    color: #cccccc;
}

footer {
    background: linear-gradient(to top, #236275, #000000);
    text-align: center;
    padding: 2rem 0;
}

footer img.logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

footer p {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 0.9rem;
    color: #cccccc;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    nav ul {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    nav ul li a {
        font-size: 0.75rem;
    }

    header {
        height: 125px;
        margin-top: 40px; 
    }

    header h1 {
        font-size: 1rem; 
        padding: 0.75rem 1.5rem;
    }

    main {
        padding: 1.5rem;
    }

    section p {
        font-size: 1rem;
    }

    .music-grid {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .video-card h3 {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .featured-video {
        margin: 2rem auto;
    }

    .channel-link a {
        font-size: 1.1rem;
    }
}