.hotel-option {
    cursor: pointer;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.hotel-option:hover, .selected-hotel {
    background-color: #e9f5ff;
    border-color: #007bff;
}
.participant-select {
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-size: 14px;
}
.dropdown-menu {
    min-width: 150px;
}
.info-box {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: none;
}
.select-hotel {
    margin-right: 10px;
}
.reserve-hotel {
    display: none;
}
.text-end .d-inline-block {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background: #f8f9fa;
}
.hotel-price-difference {
    font-size: 0.9rem;
    color: #6c757d;
}
.total-price {
    font-size: 1.5rem;
    color: #28a745;
}
.btn-selected {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}


/* Tablo Stili */
.table {
    font-size: 0.9rem;
    border-collapse: separate;
    border-spacing: 0 8px;
  }
  .table thead th {
    font-weight: 500;
    color: #6c757d;
    background-color: #f8f9fa;
    border: none;
  }
  .table tbody tr {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
  }
  .table tbody tr:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .table tbody td {
    vertical-align: middle;
    padding: 12px;
  }
  .badge {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  /* Hızlı Bağlantılar Stili */
  .quick-links .btn {
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  .quick-links .btn:hover {
    background-color: #007bff;
    color: #fff;
  }

  /* Tur Programı ve Hizmetler Kartları */
  .card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
  }
  .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 12px 16px;
  }
  .card-body {
    padding: 16px;
  }

  /* Tur Programı İçeriği Stili */
  .itinerary-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    max-height: 470px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
  }
  .itinerary-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
  }
  .show-more-btn {
    display: block;
    text-align: center;
    color: #007bff;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 8px;
    transition: color 0.2s ease;
  }
  .show-more-btn:hover {
    color: #0056b3;
  }
  .itinerary-content.expanded {
    max-height: none;
  }
  .itinerary-content.expanded::after {
    display: none;
  }

  /* Akordeon Stili */
  .accordion-button {
    font-weight: 500;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #333;
    box-shadow: none;
  }
  .accordion-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    padding: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  /* Hero Bölümü */
  /* Hero Bölümü */
.hero-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax Efekti */
.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Görseli biraz daha büyük yaparak parallax efekti sağlar */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.5s ease;
}

.hero-section:hover .parallax-image {
  transform: scale(1.1); /* Hover durumunda görseli büyüt */
}

/* Gradient Overlay */
.hero-overlay {
  z-index: 1;
}

/* Hero Metin */
.hero-text {
  z-index: 2;
}

.hero-text h2 {
  font-size: 3rem; /* Masaüstü için varsayılan boyut */
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.25rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Mobil cihazlar için stil */
@media (max-width: 767.98px) {
  .hero-text h2 {
      font-size: 2rem; /* Telefon boyutunda daha küçük font boyutu */
  }
  .hero-text p {
      font-size: 1rem; /* Telefon boyutunda daha küçük font boyutu */
  }
}
  /* Animasyonlar */
  .animate__animated {
    animation-duration: 1s;
  }

  .animate__fadeInDown {
    animation-name: fadeInDown;
  }

  .animate__fadeInUp {
    animation-name: fadeInUp;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

 /* Paylaşım Butonları Stili */
.share-buttons .btn {
  font-size: 0.9rem; /* Varsayılan font boyutu */
  padding: 6px 12px; /* Varsayılan padding */
  border-radius: 20px; /* Köşeleri yuvarla */
  transition: all 0.3s ease; /* Geçiş efekti */
}

/* Mobil cihazlar için stil */
@media (max-width: 767.98px) {
  .share-buttons {
      flex-wrap: wrap; /* Butonları alt alta sırala */
      gap: 5px; /* Butonlar arası boşluk */
  }

  .share-buttons .btn {
      font-size: 0.8rem; /* Daha küçük font boyutu */
      padding: 4px 8px; /* Daha küçük padding */
      flex: 1 1 45%; /* Butonların genişliğini ayarla */
      text-align: center; /* Metni ortala */
  }

  .share-buttons .btn i {
      margin-right: 3px; /* İkon ile metin arasındaki boşluğu küçült */
  }
}