/* Reset and Base Styles - DeVotchKa Inspired */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background-color: #000000;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Color Variables - DeVotchKa Dark Theme */
:root {
    --primary-color: #ffffff;
    --secondary-color: #cccccc;
    --accent-color: #888888;
    --text-color: #ffffff;
    --text-light: #cccccc;
    --text-muted: #888888;
    --background-color: #000000;
    --background-secondary: #111111;
    --background-tertiary: #222222;
    --border-color: #333333;
    --hover-color: #333333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 140px;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section - DeVotchKa Minimalist Style */
.hero {
    margin-top: 80px;
    padding: 120px 0;
    background: var(--background-color);
    color: var(--primary-color);
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

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

.btn-secondary {
    border-color: var(--text-light);
    color: var(--text-light);
}

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

.artist-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    opacity: 0.95;
    margin: 0 auto;
    display: block;
    border: 2px solid var(--border-color);
    background: var(--background-secondary);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.artist-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.artist-photo:not([src]),
.artist-photo[src=""] {
    background: var(--background-secondary);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-photo:not([src])::before,
.artist-photo[src=""]::before {
    content: "Artist Photo";
}

/* About Section - Minimalist */
.about {
    padding: 120px 0;
    background: var(--background-secondary);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--background-tertiary);
    border: 1px solid var(--border-color);
}

.feature i {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Latest Release Section */
.latest-release {
    padding: 120px 0;
    background: var(--background-color);
}

.latest-release h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.release-image img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: var(--background-secondary);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.release-image img:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.release-image img:not([src]),
.release-image img[src=""] {
    background: var(--background-secondary);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 300px;
}

.release-image img:not([src])::before,
.release-image img[src=""]::before {
    content: "Album Cover";
}

.release-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.release-date {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.release-credits {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--background-tertiary);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
}

.release-credits p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.release-credits strong {
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Album Player Section */
.album-player-section {
    margin: 2rem 0;
}

.album-player-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.album-player {
    background: var(--background-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.album-player:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(233, 151, 8, 0.1);
}

.album-player iframe {
    border-radius: 4px;
}

/* Single Player Section */
.single-player-section {
    margin: 2rem 0;
}

.single-player-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.single-player {
    background: var(--background-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.single-player:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(233, 151, 8, 0.1);
}

.single-player iframe {
    border-radius: 4px;
}

/* Release Separator */
.release-separator {
    margin: 4rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    position: relative;
}

.release-separator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Error Page Styles */
.error-section {
    padding: 0;
    margin-top: -40px;
    background: var(--background-color);
}

.error-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.error-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 300;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.error-suggestion {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.error-links p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.error-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.error-links li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.error-links li a:hover {
    color: var(--text-primary);
}



.album-link {
    text-align: center;
}

.album-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer - Minimalist Dark */
.footer {
    background: var(--background-secondary);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page Header - Minimalist */
.page-header {
    margin-top: 80px;
    padding: 100px 0;
    background: var(--background-color);
    color: var(--primary-color);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Streaming Platforms */
.streaming-platforms {
    padding: 80px 0;
    background: var(--background-color);
}

.streaming-platforms h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.platforms-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.platforms-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.platforms-top {
    /* 3 cards on top */
}

.platforms-bottom {
    /* 2 cards on bottom */
}

.platform-card {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    min-width: 200px;
    max-width: 250px;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.platform-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.platform-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Featured Release */
.featured-release {
    padding: 80px 0;
    background: var(--background-color);
}

.featured-release h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.release-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.release-player iframe {
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.album-cover-display {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: var(--background-secondary);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.album-cover-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.album-cover-large {
    width: 100%;
    height: auto;
    display: block;
}

.release-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-date {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.track-listing {
    margin-bottom: 2rem;
}

.track-listing h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.track-listing ol {
    list-style: none;
    counter-reset: track-counter;
}

.track-listing li {
    counter-increment: track-counter;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
}

.track-listing li::before {
    content: counter(track-counter, decimal-leading-zero);
    font-weight: 400;
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 0.9rem;
}

.track-listing span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.track-listing a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
}

.track-listing a:hover {
    color: var(--primary-color);
}

.release-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.release-actions .btn {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}



/* Social Media Section */
.social-media {
    padding: 80px 0;
    background: var(--background-color);
}

.social-media h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-card {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 320px;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.social-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Music Info Section */
.music-info {
    padding: 80px 0;
    background: var(--background-color);
    text-align: center;
}

.music-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.genre-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.genre-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--background-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-details {
    margin-top: 0.9rem;
}

.booking-details {
    margin-left: 0.75rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: var(--text-light);
}

.social-connect h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--background-secondary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.bandcamp:hover {
    background: #629aa0;
    color: white;
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.captcha-group {
    background: var(--background-secondary);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#captcha-question {
    font-weight: 300;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

#captcha {
    max-width: 100px;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    color: #856404;
    font-size: 0.9rem;
}

/* Shows Page Styles - Minimalist */
.shows-management {
    padding: 120px 0;
    background: var(--background-secondary);
}

.shows-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.shows-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shows-calendar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.show-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: var(--background-tertiary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
}

.show-item:hover {
    border-color: var(--primary-color);
}

.show-date {
    text-align: center;
    min-width: 80px;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.date-year {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.show-details h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-location {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.show-time {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.show-description {
    color: var(--text-muted);
    font-style: italic;
}

.show-actions {
    text-align: right;
}

.show-status {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.shows-note {
    background: var(--background-tertiary);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
}

/* Showcases Section */
.showcases-section {
    padding: 80px 0;
    background: var(--background-color);
}

.showcases-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.showcases-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.showcases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.showcase-card {
    background: var(--background-secondary);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.showcase-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-frequency {
    background: var(--primary-color);
    color: var(--background-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-details {
    flex-grow: 1;
}

.showcase-details p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.showcase-details strong {
    color: var(--primary-color);
}

.showcase-actions {
    margin-top: 1.5rem;
}

/* Booking Info */
.booking-info {
    padding: 80px 0;
    background: var(--background-color);
}

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

.booking-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.booking-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.booking-contact {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.booking-contact h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-compact p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info-compact i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background-color: var(--background-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 100px;
        max-width: 500px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .artist-photo {
        max-width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .release-content {
        grid-template-columns: 1fr;
    }

    .release-showcase {
        grid-template-columns: 1fr;
    }

    .album-player {
        padding: 0.75rem;
    }

    .single-player {
        padding: 0.75rem;
    }

    .release-separator {
        margin: 2.5rem 0;
    }

    .error-content {
        padding: 1rem;
    }

    .error-content h2 {
        font-size: 2rem;
    }

    .error-message {
        font-size: 1.1rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .btn {
        width: 200px;
    }

    .error-links ul {
        flex-direction: column;
        gap: 1rem;
    }



    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .platforms-row {
        flex-direction: column;
        align-items: center;
    }

    .platform-card {
        max-width: 300px;
        width: 100%;
    }

    .social-grid {
        flex-direction: column;
        align-items: center;
    }

    .social-card {
        max-width: 300px;
        width: 100%;
    }

    .release-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .release-actions .btn {
        flex: none;
        min-width: auto;
        max-width: none;
        width: 100%;
    }

    .genre-tags {
        justify-content: center;
    }

    /* Contact page responsive */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    /* Shows page responsive */
    .shows-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .show-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .show-actions {
        text-align: center;
    }

    .showcases-grid {
        grid-template-columns: 1fr;
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .showcase-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
