:root {
    --header-footer-bg: #333333;  /* Reverted to darker anthracite for header/footer */
    --background-color: #f2f2f2;  /* Light grey for content background */
    --content-bg: #ffffff;        /* White for cards and elements */
    --input-bg: #f8f8f8;          /* Lighter grey for input fields */
    --text-color: #606060;        /* Medium grey for text */
    --light-text: #f5f5f5;        /* Light text for dark backgrounds */
    --accent-color: #ffd700;      /* Gold for accents */
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

/* Add minimum height to body and implement sticky footer */
html, body {
    height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: var(--header-footer-bg);
    box-shadow: 0 2px 10px var(--shadow-color);
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 40px; /* Increased from 30px */
    width: auto;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5)); /* Add subtle glow for better visibility */
}

.logo span {
    margin-left: 0.25rem; /* Add a bit more spacing between logo and text */
}

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

nav a {
    text-decoration: none;
    color: var(--light-text);
    position: relative;
}

nav a.active::after,
nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact {
    background: var(--background-color);  /* Changed from content-bg to background-color */
    width: 100%;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.contact h1,
.contact label,
.about h1,
.about-text h2 {
    color: var(--text-color);  /* Changed from header-footer-bg to text-color (#606060) */
}

.contact h1 {
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.contact form {
    width: 100%;
    max-width: none;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0,0,0,0.07);  /* Lighter border */
    border-radius: 4px;
    background: var(--input-bg);  /* Using the new lighter grey */
}

input:focus, textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.5);  /* Gold tinted border on focus */
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);  /* Subtle gold glow */
}

textarea {
    height: 150px;
}

button {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

button:hover {
    opacity: 0.8;
}

footer {
    background: var(--header-footer-bg);
    box-shadow: 0 -2px 10px var(--shadow-color);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    flex-shrink: 0;
    color: var(--light-text);
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

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

social-links i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
    padding: 0;
}

.artist-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.artist-image {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: transform 0.3s ease;
}

.artist-image-container:hover .artist-image {
    transform: scale(1.02);
}

.artist-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-text {
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text h2 {
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

/* Timeline styles */
.timeline {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    border-left: none;
}

.timeline li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

/* Style for dates in timeline */
.timeline li strong {
    color: var(--text-color);  /* Changed from #333333 to --text-color (#606060) */
    font-weight: 600;
    /* Add subtle gold underline for better distinction */
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 1px;
}

/* Remove ::first-line styling that's causing issues */
/* .timeline li::first-line { - removed } */

.timeline li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }

    .artist-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .artist-image-container {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
}

.about {
    padding: 2rem;
}

.about h1 {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Success page styles */
.success-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
}

.success-message {
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-color);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50; /* Green color for success */
    margin-bottom: 1.5rem;
}

.success-message h1 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.success-message p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.success-actions {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--header-footer-bg);
    color: var(--light-text);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #444444;
}
