/* Basic Reset & Body Style */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light grey background */
    color: #333; /* Dark grey text */
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header & Navigation */
header {
    background: #333; /* Dark background for header */
    color: #fff; /* White text */
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid; /* Accent color */
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
    margin-top: 15px; /* Align vertically */
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
    font-size: 24px;
}

header nav {
    margin-top: 10px; /* Adjust alignment */
}

header a:hover {
    color: #77aaff; /* Accent color on hover */
    font-weight: bold;
}

/* Main Content Area */
main {
    padding: 20px 0;
}

h1, h2 {
    color: #333;
}

/* Section specific styles */
.section {
    background: #fff; /* White background for content sections */
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd; /* Light border */
    border-radius: 5px;
}

.section h2 {
    margin-top: 0;
    color: #77aaff; /* Accent color for section titles */
}

/* Placeholders */
img.placeholder {
    max-width: 100%;
    height: auto;
    background-color: #ccc; /* Grey background for placeholders */
    border: 1px dashed #999;
    display: block;
    margin-bottom: 15px;
    text-align: center;
    padding: 50px 0; /* Give some size */
    color: #666;
}

/* Video Embed Placeholder */
.video-placeholder {
    background-color: #ccc;
    border: 1px dashed #999;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    min-height: 200px; /* Approximate video height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Contact Form Example */
.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    box-sizing: border-box; /* Prevent padding from expanding element */
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background: #77aaff; /* Accent color */
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background: #5588dd;
}

/* Footer */
footer {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #333; /* Dark footer */
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #77aaff; /* Accent color for links */
    text-decoration: none;
}

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

/* Simple grid for music/video layout (optional) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.grid-item {
    background: #f9f9f9; /* Slightly off-white for grid items */
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.grid-item h3 {
    margin-top: 0;
}

