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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navigation */
.navbar {
    background-color: #000000;
    border-bottom: 1px solid #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-logo-img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.7;
    border-bottom: 1px solid #ffffff;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.logo-placeholder {
    border: 2px dashed #ffffff;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.logo-placeholder p {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Hero Image Section */
.hero-image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.hero-image {
    max-width: 100%;
    max-width:1000px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Section */
.intro {
    padding: 4rem 0;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro .lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

.intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background-color: #000000;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
}

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

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid #ffffff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    font-style: italic;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

#email-link a{
    color: #ffffff;
}

#email-link a:hover{
    color: #b6b6b6;
}

/* Team Members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.team-member-name h4 {
    font-size: 1.2rem;
    font-weight: normal;
}

/* Shows Section */
.shows-section {
    padding: 3rem 0 4rem;
}

.show-card {
    border: 1px solid #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.show-card:hover {
    transform: translateX(10px);
}

.show-image {
    flex: 0 0 35%;
    max-width: 35%;
}

.show-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ffffff;
}

.show-content {
    flex: 1;
    min-width: 0;
}

.show-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.show-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.show-meta span,
.show-meta a {
    display: inline-block;
}

.show-venue {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.show-venue:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.show-dates::before {
    content: "📅 ";
}

.show-venue::before {
    content: "📍 ";
}

.show-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.show-details {
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.show-review {
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.8;
}

.show-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.show-actions .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.gallery-trigger {
    cursor: pointer;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.past-show {
    opacity: 0.85;
}

/* Inline Gallery for Past Shows */
.inline-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.inline-gallery-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 1px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inline-gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border: 2px solid #ffffff;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: #ffffff;
    color: #000000;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    line-height: 1;
    padding: 0.25rem 0.75rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    color: #ffffff;
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
}

/* Photo Credits */
.photo-credits {
    padding: 2rem 0;
    text-align: center;
}

.photo-credits p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* Footer */
footer {
    background-color: #000000;
    border-top: 1px solid #ffffff;
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        min-height: 50vh;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro .lead {
        font-size: 1.1rem;
    }

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

    .show-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .show-image {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .show-card h2 {
        font-size: 1.5rem;
    }

    .show-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .show-actions {
        flex-direction: column;
    }

    .show-actions .btn {
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.5rem 0.75rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .inline-gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

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

    .team-member-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo-img {
        height: 30px;
    }

    .nav-menu {
        font-size: 0.9rem;
    }

    .intro h1 {
        font-size: 1.5rem;
    }

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

