body {
    min-height: 600px;
    overflow-x: hidden;
    background-color: rgb(36,41,45);
    background-attachment: fixed;
    font-family: "Playfair Display", "Georgia", serif;
    text-align: center;
    margin: 0;
    padding: 0;
    color: none;

}


.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 10px;
}

.container {
    width: fit-content;
    max-width: 1440px;
    height: auto;
    display: grid;
}

.tag{
    color: rgb(247, 233, 233);
    display: flex;
    align-self: start;
    padding-left: 20px;
}


/* ========================================================================= */
/* ============================( images & dots )============================ */
/* ========================================================================= */

.slideshow-image-block {
  position: relative;
  aspect-ratio: 16/9;
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y; /* prevent native scrolling left-right */
  user-select: none;   /* avoid accidental text select */
}

.slideshow-image {
  width: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out, transform 0.6s ease-in-out;
  border-radius: 20px;
  /* pointer-events: none;    */
  pointer-events: auto; 
  touch-action: none;   
}

.dots {
  position: absolute;
  bottom: 15px;
  display: flex;
  gap: 8px;
  z-index: 10;
  background-color: rgba(191, 198, 205, 0.4);
  padding: 8px 16px;
  border-radius: 16px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #363535;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  transform: scale(1);
  opacity: 0.7;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.2);
  opacity: 1;
}

/* ============================================================== */

/* Media Scroller */
.media-scroller {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    scroll-snap-type: x mandatory;
    background-color: aliceblue;
    width: 96%;
    max-width: 90vw;
    white-space: nowrap;
    margin: 10px auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 74, 74, 0.8) transparent;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
}

.media-scroller::-webkit-scrollbar {
    height: 8px;
}

.media-scroller::-webkit-scrollbar-thumb {
    background-color: rgba(74, 74, 74, 0.6);
    border-radius: 4px;
}

.media-scroller::-webkit-scrollbar-track {
    background: transparent;
}



.media-element {
    flex: 0 0 auto;
    max-width: 160px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #ffffff;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease-in-out;
}
.full-img{
    border: 2px solid #ffffff;
}

.full-img:hover, .media-element:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease-in-out;
    /* box-shadow: 2px 2px 20px rgba(245, 3, 3, 0.4); */
    
}

.snaps-none{
    scroll-snap-type: none;
    gap: 10px;
}
.reel{
    aspect-ratio: 16/9;
    box-shadow: 5px 5px 20px #383838c5;
    max-height: 290px; 
    padding: 0px;
    margin: 0px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }
    .slideshow-wrapper{
        width: 95vw;
    }
    .media-scroller {
        width: 95vw;
        max-width: 100%;
        padding: 10px;
    }
    .media-element {
        max-width: 120px;
    }
    .back-button {
        font-size: 14px;
        padding: 8px;
    }
}


