.masthead {
  height: 100vh;
  min-height: 500px;
  background-image: url('../img/overzicht/eiffel_photo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 20px;
}
body {
  overflow-x: hidden;
}

/* fotos bolumu */
.photo img {
  width: 100%;
  height: 600px;
  /* veya istediğiniz bir yükseklik değeri */
  object-fit: cover;
}

.text-custom-size {
  font-size: 40px;
  /* Yazı boyutunu 16 piksel olarak ayarlamak için */
}

.custom-div {
  height: 50px;
  background-color: #fff3cd;
  /* Bu satır arka plan rengini belirler */
}

/* Özel bağlantı butonu stil tanımı */
.btn-overons a.btn.btn-overons {
  display: inline-block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: #6c757d;
  border-color: #6c757d;
  padding: 1em 2em;
  font-size: 1.2em;
  line-height: 1.5;
  border-radius: 50px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-overons a.btn.btn-overons:hover {
  color: white;
  /* Daha koyu metin rengi */
  background-color: #495057;
  /* Daha koyu arka plan rengi */
  border-color: #495057;
  /* Daha koyu kenarlık rengi */
}


.text-black {
  text-decoration: none;
  /* Tüm metinlerde alt çizgiyi kaldırır */
}

#lid:hover,
#eiffel:hover,
#nieuwsbrief:hover,
#contact:hover {
  color: darkred !important;
}

#fotos_site:hover {
  color: darkred !important;
}

.fotos_site {
  text-decoration: none;
  color: #FFA500;
  font-family: Arial, Helvetica, sans-serif;
}

.overons {
  text-decoration: none;
  color: red !important;
  font-family: Arial, Helvetica, sans-serif;
}

.activiteit {
  font-family: Arial, Helvetica, sans-serif;
  color: red;
}

.nav-link {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}

.modal-content {
  background-color: #343a40;
  color: white;
}

/* Modal başlık ve kapama düğmesi rengi */
.modal-header {
  background-color: #343a40;
  color: white;
  border: none;

}

/* Modal gövde içeriği */
.modal-body {
  color: white;
}

/* Modal footer */
.modal-footer {
  background-color: #343a40;
  border: none;
}

/* Kapatma simgesi (X) */
.close {
  display: none;
  /* Kapatma simgesini gizler */
}

/* Fotos bolumu fotolari buyutme ve kapatma */
.container {
  position: relative;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  text-align: center;
}

#overlay img {
  max-width: 90%;
  max-height: 90%;
  margin-top: 10vh;
}

#closeButton {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  cursor: pointer;
  font-size: 30px;
}

#nextButton {
  position: absolute;
  top: 50%;
  right: 20px;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 100px;
}

.overlay-text {
  display: none;
  /* Başlangıçta metni gizle */
}

.photo:hover .overlay-text {
  display: block;
  /* Fotoğrafın üzerine gelindiğinde metni göster */
}

.overlay-text {
  display: none;
  /* Başlangıçta metni gizle */
  position: absolute;
  top: auto;
  /* Yukarıdan değil, alttan 0 piksel boşluk */
  bottom: 0;
  left: 50%;
  /* Fotoğrafın genişliğinin yarısı kadar sağında */
  transform: translateX(-50%);
  /* Yatayda ortalama */
  font-family: Arial, sans-serif;
  /* Yazı tipi */
  background-color: rgba(69, 119, 169, 0.9);
  color: white;
  /* Yazı rengi */
  padding: 10px;
  /* Kenar boşluğu */
  opacity: 0;
  /* Başlangıçta görünmez yap */
  transition: opacity 0.5s;
  /* Geçiş efekti */
}

.photo:hover .overlay-text {
  display: block;
  /* Fotoğrafın üzerine gelindiğinde metni göster */
  opacity: 1;
  /* Fare üstüne gelindiğinde metni görünür yap */
}

.photo:hover img {
  filter: brightness(0.7);
  /* Fotoğrafın üzerine gelindiğinde parlaklığını azaltarak turuncu bir efekt ver */
}

