/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B1538;
    --secondary-color: #2C1810;
    --accent-color: #C4986A;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #faf8f5;
    --bg-dark: #1a1a1a;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(44, 24, 16, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(196, 152, 106, 0.2);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    margin: 4px 0;
    transition: var(--transition);
}

/* Social Icons in Navigation */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.social-icons a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Music Section */
.music {
    background: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    margin-top: -0.5rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.music-item {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.music-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.music-item iframe {
    display: block;
    width: 100%;
}

.music-info {
    padding: 20px;
}

.music-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.music-info p {
    color: #666;
    font-style: italic;
}

.music-note {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px;
    background: #fff9f0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.music-note p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Media/Video Section */
.media {
    background: var(--bg-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #666;
    font-style: italic;
}

.video-note {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px;
    background: #fff9f0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.video-note p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Musicians Section */
.musicians {
    background: white;
}

.musicians-grid {
    display: grid;
    gap: 60px;
}

.musician-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    animation: fadeIn 0.6s ease;
}

.musician-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.musician-card:nth-child(even) .musician-image {
    order: 2;
}

.musician-card:nth-child(even) .musician-info {
    order: 1;
}

.musician-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    /* Fixed aspect ratio for consistent sizing */
    aspect-ratio: 4 / 5;
}

.musician-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.musician-image:hover img {
    transform: scale(1.05);
}

.musician-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.instrument {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.musician-bio p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

.gallery-content {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-light);
}

.gallery-caption p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
}

/* Concerts Section */
.concerts {
    background: white;
}

.concerts-list {
    max-width: 800px;
    margin: 0 auto;
}

.concert-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 25px;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.concert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.concert-item.upcoming {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a51d42 100%);
    color: var(--text-light);
}

.concert-item.upcoming .concert-date,
.concert-item.upcoming h3,
.concert-item.upcoming p {
    color: var(--text-light);
}

.concert-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.concert-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.concert-details p {
    color: #666;
    font-size: 1rem;
}

.past-concerts-header {
    margin-top: 60px;
}

.past-concerts {
    /* No height limit - controlled by JavaScript */
}

.show-more {
    display: block;
    margin: 40px auto 0;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.show-more:hover {
    background: #a51d42;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.3);
}

.show-more.hidden {
    display: none;
}

.past-concert.hidden-concert {
    display: none !important;
}

.past-concert.visible-concert {
    display: grid !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Contact Section */
.contact {
    background: var(--secondary-color);
    color: var(--text-light);
}

.contact .section-header h2 {
    color: var(--accent-color);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.contact-email a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-email a:hover {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 40px 0 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .musician-card,
    .musician-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .musician-card:nth-child(even) .musician-image,
    .musician-card:nth-child(even) .musician-info {
        order: unset;
    }

    .concert-item {
        grid-template-columns: 120px 1fr;
        gap: 20px;
    }

    .music-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .social-icons {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }

    .concert-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .concert-date {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .musician-info h3 {
        font-size: 1.6rem;
    }
}
