/* --- Photo Gallery Swiper Styles --- */
#photos-carousel .photo-gallery-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
#photos-carousel .photo-gallery-swiper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0;
    background: none;
}
#photos-carousel .photo-gallery-swiper .swiper-wrapper {
    height: 400px;
}
#photos-carousel .photo-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Gallery overlay styles */
#photos-carousel .photo-gallery-swiper .photo-gallery-attribution-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1rem;
    padding: 8px 12px;
    text-align: right;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 1px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    box-sizing: border-box;
}
#photos-carousel .photo-gallery-swiper .photo-attribution-container:hover .photo-gallery-attribution-overlay {
    opacity: 1;
}

/* Band member overlay styles */
.band-container .band-member-attribution-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1rem;
    padding: 8px 12px;
    text-align: right;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 1px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: auto;
    box-sizing: border-box;
}
.band-container .member-img:hover .band-member-attribution-overlay {
    opacity: 1;
}

#photos-carousel .photo-gallery-flex .swiper-button-prev,
#photos-carousel .photo-gallery-flex .swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
    box-sizing: border-box;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    background: none;
    color: var(--leather-brown) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
#photos-carousel .photo-gallery-flex .swiper-button-prev:hover,
#photos-carousel .photo-gallery-flex .swiper-button-next:hover {
    color: #e16f13 !important;
    fill: #e16f13 !important;
}
#photos-carousel .photo-gallery-swiper .swiper-pagination {
    position: static;
    margin-top: 15px;
    text-align: center;
}

/* --- Band Member Swiper Styles --- */
.band-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(210, 180, 140, 0.1);
    border-radius: 15px;
    overflow: hidden;
}
.band-container .swiper {
    width: 100%;
    height: 600px;
    background: none;
    overflow: hidden;
}
.band-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-height: 400px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.band-container .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.swiper-button-next,
.swiper-button-prev {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    box-sizing: border-box;
    padding: 0 !important;
    color: var(--leather-brown) !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    position: absolute;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }
.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after,
.swiper-button-next:hover svg,
.swiper-button-prev:hover svg {
    color: #e16f13 !important;
    fill: #e16f13 !important;
}

/* --- Swiper Pagination Bullets --- */
.swiper-pagination-bullet {
    background: var(--leather-brown) !important;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 4px !important;
    border-radius: 50%;
    transition: background 0.2s, opacity 0.2s;
    box-shadow: none;
}
.swiper-pagination-bullet-active {
    background: #e16f13 !important;
    opacity: 1;
}

/* --- Layout and Utility --- */
#photos-carousel {
  float: left;
  width: 48%;
  margin-right: 2%;
  position: relative;
}
#tour {
  float: left;
  width: 48%;
  margin-left: 2%;
  overflow: auto;
}
div > section:last-of-type {
  clear: both;
}
header#top {
    position: relative;
}
.header-attribution {
    position: absolute;
    right: 16px;
    bottom: 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 0.85rem;
    padding: 3px 10px;
    border-radius: 8px;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 1px;
    z-index: 20;
    pointer-events: auto;
}
.header-attribution a,
#photos-carousel .photo-gallery-swiper .photo-gallery-attribution-overlay a,
.band-container .band-member-attribution-overlay a {
    pointer-events: auto;
}