/* General Body Styles */
body {
    font-family: 'Georgia', serif; /* A classic font suitable for a musician */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background */
    color: #f0f0f0; /* Light grey for text on black background */
}

.container {
    width: 85%; /* Slightly wider container for more breathing room */
    max-width: 1100px; /* Max width to keep content readable */
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Color Palette Variables */
:root {
    --dark-grey: #000000; /* Black */
    --medium-grey: #1a1a1a; /* Very dark grey */
    --light-grey: #333333; /* Dark grey for borders or subtle accents */
    --accent-purple: #9b7fdc; /* A soft, muted purple */
    --hover-purple: #7a63ad; /* Slightly darker for hover states */
    --background-light: #0a0a0a; /* Almost black */
    --background-dark: #000000; /* Black */
    --text-color: #f0f0f0; /* Light grey */
    --text-light: #ffffff; /* White */
}


/* Header */
header {
    background: var(--background-dark); /* Black header */
    color: var(--text-light);
    padding-top: 40px; /* Increased padding */
    min-height: 80px;
    border-bottom: 2px solid var(--accent-purple); /* Subtle purple line */
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3.2em;
    font-weight: normal;
    letter-spacing: 1px; /* A little spacing for elegance */
}

header p {
    font-size: 1.3em;
    margin-top: 8px;
    opacity: 0.9;
}

/* Navigation */
nav {
    background: var(--medium-grey); /* Very dark grey nav bar */
    color: var(--text-light);
    text-align: center;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Subtle shadow */
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    padding: 0 20px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-purple); /* Purple on hover */
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('hero-background.jpg') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 120px 0; /* More vertical padding */
    height: auto; /* Allow height to adjust */
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    max-width: 1000px;
    width: 100%;
}

.hero-text {
    flex: 1;
    min-width: 300px; /* Ensure text block doesn't get too small */
    text-align: left;
    padding-right: 30px;
}

.hero-text h2 {
    font-size: 3.8em;
    margin-bottom: 15px;
    font-weight: normal;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
    margin-left: 20px; /* Space between text and image */
    /* Ensure the container for the image takes full available space in its flex item */
    display: flex; /* Use flexbox to make image fill */
    justify-content: flex-end; /* Align to the right */
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /* Removed border-radius and border */
    border-radius: 0; /* No border radius */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5); /* Stronger, elegant shadow */
    border: none; /* No border */
    display: block; /* Ensures it behaves like a block element for full width */
    width: 100%; /* Make the image fill the width of its parent (.hero-image) */
}

.button {
    display: inline-block;
    color: var(--text-light);
    background: var(--accent-purple);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    font-weight: bold;
}

.button:hover {
    background: var(--hover-purple);
    transform: translateY(-2px); /* Slight lift effect */
}

/* Sections */
section {
    padding: 60px 0; /* More vertical padding for sections */
    background: var(--background-light); /* Almost black */
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Lighter shadow */
    border-radius: 5px; /* Rounded section corners */
    color: var(--text-color); /* Light text on dark background */
}

section h2 {
    color: var(--text-light); /* White for headings */
    text-align: center;
    margin-bottom: 40px;
    font-size: 3em;
    font-weight: normal;
    position: relative;
}

section h2::after { /* Underline effect for headings */
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--accent-purple);
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

/* About Section */
#about p {
    font-size: 1.15em;
    text-align: justify;
    margin-bottom: 20px;
    max-width: 800px; /* Limit paragraph width for readability */
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.social-links {
    text-align: center;
    margin-top: 30px;
}

.social-links a {
    color: var(--accent-purple);
    text-decoration: none;
    font-size: 2em; /* Larger icons */
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--hover-purple);
    transform: translateY(-3px); /* Lift effect on icons */
}

#contact p a {
    color: var(--accent-purple); /* Make email link purple */
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact p a:hover {
    color: var(--hover-purple);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--dark-grey); /* Black footer */
    color: var(--text-light);
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-text h2 {
        font-size: 3em;
    }
    .hero-text p {
        font-size: 1.3em;
    }
    section h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header h1 {
        font-size: 2.8em;
    }

    .hero-content {
        flex-direction: column;
        text-align: center; /* Center align text on small screens */
    }

    .hero-text, .hero-image {
        padding-right: 0;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-text h2 {
        font-size: 2.8em;
    }

    .hero-text p {
        font-size: 1.2em;
    }

    nav ul li {
        display: block;
        padding: 8px 0;
    }

    section h2 {
        font-size: 2.2em;
    }

    #about p {
        font-size: 1em;
    }
}
