/* ---------------- Base Styles ---------------- */
body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fdfdfd;
    color: #111;
    text-align: center;
    line-height: 1.6;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.2em;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo {
    max-width: 720px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.2));
}

.tagline {
    color: #777;
    font-style: italic;
}

.collage {
    text-align: center;
    margin: 60px 0;
}

.collage a {
    display: inline-block;
    line-height: 0;
}

.image {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    margin: 0 auto;

    border-radius: 12px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ---------------- Navigation ---------------- */
#nav-placeholder {
    min-height: 40px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;

    background: white;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #eee;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: clamp(0.75rem, 3vw, 1.1rem);
    padding: 4px 8px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

nav a:hover {
    background-color: #2c6f91;
    color: #fff;
}

.nav-links {
    grid-column: 2;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 1px;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    color: #555;
    vertical-align: middle;
}

.lang-toggle.current {
    color: #2c6f91;
    cursor: default;
    background: rgba(44,111,145,0.1);
}

.lang-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-left: auto;
}

/* ---------------- Content Sections ---------------- */
section {
    margin: 60px 0;
}

.content {
    font-family: 'Cormorant Garamond', serif;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: left;
    color: #3a3a3a;
    font-weight: 530;
    letter-spacing: 0.2px;
}


/* ---------------- Video ---------------- */
.video {
    max-width: 720px;
    margin: 40px auto;
}

.video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* ---------------- Music Links ---------------- */
.music-links {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.music-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.music-logo {
    width: clamp(60px, 8vw, 80px);
    aspect-ratio: 1 / 1;
    object-fit: contain;

    padding: 12px;
    background: white;
    border-radius: 16px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin-bottom: 12px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-item:hover .music-logo {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.music-item span {
    font-weight: 600;
    color: #2c6f91;
    font-size: 1.05rem;
}

/* ---------------- Gallery ---------------- */
.gallery-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.gallery-list img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-list figcaption {
    margin-top: 8px;
    font-style: italic;
    color: #555;
}

#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.2s ease;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------------- Contact Info ---------------- */
.contact-info {
    font-family: 'Lora', serif;
    text-align: center;
    margin: 60px 0;
    font-size: 1.2rem;
}

.contact-info a {
    color: #2c6f91;
    font-weight: 600;
    text-decoration: none;
}

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

/* ---------------- Shows ---------------- */
.shows-content {
    font-family: 'Lora', serif;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
    color: #3a3a3a;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.shows-content .shows-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shows-content .shows-list li {
    margin: 25px 0;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.shows-content .shows-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.shows-content .shows-list a {
    color: #2c6f91;
    font-weight: 600;
    text-decoration: none;
}

.shows-content .shows-list a:hover {
    text-decoration: underline;
}

/* ---------------- Past Shows (Dynamic) ---------------- */
.shows-list li.past {
    background-color: #e0e0e0;
    color: #777;
    box-shadow: none;
    font-style: italic;
    text-decoration: line-through;
    text-decoration-color: rgba(0, 0, 0, 0.2);
}

.shows-list li.past a,
.shows-list li.past a:visited,
.shows-list li.past a:hover,
.shows-list li.past a:active,
.shows-list li.past a:focus {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
    outline: none;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .content {
        font-size: 1rem;
    }

    nav {
        gap: 15px;
    }

    .shows-list li {
        padding: 12px;
        margin: 15px 0;
    }
}

@media (max-width: 799px) {
    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px 20px;
        justify-items: center;
    }
}
