*{
    font-family: "Poppins", sans-serif;
    color: #F1F6FF;
}

.fontCinzel{
    font-family: 'Cinzel', serif;
}

.customContainer{
    max-width: 1180px;
    margin: auto;
    width: 90%;
}

body{
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.custom-shadow {
    box-shadow: -10px 0px 14px 0px rgba(0, 0, 0, 0.15);
}

.highlight{
    padding: 10px 26px;
    border-radius: 100px;
    background-color: #F1F6FF;
    color: #363F2F !important;
    font-weight: 500;
}

/* Yapışkan navbar için ek stil */
.customNavbar{
    max-width: 1180px;
    width: 100%;
    margin: auto;
}

.sticky-navbar {
  background-color: #363F2F;
  width: 100vw;
  padding: 16px 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

/* Carousel Başlangıç */
.carousel-container-wrapper {
    position: relative;
    width: 100%;
}
.carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-height: 600px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    user-select: none;
}
.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;

    user-select: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.indicator-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;

    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.indicator {
    cursor: pointer;
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
}
.indicator.active {
    background-color: #D1D5DB;
    border: 2px solid #D1D5DB;
    transform: scale(1.5);
}
/* Carousel Bitiş */


/* Galeri Başlangıç */
.gallery-container {
    position: relative;
    overflow: hidden;
  }
  
  /* Görsel sarmalayıcı */
  #imageWrapper {
    display: flex;
  }
  
  /* Görseller */
  .gallery-image {
    flex: 0 0 calc(100% / 7.5); /* Genişlik: %13.3333 */
    max-width: calc(100% / 7.5);
    height: auto;
  }
  
  /* Sağdaki silik efekt için */
  .gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -4px;
    width: calc(100% / 7);
    height: 100%;
    background: linear-gradient(to left, #363F2F, transparent);
    pointer-events: none;
  }

  @media(max-width: 768px){
    .gallery-container::after{
        width: calc(100% / 2);
    }
  }
  /* Galeri Bitiş */
  
  /* Görsel sarmalayıcı */
#imageWrapper {
    display: flex;
    gap: 16px; /* gap-4 */
  }
  
  /* Görseller */
/* styles.css */
.gallery-image {
  flex: 0 0 calc((100% - (16px * 6)) / 7); /* 7 görsel ve 6 boşluk */
  max-width: calc((100% - (16px * 6)) / 7);
  height: auto;
}

@media (max-width: 768px) {
  .gallery-image {
    flex: 0 0 calc((100% - 16px) / 2); /* 2 görsel ve 1 boşluk */
    max-width: calc((100% - 16px) / 2);
  }
}
  
  /* Görsellerin yüksekliğini sabitlemek isterseniz */
  .gallery-image {
    height: 256px;
    object-fit: cover;
  }
  
  /* styles.css */
#imageModal {
  z-index: 9999; /* Modalı her şeyin önüne getirmek için yüksek bir z-index değeri */
  pointer-events: auto; /* Modalın tıklanabilir olmasını sağlamak için */
}

body.modal-open {
  pointer-events: none; /* Modal açıkken body içindeki diğer öğelerin tıklanabilirliğini devre dışı bırakmak için */
}

body.modal-open #imageModal {
  pointer-events: auto; /* Modalın kendisinin tıklanabilir olmasını sağlamak için */
}