/* --- Reset & Basic Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Choose a modern font */
    line-height: 1.6;
    background-color: #1a1a1a; /* Dark background */
    color: #f4f4f4; /* Light text */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden; /* Clear floats */
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 0.8em;
    color: #00bfff; /* Accent color - deep sky blue, choose your own */
}
h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }

p {
    margin-bottom: 1em;
}

a {
    color: #00bfff;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Header & Navigation --- */
header {
    background: #222;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 3px solid #00bfff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 1.8em;
}
header .logo a {
    color: #fff;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    padding: 0.5em;
    transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active { /* You'd need PHP/JS to add 'active' class */
    color: #00bfff;
}

.mobile-nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}


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

.content-section {
    padding: 40px 0;
    border-bottom: 1px solid #333;
}
.content-section:last-child {
    border-bottom: none;
}

/* --- Hero Section (Homepage) --- */
.hero {
    background: url('../images/hero_background.jpg') no-repeat center center/cover; /* Add a hero image */
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero::before { /* Overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative; /* To be above the overlay */
    z-index: 1;
}
.hero h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #fff;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background: #00bfff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
    background: #009acd;
    color: #fff;
    transform: translateY(-2px);
}

/* --- Embed Containers (for responsive embeds) --- */
.embed-container {
    position: relative;
    padding-bottom: 75px; /* Default for Mixcloud/Soundcloud player height */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #FFF; /* Placeholder bg for embeds */
    margin-bottom: 1em;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.embed-container.video-embed { /* For 16:9 YouTube videos */
    padding-bottom: 56.25%;
}

/* --- Platform Links (Homepage) --- */
.platform-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
}
.platform-link:hover {
    background-color: #2a2a2a;
    border-color: #00bfff;
}
.platform-link i {
    margin-bottom: 10px;
}


/* --- Music & Video Items --- */
.music-item, .video-item, .event-item {
    background: #252525;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 5px solid #00bfff;
}

/* --- About Page --- */
.about-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.about-photo {
    width: 300px; /* Adjust as needed */
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0; /* Prevent image from shrinking too much */
}


/* --- Contact Form --- */
.contact-form div {
    margin-bottom: 15px;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    background-color: #333;
    color: #f4f4f4;
    border-radius: 3px;
}
.contact-form textarea {
    resize: vertical;
}
.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
    text-align: center;
}
.message.success {
    background-color: #28a745; /* Green */
    color: white;
}
.message.error {
    background-color: #dc3545; /* Red */
    color: white;
}
.contact-direct {
    margin-top: 2em;
    text-align: center;
}

/* --- Footer --- */
footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
}
footer .social-links a {
    color: #aaa;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}
footer .social-links a:hover {
    color: #00bfff;
}
footer p {
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    header nav {
        display: none; /* Hidden by default on mobile */
        width: 100%;
        margin-top: 10px;
    }
    header nav.active { /* Class added by JS to show menu */
        display: block;
    }
    header nav ul {
        flex-direction: column;
    }
    header nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    .mobile-nav-toggle {
        display: block; /* Show hamburger */
        position: absolute;
        top: 1.2rem;
        right: 1rem;
    }

    .hero h2 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .about-photo {
        width: 80%;
        max-width: 300px; /* Max size on mobile */
        margin-bottom: 20px;
    }
}

/* Helper class */
.text-center {
    text-align: center;
}
.sr-only { /* For screen readers */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}