:root {
    --primary-color: #1a1a1a; /* Dark Charcoal */
    --secondary-color: #ff6f61; /* Coral - for accents */
    --text-color: #f0f0f0; /* Light Gray */
    --background-color: #2c2c2c; /* Darker Gray */
    --container-bg: #383838; /* Slightly Lighter Gray for content boxes */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Montserrat', sans-serif;
    --logo-font: 'Pacifico', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on small screens */
}

header {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo h1 a {
    font-family: var(--logo-font);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}
nav .logo h1 a:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

#hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 5% 20px; /* Added top padding for fixed header */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x1080.png?text=Awesome+Stage+Shot+with+You') no-repeat center center/cover;
    /* Replace with your actual hero image */
    position: relative;
}

#hero h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ff8a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.bass-clef {
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.bouncy {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-20px);}
    60% {transform: translateX(-50%) translateY(-10px);}
}

.container {
    padding: 60px 5%;
    margin-top: 20px; /* Give space for fixed header if needed on first section */
    background-color: var(--container-bg);
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
section:nth-of-type(odd):not(#hero){
    background-color: var(--background-color); /* Alternate background for sections */
}


.container h2 {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}
.container .subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #bbb;
    font-style: italic;
}

/* About Section */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.profile-pic {
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.profile-pic:hover {
    transform: scale(1.05) rotate(2deg);
}
.about-content div p {
    margin-bottom: 15px;
}
.quirky-fact {
    font-style: italic;
    color: #ccc;
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
    margin-top: 20px;
}


/* Media Section */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.media-item {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.media-item:hover {
    transform: translateY(-5px);
}
.media-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 5px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.audio-container {
    margin-bottom: 10px;
    /* Style your audio player or embed here */
}
.audio-container audio {
    width: 100%;
    border-radius: 5px;
}


/* Gear Section */
.gear-list {
    list-style: none;
    padding-left: 0;
}
.gear-list > li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}
.gear-list > li::before {
    content: '\1F525'; /* Fire emoji, or choose another one like a guitar pick or note */
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2em;
}
.gear-list ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 5px;
}
.gear-joke {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: #bbb;
}

/* Looking For Section */
.looking-for-columns {
    display: flex;
    gap: 40px;
}
.looking-for-columns div {
    flex: 1;
}
.looking-for-columns h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    display: inline-block;
}
.looking-for-columns ul {
    list-style: none;
    padding-left: 0;
}
.looking-for-columns ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.looking-for-columns ul li::before {
    content: '🎸'; /* Guitar emoji */
    position: absolute;
    left: 0;
    font-size: 1.1em;
}


/* Contact Section */
#contact-form {
    max-width: 600px;
    margin: 0 auto 30px auto;
}
#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #444;
    color: var(--text-color);
    font-family: var(--body-font);
}
#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
}
#contact-form textarea {
    resize: vertical;
}
#form-status {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}
.social-links {
    text-align: center;
    margin-top: 30px;
}
.social-links p {
    margin-bottom: 10px;
}
.social-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #ff8a7a;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Basic: Hide for now, implement burger menu later if needed */
    }
    nav {
        justify-content: center; /* Center logo if menu is hidden */
    }
    #hero h2 {
        font-size: 2.2rem;
    }
    #hero p {
        font-size: 1rem;
    }
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .profile-pic {
        margin-bottom: 20px;
    }
    .looking-for-columns {
        flex-direction: column;
    }
    .container h2 {
        font-size: 2rem;
    }
}