﻿/* GLOBAL STYLES */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.container {
    max-width: 1025px;
    margin: 0 auto;
    padding: 10px;
}

/* RESPONSIVE MENU */
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #111;
    padding: 10px;
    border: 1px solid #333;
    margin: 20px 0;
}

nav a {
    color: #800000;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 18px;
    font-size: 15px;
    text-transform: uppercase;
}

/* BUTTON-STYLE LINKS */
.song-link {
    display: block;
    background-color: #FF0000; /* Brighter Red */
    color: #ffffff !important;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin: 15px auto;
    padding: 15px;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px #b30000; /* Darker red shadow for depth */
    transition: all 0.2s;
    text-align: center;
}

.song-link:active {
    box-shadow: 0 2px #b30000;
    transform: translateY(2px);
}

.caption {
    font-family: "Arial Black";
    font-size: 13px;
    color: #ffffff;
    margin: 15px 0 30px 0;
    text-align: center;
}

/* MOBILE OVERRIDE */
@media (max-width: 600px) {
    nav { flex-direction: column; }
    nav a { border-bottom: 1px solid #222; font-size: 18px; }
    .song-link { width: 90%; font-size: 16px; }
    
/* RESPONSIVE VIDEO CONTAINER */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid #333;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
    
    
    
}
