/* Base Styles & Reset */
:root {
    --primary-color: #A34E78; /* Deep Rose/Plum */
    --secondary-color: #D4A8B9; /* Lighter Plum */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-light: #f4f4f4;
    --bg-dark: #222222;
    --font-primary: 'Helvetica Neue', sans-serif;
    --font-secondary: 'Georgia', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    margin-bottom: 20px;
    color: var(--primary-color);
}

h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
}

/* --- Header & Navigation --- */
#main-header {
    background: var(--bg-dark);
    color: var(--text-color-light);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    font-size: 1.8em;
}

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

nav ul li a {
    color: var(--text-color-light);
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

#mobile-menu-toggle {
    display: none; /* Hide on desktop */
    background: transparent;
    border: none;
    color: var(--text-color-light);
    font-size: 1.8em;
    cursor: pointer;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: var(--text-color-light);
}

/* --- Hero Section --- */
#hero {
    background: url('placeholder-hero.jpg') no-repeat center center/cover; /* Replace with an actual hero image */
    text-align: center;
    color: var(--text-color-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
}

#hero h2 {
    font-size: 3.5em;
    color: var(--text-color-light);
}

/* --- About Section --- */
#about {
    text-align: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 30px;
    border: 5px solid var(--primary-color);
}

/* --- Music Section --- */
.bg-light {
    background: var(--bg-light);
}

.track-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.track-item {
    background: var(--text-color-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.track-item h4 {
    color: var(--bg-dark);
    margin-top: 0;
}

audio {
    width: 100%;
    margin-top: 15px;
}

/* --- Gigs Section --- */
#gig-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

#gig-list li {
    background: var(--text-color-light);
    border-left: 5px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* --- Contact Section --- */
.bg-dark {
    background: var(--bg-dark);
    color: var(--text-color-light);
    text-align: center;
}

#contact h3 {
    color: var(--secondary-color);
}

#contact a {
    color: var(--secondary-color);
    text-decoration: none;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
}

#contact-form textarea {
    resize: vertical;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    font-size: 2em;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

#form-message {
    margin-top: 10px;
    color: limegreen;
}

.hidden {
    display: none;
}

/* --- Footer --- */
footer {
    background: #111;
    color: #999;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 768px) {
    /* Header/Navigation */
    nav {
        display: none; /* Hide standard nav */
        position: absolute;
        top: 60px; /* Below header */
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        box-shadow: 0 5px 5px rgba(0,0,0,0.2);
    }

    nav.active {
        display: block; /* Show when active */
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    nav ul li a {
        display: block;
        padding: 15px;
    }

    #mobile-menu-toggle {
        display: block;
    }

    /* General Adjustments */
    .section-padding {
        padding: 60px 0;
    }

    #hero h2 {
        font-size: 2.5em;
    }

    /* Music Section */
    .track-list {
        grid-template-columns: 1fr; /* Stack tracks vertically */
    }
}
