/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #c9a961;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-light: #999;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #b8975a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image {
    height: 600px;
}

/* ===================================
   PLACEHOLDER IMAGES
   =================================== */
.placeholder-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    border-radius: 8px;
    height: 100%;
    min-height: 200px;
}

.placeholder-video {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    border-radius: 8px;
    height: 100%;
    min-height: 200px;
}

.placeholder-video p {
    font-size: 3rem;
    margin-top: 1rem;
}

/* ===================================
   FEATURED SECTION
   =================================== */
.featured {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.featured-content {
    max-width: 900px;
    margin: 0 auto;
}

.featured-album {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.album-cover {
    width: 100%;
    height: 300px;
}

.featured-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.streaming-link {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.streaming-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

/* ===================================
   UPCOMING SHOWS
   =================================== */
.upcoming {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.shows-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.show-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.show-date {
    text-align: center;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 8px;
}

.show-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.show-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.show-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 5rem 0 3rem;
    text-align: center;
}

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

/* ===================================
   ABOUT PAGE
   =================================== */
.about-content {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.about-image {
    height: 500px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.achievements {
    padding: 5rem 0;
    background-color: var(--bg-light);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.achievement-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.press-quotes {
    padding: 5rem 0;
}

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

.press-quote {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.press-quote p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.press-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===================================
   MUSIC PAGE - TRACKS LAYOUT
   =================================== */
.music-content {
    padding: 5rem 0;
}

.featured-tracks {
    margin-bottom: 5rem;
}

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.track-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.track-artwork {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.track-artwork .placeholder-image {
    width: 100%;
    height: 100%;
    min-height: auto;
    font-size: 0.8rem;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.track-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.track-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.track-controls .play-btn {
    white-space: nowrap;
}

.track-controls .progress-bar {
    flex: 1;
    min-width: 150px;
}

.track-controls .duration {
    white-space: nowrap;
    font-size: 0.85rem;
}

.track-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.action-link {
    padding: 8px 16px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.action-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

/* Responsive styles for tracks */
@media (max-width: 968px) {
    .track-item {
        flex-wrap: wrap;
    }
    
    .track-actions {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .track-item {
        flex-direction: column;
        text-align: center;
    }
    
    .track-artwork {
        width: 100px;
        height: 100px;
    }
    
    .track-controls {
        flex-direction: column;
        width: 100%;
    }
    
    .track-controls .progress-bar {
        width: 100%;
    }
    
    .track-actions {
        width: 100%;
    }
}

/* ===================================
   VIDEOS PAGE
   =================================== */
.videos-content {
    padding: 5rem 0;
}

.featured-video {
    margin-bottom: 5rem;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    aspect-ratio: 16 / 9;
}

.video-details {
    max-width: 900px;
    margin: 0 auto;
}

.video-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.video-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    aspect-ratio: 16 / 9;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.video-meta {
    color: var(--text-light);
    font-size: 0.85rem;
}

.video-cta {
    text-align: center;
    padding: 5rem 0;
    background-color: var(--bg-light);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.video-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===================================
   PHOTOS PAGE
   =================================== */
.photos-content {
    padding: 5rem 0;
}

.gallery-section {
    margin-bottom: 5rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-secondary);
}

.contact-method a {
    color: var(--accent-color);
}

.contact-method a:hover {
    text-decoration: underline;
}

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

.social-link {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 4px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.booking-info {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.booking-info h3 {
    margin-bottom: 1rem;
}

.booking-info ul {
    list-style-position: inside;
    color: var(--text-secondary);
}

.booking-info li {
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.newsletter-signup {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-content {
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 20px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
    }

    .featured-album {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-cover {
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 400px;
    }

    .album-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .achievements-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .audio-player {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .audio-cover {
        margin: 0 auto;
    }

    .audio-controls {
        flex-direction: column;
    }

    .progress-bar {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .video-grid,
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .streaming-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}