/* ---------------- 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;
}

.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 {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

nav a:hover {
    background-color: #0073e6;
    color: #fff;
}

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

.content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ---------------- 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: #0073e6;
    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;
}

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

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

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

/* ---------------- Shows ---------------- */
.shows-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shows-list li {
    margin: 20px 0;
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

/* ---------------- 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;
    }
}
