@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Cormorant+Garamond:wght@300;400;500&display=swap');

body {
    padding-top: 6rem; 
    background-color: rgba(223, 225, 226, 255);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0;
    position: relative;
}

nav a.contact-btn {
    background-color: rgba(240, 128, 128, 0.2);
    border-radius: 25px;
    padding: 0.3rem 2rem;
    transition: all 0.3s ease;
}

nav a.contact-btn:hover {
    background-color: lightcoral;
    color: white;
}

#shows {
    color: lightcoral;
}

header {
    position: relative;
    height: 10vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: black;
    text-align: left;
    padding: 1vw 10vw;
    margin: 0;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3.5vw;
    letter-spacing: 0.3em;
    transform: scaleY(1.1);
    transform-origin: left;
    z-index: 1;
    opacity: 0.7;
    margin: 0;
    padding: 0;
}

.shows-container {
    padding: 0 10vw;
    max-width: 900px;
    margin: 0 auto;
}

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

.show-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 0;
        font-size: 0.8rem;
        gap: 1.5rem;
    }

    h1 {
        font-size: 11vw;
        padding-left: 14vw;
    }

    .shows-container {
        padding: 0 10vw;
    }

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

    .gallery-item.wide {
        grid-column: auto;  
        aspect-ratio: 1;
    }

    .gallery-item.tall {
        grid-row: auto;    
        aspect-ratio: 1;
    }
}

@media (min-width: 768px) {
    nav {
        gap: 2rem;
        position: sticky;
    }
    
    nav a {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    body {
        padding-top: 0; 
    }
}

@media (min-width: 1024px) {
    nav {
        gap: 8rem;
        padding: 1.5rem 0;
    }
    
    nav a {
        font-size: 1.6rem;
        letter-spacing: 0.2em;
    }
}

/* Medium Desktop  */
@media (min-width: 780px) and (max-width: 1441px) {
    body {
        padding-top: 0;  
    }
    
    nav {
        position: sticky;
        top: 0;
        gap: 3rem;
        padding: 1rem 0;
    }
    
    nav a {
        font-size: 1.1rem;
        letter-spacing: 0.12em;
        padding: 0.4rem 0.6rem;
    }
    
    nav a.contact-btn {
        padding: 0.4rem 1.2rem;
    }
    
    header {
        height: 150px;
    }
    
    h1 {
        font-size: 4vw;
    }
    
    .shows-container {
        padding: 0 6vw;
    }
    
    .show-section {
        margin-bottom: 3rem;
    }
    
    .show-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1441px) and (max-width: 1919px) {
  nav {
    gap: 4rem;
    padding: 1rem 0;
  }
  
  nav a {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    padding: 0.5rem 0.8rem;
  }
  
  nav a.contact-btn {
    padding: 0.5rem 1.5rem;
  }
  
  header {
    height: 150px;
  }
  
  h1 {
    font-size: 4.5vw;
  }
  
  .shows-container {
    padding: 0 6vw;
  }
  
  .show-section {
    margin-bottom: 3rem;
  }
  
  .show-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

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

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    cursor: default;
}

.lightbox-title {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 1rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-btn:hover {
    color: lightcoral;
}

.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover {
    color: lightcoral;
}

.show-section.comma .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem;
}

.show-section.comma .gallery-item {
    aspect-ratio: 1;  
}

@media (max-width: 768px) {
    .show-section.comma .gallery-grid {
        grid-template-columns: 1fr; 
    }
}
