/*******************/
/**** CUSTOM CSS ****/
/*******************/

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--quicksand-font) !important;
  /*visibility: hidden;*/
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
}

section {
    scroll-margin-top: 125px; /* Navbar yüksekliği kadar boşluk bırak */
}

/* HomePage - Video Slider Alanı */


/* Video Alanı */
.video-container {
  position: relative;
  width: 100%;
  height: 83vh;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blur Efekti */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Hafif siyah katman */
  backdrop-filter: blur(1px); /* Blur efekti */
}


.video-content {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 65%;
  padding: 2px;
  border-radius: 6px;
  text-align: center;
  transform: translate(-50%, -50%);
  color: white;
  transition: opacity 0.5s ease-in-out;
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(7px);
  box-shadow: 0px 1px 8px 4px rgba(0, 0, 0, 0.6); /* rgba(255,255,255, 0.05); */
}

.video-content h1 {
  font-size: 28px !important;
  font-weight: 500;
  color: lightgrey;
  margin-top: 16px;
}

.video-content p {
  font-size: 16px !important;
  font-weight: 400;
  text-align: center;
  color: lightgrey;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;
}

.video-content .video-title-line {
  content: "";
  width: 20%;
  height: 2px;
  background-color: #fb8b58;
  margin-top: 0px !important;
  margin-bottom: 20px !important;
  margin-left: 40% !important;
}

.carousel-indicators {
  bottom: 10px !important;
}

.carousel-indicators li {
  margin-left:7px !important;
}

/*--------------------------------------------------------------
# SERVICES
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-top: 50px;
  position: relative;
}

.section-title h1 {
  z-index: 2;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;

}

.section-title p {
  margin: 30px 0;
  font-size: 16px !important;
  font-weight: 400;
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
}


.card {
  padding: 15px;
  margin-bottom:15px;
  border-radius: 10px !important;
  box-shadow: 0px 3px 8px 3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out; /* Yumuşak geçiş */
}

.card:hover {
  z-index: 1;
  transform: scale(1.03) !important; /* Kartı %5 büyüt */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
  background-color: rgba(0, 0, 0, 0.01);
}

.card-title{
  color: var(--accent-color) !important;
  font-size: 17px !important;
  font-weight: 800;
}

.card-text{
  color: #32597a !important;
  font-size: 15px !important;
  padding-bottom: 5px;
}

#service-box {
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical !important;
  display: -webkit-box !important;
}

.card-body a {
  font-weight: 500;
  color: var(--accent-color) !important;
}

.card-href {
  text-decoration: none !important;
}
.card-href:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

h4 {
  text-align: center;
  margin: 30px 0;
  color: #444;
}

.main-timeline {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 60px;
  overflow-x: auto;
  padding: 40px;
  position: relative;
}

.main-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 100%;
  background: #ccc;
  transform: translateY(-50%);
  z-index: 0;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #134ada;
  background: #3498db;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  z-index: 1;
}

.timeline-icon-2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #134ada;
  background: red;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  z-index: 1;
}

.timeline-icon-3 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #134ada;
  background: orange;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  margin-top: 20px;
  text-align: center;
  min-width: 180px;
}

.timeline-title {
  font-size: 18px;
  font-weight: bold;
  color: #ec496e;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.timeline-title-2 {
 color: orange;
}

.timeline-title-3 {

}

.description {
  font-size: 14px;
  color: #404040;
  line-height: 1.5;
}


/*--------------------------------------------------------------
# Hakkımızda
--------------------------------------------------------------*/
.section-content p {
  font-size: 16px !important;
}

/*--------------------------------------------------------------
# Destinasyonlar
--------------------------------------------------------------*/
.section-maps {
  text-align: center;
}

.section-text p {
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;

  background-color: var(--accent-color);
  margin-top: 0px !important
}


