@media (max-width: 900px) {

    .bottom-bar {
        position: sticky;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        z-index: 9999999999999999;
        /* Ekrana tam sığması için */
        flex-wrap: wrap;
    }

    .bottom-bar a {
        text-decoration: none;
        color: #333;
        text-align: center;
        font-size: 12px;
        flex: 1; /* Her elemanı eşit şekilde yerleştirir */
    }

    .bottom-bar a .icon {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .reservation-button {
        position: absolute;
        top: -20px;
        background-color: #fff;
        color: #000;
        border: 2px solid #ccc;
        border-radius: 30px;
        padding: 5px 15px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 2000; /* Diğer öğelerin üstünde görünmesi için */
    }

    .reservation-button .icon {
        font-size: 18px;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    /*background: #976a4e !important;*/
    padding: 8px !important;
    color: white !important;
}

/*.swiper-slide {*/
/*    opacity: 0.4;*/
/*    transition: opacity 0.5s ease-in-out;*/
/*}*/

/*.swiper-slide-active {*/
/*    opacity: 1;*/
/*}*/


.gallery-item {
    opacity: 0.5; /* Pasif slaytların saydamlığını düşürüyoruz */
    transition: opacity 0.3s ease-in-out;
}

.gallery-item.slick-current {
    opacity: 1; /* Aktif olan slayt tamamen görünür olacak */
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background: #000 !important;
    color: white !important;
}

.nav-link {
    color: #816b3d !important;
}

.certificates {
    width: 250px;
    height: 350px;
    object-fit: cover;
}

.accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
    font-family: 'FontAwesome';
}

.formBtn {
    width: 100%;
    padding: 10px;
    border-radius: 0;
}


/*-----------------*/

.mobile-fixed-buttons {
position: fixed;
    bottom: 0.3rem;
    right: 5px;
    display: flex;
    gap: 3px;
    z-index: 99;
    flex-direction: row-reverse;
    align-items: center;
}

.call-container {
  margin-right: 0; /* sadece call'a özel margin */
}

.reservation-container {
  margin-right: 0; /* sadece reservation'a özel margin */
}

.call-button-mobile {
  background:#fff;
  padding: 10px 10px 10px 10px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  border:0 !important;
  font-size:24px;
  border-radius:2px;
  position: relative;
  width: 3rem;
  padding-left: 16px;
  box-shadow:-4px -1px 5px -1px rgba(0, 0, 0, 0.75);
}

.reservation-button-mobile {
  background-color: #9f755a;
  color: white;
  padding: 11px 8px;
  text-decoration: none;
  font-size: 15px;
    box-shadow:-4px -1px 5px -1px rgba(0, 0, 0, 0.75);
  border-radius:2px;
}

@media (min-width: 768px) {
  .mobile-fixed-buttons {
    display: none;
  }
}





