/*============= Fuar Takvim Css ===========*/

.custom-select {
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 10px 15px;
  color: #333;
  cursor: pointer;
}

.custom-select:focus {
  box-shadow: none;
  border-color: #008384;
}

.event-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.event-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s;
  padding: 10px;
  border-radius: 5px;
}

.event-link:hover {
  background-color: #f8f8f8;
  text-decoration: none;
  color: inherit;
}

.event-title {
  color: #03adad;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.event-date {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.event-organizer {
  color: #000000;
  font-size: 14px;
  margin-bottom: 5px;
}

.pagination {
  justify-content: flex-start;
}

.pagination .page-item.active .page-link {
  background-color: #03adad;
  border-color: #03adad;
}

.pagination .page-item .page-link {
  color: #333;
}

.pagination .page-item.active .page-link {
  color: white;
}

/* Responsive tasarım */
@media (max-width: 992px) {
  .card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .card {
    flex: 0 0 calc(100% - 20px);
  }
}

/* Under Slide Kısmı */
.container-1 {
  background-color: var(--primarycolor);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 100%;
  text-align: center;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 16px;
}

.content-body p {
  font-size: 1rem;
}

@media (max-width: 600px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    margin-bottom: 20px;
  }
}

/* Sağ Alt Köşedeki Butonlar */
.action-buttons {
  position: absolute;
  bottom: 60px;
  right: 170px;
  display: flex;
  gap: 22px;
  z-index: 10;
  border-radius: 4px;
}

.action-button {
  display: inline-block;
  padding: 18px 34px;
  background-color: var(--primarycolor);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.action-button:hover {
  background-color: #03adad;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .action-buttons {
    bottom: 20px;
    right: 20px;
  }

  .action-button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* Buton Stilleri */
.trigger-button {
  background-color: var(--primarycolor);
  color: white;
  border: none;
  padding: 12px 22px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
}

.trigger-button:hover {
  background-color: #03adad;
}

/* Modal Arka Plan */
.modal-overlay-ebilet {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Modal İçeriği */
.modal-container-ebilet {
  background-color: white;
  width: 90%;
  max-width: 500px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* Modal Başlık */
.modal-header-ebilet {
  padding: 15px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title-ebilet {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.close-button-ebilet {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

/* Modal İçerik */
.modal-content-ebilet {
  padding: 20px;
  text-align: center;
}

/* Resim Galerisi */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.gallery-item {
  width: 120px;
  text-align: center;
  transition: transform 0.2s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: auto;
}

.gallery-item p {
  margin-top: 5px;
  font-size: 14px;
}



/* Video Responsive */
.carousel-inner {
  overflow: hidden;
}

.video-slide {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
}

@media (max-width: 768px) {
  .video-slide {
    height: 50vh;
    object-fit: cover;
    max-width: 100%;
  }
  
  .action-buttons {
    bottom: 15%;
    right: 10px;
    left: auto;
    flex-direction: row;
    transform: translateY(50%);
  }
  
  .trigger-button {
    padding: 16px 28px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .video-slide {
    height: 40vh;
    object-fit: cover;
    max-width: 100%;
  }
}