#map {
    height: 60vh;
    width: 100%;
    background: #f0f0f0; /* Sade arka plan */
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}
.custom-popup {
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.leaflet-popup-content-wrapper {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 3px;
    padding: 5px 10px;
    font-family: Quicksand;
}
.leaflet-popup-tip {
    background: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Bilgi Bankası
--------------------------------------------------------------*/
.doc-item a {
  color: white !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 30px;
}

.doc-item .doc-img {
  height: 90px;
  width: auto;
}

.doc-item:hover {
  transform: scale(1.02) !important; /* Kartı %5 büyüt */
  font-weight: 600;
}



/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal-img-top {
  width: 60% !important;
  align-self: center;
}

.modal-title {
  text-align: center;
  font-size: 18px !important;
  font-weight: 700;
  margin-top: 10px !important;
}

.modal-text {
  text-align: left;
  font-size: 16px !important;
  margin-top: 10px !important;
}

.modal-img {
  height: 90px;
  width: auto;
}

.modal-subtitle {
  color: white !important;
  font-size: 16px !important;
}

.modal-subtext {
  color: white !important;
  text-align: left;;
  font-size: 14px !important;
}



/** MEDIA SIZE CSS **/
/* Mobil cihazlar (320px - 480px) */
@media only screen and (min-width: 320px) and (max-width: 480px) {

}

/* iPad'ler ve Tabletler (481px - 768px) */
@media only screen and (min-width: 481px) and (max-width: 768px) {

}

/* Küçük ekranlar ve laptoplar (769px - 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {

}

/* Masaüstü ve büyük ekranlar (1025px - 1200px) */
@media only screen and (min-width: 1025px) and (max-width: 1200px) {

}

/* Ekstra büyük ekranlar ve TV (1201px ve üstü) */
@media only screen and (min-width: 1201px) {

}

/** Auto Layout */
/**
@media  (min-width: 1650px) {


  #homePage {
    .video-content h1 {
      font-size: 60px !important;
    }

    .video-content p {
      font-size: 34px !important;
    }

    .video-content .video-title-line {
      width: 35%;
      height: 4px;
      margin-top: 18px !important;
      margin-left: 32% !important;
    }

    .carousel-indicators {
      bottom: 20px !important;
    }

    .carousel-indicators li {
      margin-left:12px !important;
      padding: 10px !important;
    }

    .video-overlay {
      backdrop-filter: blur(5px);
    }
  }

  #services {
    .section-title h1 {
      font-size: 48px !important;
    }
    .section-title p {
      font-size: 34px !important;
    }
    .card-section .card .card-body .card-title {
      font-size: 32px !important;
    }
    .card-section .card .card-body .card-text {
      font-size: 28px !important;
    }
    .card-section .card .card-body h5{
      font-size: 22px !important;
    }
  }


  #destinations {
    h1 {
      font-size: 48px !important;
    }
    .section-text p {
      font-size: 32px !important;
    }
  }

}

@media only screen and (max-width: 1439px) and (min-width: 1024px) {


  #homePage {
    .video-content {
      width: 70% !important;
      top: 77% !important;
    }
    .video-content h1 {
      font-size: 30px !important;
    }

    .video-content p {
      font-size: 16px !important;
    }

    .video-content .video-title-line {
      width: 30%;
      height: 2px;
      margin-top: 12px !important;
      margin-left: 32% !important;
    }

    .carousel-indicators {
      margin-bottom: 0.5rem !important;
    }

    .carousel-indicators li {
      margin-left:12px !important;
    }

    .video-overlay {
      backdrop-filter: blur(5px);
    }
  }

  #services {
    .section-title h1 {
      font-size: 28px !important;
    }
    .section-title p {
      font-size: 18px !important;
    }
    .card-section .card .card-body .card-title {
      font-size: 16px !important;
    }
    .card-section .card .card-body .card-text {
      font-size: 14px !important;
    }
    .card-section .card .card-body h5{
      font-size: 10px !important;
    }
  }

  #destinations {
    h1 {
      font-size: 28px !important;
    }
    .section-text p {
      font-size: 14px !important;
    }
  }
}
**/
