
/* etkinlikler-anasayfa */
.etkinlik-bg {
    position: relative;
    background-image: url(../images/etkinlik-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .etkinlik-title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .etkinlik-title .row {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .etkinlik-title h2 {
    font-family: "VistolSans-Black", sans-serif;
    font-weight: 800;
    font-size: 110px;
    color: #c3d940;
    margin: 0;
  }
  .etkinlik-title h2 span {
    font-family: "VistolSans-Black", sans-serif;
    font-weight: 800;
    font-size: 110px;
    color: #505050;
    margin: 0;
  }
  .etkinlik-title .col-1 p {
    font-family: "VistolSans-Regular", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #505050;
    margin: 0;
  }
  .etkinlik-info {
    font-family: "VistolSans-Regular", sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #292929;
    text-align: center;
    margin: 2% auto;
    max-width: 900px !important;
  }
  .etkinlik-btn {
    font-family: "VistolSans-ExtraBold", sans-serif;
    font-weight: 800;
    font-size: 14px;
    background-color: #7c439a;
    border: #fff;
    color: #fff;
    border-radius: 15px;
    width: 15% !important;
    margin: 2% auto;
    padding: 4px 10px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  .etkinlik-btn:hover {
    background-color: #c3d940; /* Hover sırasında arka plan rengini değiştirir */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Hover sırasında gölge ekler */
    transform: translateY(0) scale(1.1); /* Hover sırasında biraz büyütür */
  }
  /* etkinlikler-anasayfa */
  
  .moving-rocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .rock1 {
    position: absolute;
    animation: move1 5s linear infinite;
  }
  
  .rock2 {
    position: absolute;
    animation: move2 5s linear infinite;
  }
  
  .rock1 {
    bottom: 20px;
    left: -180px;
  }
  
  .rock2 {
    top: 0;
    right: -100px;
  }
  
  @keyframes move1 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(70px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes move2 {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(50px);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  .slider-container {
    position: relative;
    margin: auto;
    overflow: hidden;
    padding: 0 !important;
    max-width: 80% !important;
  }
  
  .event-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
  }
  
  .event-container {
    max-width: 290px;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: -130px;
  }
  
  .circular-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 15px solid #e8e8e8;
  }
  
  .circular-image img {
    width: 100%;
    height: 100%;
    object-fit: none;
  }
  
  .date-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #7c439a;
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "VistolSans-Black", sans-serif;
    font-weight: 800;
    font-size: 25px;
    z-index: 10;
    text-align: center;
    border: 8px solid #fff;
    line-height: 1;
  }
  .date-badge span {
    font-family: "VistolSans-Medium", sans-serif;
    font-weight: 300;
    font-size: 12px;
  }
  .event-card {
    background-color: #7c439a;
    border-radius: 0;
    padding: 140px 20px 20px;
    color: white;
    height: 300px;
    text-align: center;
  }
  
  .event-card h2 {
    font-family: "VistolSans-Black", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    margin: 0;
  }
  
  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #7c439a;
    border: 8px solid #fff !important;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 20; /* Yeterli z-index değeri atadığınızdan emin olun */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Geçiş efektleri ekleyin */
  }
  .nav-button i {
    display: flex;
    justify-content: center;
  }
  .nav-button:hover {
    background-color: #a64d8c; /* Hover sırasında arka plan rengini değiştirir */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Hover sırasında gölge ekler */
    transform: translateY(-50%) scale(1.1); /* Hover sırasında biraz büyütür */
  }
  .nav-button.prev {
    left: 50px;
  }
  
  .nav-button.next {
    right: 50px;
  }
  
  /* Active slide styles */
  .event-slide.swiper-slide-active .event-card {
    background-color: #7c439a; /* Change active event card color */
  }
  
  .event-slide.swiper-slide-active .date-badge {
    background-color: #7c439a; /* Change active date badge color */
  }
  
  /* Inactive slide styles */
  .event-slide:not(.swiper-slide-active) .event-card {
    background-color: #707070; /* Change inactive event card color */
  }
  
  .event-slide:not(.swiper-slide-active) .date-badge {
    background-color: #707070; /* Change inactive date badge color */
  }