
#gallery-icon {
    height: 60px;
}

.gallery-main-section {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.gallery-header-container {
    max-height: 100px;
    width: 100%;
    display: flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: flex-start;
    background-color: #1F1F1F;
}

.gallery-header-container h1 {
    margin: auto 10px;
    font-size: 40px;
    font-weight: 700;
    color: white;
}

#gallery-icon {
    height: 50px;
}



.gallery-intro-text-container {
    width: 100%; 
    margin: 0 auto 20px auto;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}











/* Swiper container */
.swiper.mySwiper {
  width: 90%;
  max-width: 1000px;
  margin: auto auto;
}

/* Slides */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: auto;
  height: auto;
  max-height: 60vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

/* Swiper navigation arrows (small, white, default) */
.swiper-button-next::after,
.swiper-button-prev::after {
    color: white;
    font-size: 60px;
    font-weight: bolder;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Enlarged image inside modal */
.modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* Modal close button */
.modal-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Modal arrows (big and yellow) */
.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;      /* big arrows */
  color: #FFD700;       /* yellow */
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  z-index: 1010;
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

/* Optional: hide Swiper arrows on mobile */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .gallery-intro-text-container {
        padding: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .gallery-intro-text-container {
        padding: 10px;
        font-size: 0.9rem;
    }
}