.region {
  fill: #8C5423; /* Varsayılan renk */
  stroke: #ccc;
  stroke-linejoin: round;
  fill-rule: evenodd;
  clip-rule: evenodd;
  stroke-width: 1;
  transition: fill 300ms;
}

.region:hover {
  fill: #A67449; /* Üzerine gelindiğinde renk */
}

.region.on {
  fill: #733E1F; /* Aktif şehir rengi */
}
.list-of-regions {
  list-style: none;
  margin: 0;
  padding: 0;
}

.region-card {
  display: none; /* Varsayılan olarak gizli */
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, .1) 0 4px 12px;
}

.region-card.on {
  display: flex; /* Aktif kart */
}

.region-image {
  width: 100px;
  height: 100px;
}

.region-content {
  padding: 10px;
}

.title {
  font-weight: 600;
  font-size: 1rem;
}


.language-switch {
  cursor: pointer;
  padding: 8px 16px;
  display: block;
}

.language-switch:hover {
  background-color: #f1f1f1;
}


.gradient{
  background: #191d2d;
}

.reference-grid {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: transform 0.3s, box-shadow 0.3s;
}
.reference-grid:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.reference-name {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #555;
}
.reference-logo {
  max-width: 80%;
  height: auto;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #303637;
  --secondary-color:              #4E5455;
  --section-bg-color:             #f0f8ff;
  --dark-color:                   #000000;
  --navbar-bg-color:              #d2d3d3;
  --p-color:                      #717275;
  --highlight-icon-color:         #ff0100;

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;
  --copyright-text-font-size:     16px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background: linear-gradient(to right, #cfcfdf, #d5d5e3, #dbdbeb, #e2e2f0, #e8e8f5, #f0f0fa, #ffffff);

    font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
  text-transform: uppercase;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background-image: url("\images\madensahalari-min.jpg");
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 5px;
  padding-bottom: 5px;
}

.custom-border-radius {
  border-radius: 20px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
}

.avatar-image {
  border: 2px solid var(--white-color);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.avatar-image-left {
  position: relative;
  left: -10px;
}

.avatar-image-left + .avatar-image-left {
  left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -30px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -40px;
}

.avatar-info {
  display: inline-block;
  vertical-align: top;
}

/* Custom Video Section CSS */
#myCustomVideoSection {
  display: flex;
  justify-content: center; /* Yatayda ortalar */
  align-items: center;     /* Dikeyde ortalar */
  height: 100vh;           /* Sayfa boyutunda */
  width: 100%;             /* Sayfanın tamamını kaplar */

}

.video-wrapper {
  display: flex;
  justify-content: center; /* Video'yu yatayda ortalar */
  align-items: center;     /* Video'yu dikeyde ortalar */
  width: 100%;
}

.video-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;            /* Video'nun doğal boyutuna göre */
}

.centered-video {
  width: 100%; /* Video'nun genişliğini %60 yapar */
  max-width: 800px; /* Video'nun genişliği için maksimum değer */
  height: auto;     /* Oranına göre yükseklik ayarları */
  object-fit: contain; /* Video'nun içerik oranını korur */
  border-radius: 10px; /* Video kenarlarını yuvarlatır */
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); /* Video'ya gölge ekler */
}



/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
/* Benzersiz video carousel stil tanımları */
#uniqueVideoCarousel .carousel-item .unique-custom-video {
  object-fit: cover;
  width: 90%;
  height: 65%;
}


.unique-custom-video {
  position: absolute;
  top: 10px;
  left: 53px;
}



.custom-video {
  width: 80%; /* Videoların genişliğini tam olarak doldur */
  /* Oranını koruyarak yüksekliği ayarla */
}

.carousel-item video {
  object-fit: cover; /* Videonun düzgün şekilde kesilmesini sağlar */
  width: 100%;
  height: 100%;
}

.custom-icon {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 2px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
}

.custom-icon::before,
.custom-icon::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.custom-icon::before {
  border: 2px solid transparent;
}

.custom-icon::after {
  border: 0 solid transparent;
}

.custom-icon:hover {
  border-color: transparent;
}

.custom-icon:hover::before {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  transition: border-top-color .15s linear,border-right-color .15s linear .1s,border-bottom-color .15s linear .2s;
}

.custom-icon:hover::after {
  border-top: 2px solid var(--primary-color);
  border-left-width: 2px;
  border-right-width: 2px;
  transform: rotate(270deg);
  transition: transform .4s linear 0s,border-left-width 0s linear .35s;
}
.carousel-item {
  height: 70vh; /* Varsayılan yükseklik */
}

/* Daha küçük ekranlar (ör. tablet) */
@media (max-width: 768px) {
  .carousel-item {
    height: 30vh; /* Orta boyutlu ekranlar için daha küçük bir yükseklik */
  }
}

/* Daha küçük ekranlar (ör. telefon) */
@media (max-width: 480px) {
  .carousel-item {
    height: 30vh; /* Daha küçük ekranlarda yükseklik daha da küçültülür */
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  background-color: #343c3c9e;
  opacity: 60%;
  border-radius: 80px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  font-weight: var(--font-weight-bold);
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  background: var(--secondary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  margin-left: 20px;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.navbar-nav .nav-link.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
/* .sticky-wrapper {
  background: var(--navbar-bg-color);
} */

.navbar {
  padding-left: 0; /* Navbar'ın sol iç boşluğunu sıfırla */
  margin-left: 0; /* Navbar'ın sol dış boşluğunu sıfırla */
  background: #191d2d;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand {
  padding-left: 0; /* İç boşluğu kaldır */
  margin-left: 0; /* Dış boşluğu kaldır */
  display: flex; /* Flexbox ile hizalama */
  align-items: center; /* Dikey ortalama */
  justify-content: flex-start; /* Logoyu tamamen sola hizala */
}

.brand-logo {
  max-height: 70px; /* Logonun maksimum yüksekliği */
  width: auto;      /* Oranını koruyarak genişliği otomatik ayarla */
  display: block;
}

.brand-text {
  display: none; /* Metni gizle */
}

@media (max-width: 768px) {
  .brand-logo {
    max-height: 40px; /* Daha küçük ekranlarda logo küçülür */
  }
  .navbar-brand {
    padding-left: 5px; /* Daha sola yaklaştır */
  }
}



.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
}

.navbar-nav .nav-link {
  color: white;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: wheat;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HIGHLIGHT              
-----------------------------------------*/
/*---------------------------------------
  HIGHLIGHT               
-----------------------------------------*/
/*---------------------------------------
  HIGHLIGHT               
-----------------------------------------*/
#bosluk {
  margin-bottom: -200px !important;
}

.row {
  margin-bottom: 0 !important; 
  padding-bottom: 0 !important;
}

#hakkimiz {
  display: flex;
  justify-content: center; /* Yatayda ortala */
  align-items: center; /* Dikeyde ortala */
  text-align: center; /* Metinleri ortala */
}

#hakkimiz2 p {
  margin: 0 !important; /* Dış boşlukları sıfırlıyoruz */
  padding: 0 0px !important; /* Sol ve sağdan 20px iç boşluk ekliyoruz */
  text-align: left !important; /* Metni sola hizalıyoruz */
  width: calc(100vw - 155px) !important; /* Tüm sayfa genişliğinden 40px çıkarıyoruz (20px soldan ve sağdan padding) */
  position: relative; /* Konumlandırmayı bağımsız hale getir */
  left: 0; /* Sol kenardan başlatıyoruz */
}

#hakkimiz h2 {
  margin-top: 0 !important;  /* Başlığın üstündeki boşluğu sıfırlıyoruz */
  padding-top: 0 !important; /* Paddingi sıfırlıyoruz */
}

#hakkimiz p {
  margin: 0 !important; /* Dış boşlukları sıfırlıyoruz */
  padding: 0 0px !important; /* Sol ve sağdan 20px iç boşluk ekliyoruz */
  text-align: left !important; /* Metni sola hizalıyoruz */
  width: calc(100vw - 155px) !important; /* Tüm sayfa genişliğinden 40px çıkarıyoruz (20px soldan ve sağdan padding) */
  position: relative; /* Konumlandırmayı bağımsız hale getir */
  left: 0; /* Sol kenardan başlatıyoruz */
}

@media (max-width: 768px) {
  .icerik {
    padding: 1px; /* Küçük ekranlarda iç padding'i azalt */
  }

  .icerik h6 {
    font-size: 1.2em; /* Başlık boyutlarını küçült */
  }

  .icerik p {
    font-size: 0.9em; /* Metin boyutunu küçült */
  }
}

.misyon-baslik i {
  color: #28a745; /* Yeşil renk */
  margin-right: 10px; /* İkon ile başlık arasına boşluk */
  font-size: 1.5em; /* İkon boyutu */
}

/* Carousel için flex düzeni */
.carousel-inner .row {
  display: flex;
  justify-content: space-evenly; /* Resimleri eşit aralıklarla yerleştir */
  align-items: center; /* Yatayda ortala */
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap; /* Resimlerin alt satıra geçmesini engelle */
}

/* .highlight-thumb öğelerine esnek genişlik ver */
.highlight-thumb {
  flex: 1 1 32%; /* %32 genişlik ver, esnek ama alt satıra geçmesin */
  margin-top: 24px;
  margin-bottom: 14px;
  text-align: center;
  position: relative; /* Yazıların resimlerin üzerinde kalabilmesi için */
  box-sizing: border-box; /* Padding ve margin'leri hesaba katar */
}

/* Resimlerin üzerine gelindiğinde görseli büyütme ve başlık gizleme */
.highlight-thumb:hover .highlight-title {
  opacity: 0;
  visibility: hidden;
}

.highlight-thumb:hover .highlight-icon {
  opacity: 1;
  visibility: visible;
}

.highlight-thumb:hover .highlight-image {
  transform: scale(1.2);
}

/* Görsellerin üzerine gelen metinler için konum */
.highlight-info {
  position: absolute; /* Yazıları resmin üzerinde tutuyor */
  z-index: 2;
  top: 50%; /* Dikeyde ortalar */
  left: 50%; /* Yatayda ortalar */
  transform: translate(-50%, -50%); /* Konumunu ortalar */
  width: 100%;
  text-align: center;
}

/* Görselin genel stil ayarları */
.highlight-image-wrapper {
  width: 100%;
  height: 165px; /* Sabit yükseklik */
  overflow: hidden;
  position: relative;
}

.highlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmin kutuya sığdırılması */
  display: block;
  transition: transform 2s;
}

.highlight-title {
  color: var(--white-color);
  transition: opacity 1s;
  margin-bottom: 0;
  font-size: 1.2em; /* Başlık font boyutunu belirle */
  font-weight: bold; /* Başlık font kalınlığı */
}

.highlight-icon {
  color: var(--highlight-icon-color);
  font-size: var(--h1-font-size);
  opacity: 0;
  transition: transform 1s;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.highlight-icon:hover {
  color: var(--white-color);
}

/* Resimlerin esnek düzenini sağlamak için media queries */
@media (max-width: 1199px) {
  .highlight-thumb {
    flex: 1 1 48%; /* Daha küçük ekranlarda her öğe %48 genişlikte olsun */
  }
}

@media (max-width: 767px) {
  .highlight-thumb {
    flex: 1 1 100%; /* En küçük ekranlarda her öğe tam genişlikte olsun */
  }
}



/*---------------------------------------
  Sepet              
-----------------------------------------*/
#cart-dropdown ul {
  max-height: 200px; /* Maksimum yükseklik */
  overflow-y: auto; /* Taşan içerik için kaydırma çubuğu */
}
#cart-dropdown ul li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cart-dropdown ul li:last-child {
  border-bottom: none;
}
#cart-dropdown ul li span {
  font-size: 14px;
}
#cart-dropdown ul li .remove-item {
  color: #ff6b6b;
  cursor: pointer;
}
/* Mobil Ekranlar için Medya Sorguları */
@media (max-width: 768px) {
  /* Ürün Kartları */
  .pricing-thumb {
      width: 100%;
      margin-bottom: 20px;
  }

  /* Sepet Modalı */
  .cart-modal {
      width: 95%; /* Mobilde modal genişliğini artır */
  }

  /* Ürün Görselleri */
  .image-container img {
      max-width: 100%; /* Mobilde görseller tam genişlik */
      height: auto;
  }

  /* Sepet Kapat Butonu */
  .close-cart-btn {
      font-size: 16px; /* Daha büyük ve okunabilir yazı boyutu */
  }
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  height: calc(90vh - 84px);
}

.hero::after {
  content: "";
  background: linear-gradient(to right, #8690a3, #a0a9b8, #bbc2cf, #d4dde8);

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-bottom: -5px;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero .arrow-icon {
  position: relative;
  top: 50px;
}

.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 50%;
  height: 50%;
}

.date-text,
.location-text {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  display: inline-block;
  padding: 10px 20px;
}

.date-text {
  border-right: 0;
}


/*---------------------------------------
  SPEAKERS              
-----------------------------------------*/
/* .speakers {
  background-color: white;
} */

.speakers-thumb {
  position: relative;
  margin-left: 40px; /* Her şeyi sağa kaydırmak için */
}

.speakers-thumb-small {
  margin-top: 50px;
}

.speakers-thumb:hover .speakers-info::before {
  background: var(--primary-color);
  width: 100%;
  padding: 15px;
}

.speakers-thumb:hover .speakers-title,
.speakers-thumb:hover .speakers-text {
  color: var(--white-color);
}

.speakers-info {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  position: absolute;
  bottom: 0;
  right: 12%;
  margin: 20px;
  padding: 10px 15px;
  left: 2%;
  

}

.speakers-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--primary-color);
  width: 5px;
  height: 100%;
  transition: all 1s;
}

.speakers-image {
  width: 80%;  /* Resim genişliğini kapsayıcıya göre yüzde 100 yap */
  height: 180px;  /* Yüksekliği istediğiniz gibi ayarlayın */
  object-fit: cover;  /* Resmin orantısını koruyarak kapsayıcıya sığdırır */
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Resmin arkasına gölge ekleme */
}


div.speakers-text-info {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.speakers-text-info h2,
.speakers-text-info p {
    margin-top: 5px; /* Başlık ve paragraf üst boşluğunu küçült */
    margin-bottom: 5px; /* Başlık ve paragraf alt boşluğunu küçült */
}

.speakers-title,
.speakers-text {
  position: relative;
}

.speakers-text {
  font-size: 12px;
  text-transform: uppercase;
}

.speakers-featured-text {
  background: var(--secondary-color);
  border-radius: 4px;
  color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  text-transform: uppercase;
  margin: 10px;
  padding: 4px 12px;
}

.speakers-thumb .social-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 15px;
}

.speakers-thumb .social-icon {
  opacity: 0;
  transition: opacity all 1s;
}

.speakers-thumb:hover .social-icon {
  opacity: 1;
  transition-delay: 1s;
}

.sponsor-image {
  max-width: 130px;
  margin: 10px auto;
  height: auto;
}

.tab-pane {
  border-bottom: none !important; /* Alt çizgiyi kaldır */
}

.row.border-bottom {
  border-bottom: none !important; /* row sınıfındaki alt çizgiyi kaldır */
}

/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link span {
  display: block;
  text-align: left;
}

.nav-tabs .nav-link span {
  display: block;
}

.nav-tabs .nav-link small {
  display: block;
  font-size: 18px;
  font-weight: normal;
  color: var(--p-color);
}

.nav-tabs .nav-link {
  background: var(--white-color);
  border-radius: 0;
  border: 0;
  border-left: 3px solid var(--section-bg-color);
  padding: 20px 30px;
  transition: all 0.3s;
  width: 25%;
}

.nav-tabs .nav-link:first-child {
  border-left-color: transparent;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-left-color: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.nav-tabs .nav-link.active h3,
.nav-tabs .nav-link:focus h3, 
.nav-tabs .nav-link:hover h3 {
  color: var(--primary-color);
}

.schedule-image {
  border-radius: 20px;
}


/*---------------------------------------
  CALL TO ACTION              
-----------------------------------------*/
.call-to-action {
  background-image: url('../images/tasocak-min.jpg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.call-to-action::after {
  content: "";
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.call-to-action .row {
  position: relative;
  z-index: 2;
}

.call-to-action .custom-btn {
  background: var(--dark-color);
  color: var(--white-color)
}

.call-to-action .custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
/* Kartları aynı yükseklikte tutmak için flex kullanımı */



/* Kartların eşit yüksekliği */
.pricing-thumb {
  display: flex;
  flex-direction: column; /* Dikey sıraya sok */
  justify-content: space-between; /* İçerik ve butonu aralıklı hizala */
  align-items: center; /* İçeriği yatayda ortala */
  height: 400px; /* Tüm kartlar aynı yüksekliğe sahip */
  padding: 20px; /* İç boşluk */
  margin: 10px auto; /* Dış boşluk */
  border-radius: 10px;
  overflow: hidden; /* Taşan içerikleri gizle */
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center; /* Metinleri ortala */
}

/* Başlık düzeni */
.pricing-title-wrap {
  background-color: #343c3c9e;
  padding: 10px; /* Başlık için daha fazla padding */
  text-align: center;
  width: 100%; /* Tam genişlik */
  height: 245px;
}

/* İçerik alanı (Görsel ve metin) */
.pricing-body {
  flex-grow: 1; /* İçerik alanı esnek hale gelsin */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* İçeriği üst ve alt arasında paylaştır */
  align-items: center; /* Yatayda ortala */
  width: 100%; /* Tam genişlik */
}

/* Görsel konteyneri */
.image-container {
  width: 100%;
  flex-grow: 1; /* Görsel alanı esnek büyüsün */
  display: flex;
  justify-content: center; /* Görseli yatayda ortala */
  align-items: center; /* Görseli dikeyde ortala */
  overflow: hidden; /* Görsel taşarsa gizle */
  margin-top: 17px;
}

/* Görsel */
.image-container img {
  max-width: 100%; /* Görsel boyutunu konteynerin genişliğine uyarla */
  max-height: 235px; /* Görsel boyutunu sınırlı tut */
  object-fit: contain; /* Görselin içeriğini orantılı olarak sığdır */
}

/* "Teklif Al" butonunu alta sabitle */
.custom-btn {
  margin-top: auto; /* Butonu her zaman en alta taşır */
  padding: 10px 20px; /* Buton boyutunu artır */
  font-size: 14px; /* Yazı boyutunu büyüt */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .pricing-thumb {
    height: 400px; /* Küçük ekranlarda dinamik yükseklik */
  }
}



.center-button {
  margin: 0 auto !important;
  text-align: center !important;
}


/* Harita Stil Düzenlemeleri */
.google-map-modern {
  width: 100%;
  height: 400px;
  border: none;
}

/* Kartlar için genel stil düzenlemeleri */
.venue-thumb-modern {
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Kartların eşit boyutta olmasını sağlamak için */
}

.venue-info-title-modern {
  padding: 10px;
  border-radius: 12px 12px 0 0;
}

.venue-info-body-modern {
  padding: 15px;
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1; /* Kartın içeriği arasında boşluk oluşmasın diye */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Genel Stil Düzenlemeleri */
.text-primary {
  color: #ff4000 !important;
}

.shadow {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.bg-light {
  background-color: #f9f9f9 !important;
}

.bg-primary {
  background-color: #383d42 !important;
}

.text-dark {
  color: #333 !important;
}

a.text-dark:hover {
  color: #814159 !important;
}

/* Ortada eşit yerleşim */
.row.justify-content-center {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
  .google-map-modern {
    height: 300px;
  }

  .venue-thumb-modern {
    height: auto;
  }
}

@media (max-width: 576px) {
  .google-map-modern {
    height: 250px;
  }

  .venue-thumb-modern {
    padding: 10px;
  }

  .venue-info-title-modern {
    padding: 10px;
  }

  .venue-info-body-modern {
    padding: 10px;
  }
} 

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  padding-top: 100px;
  padding-bottom: 100px;
}.venue-thumb-modern {
  border-radius: 12px;
  padding: 8px;  /* Kartların içindeki dolgu miktarını azaltıyoruz */
  margin-bottom: 15px;  /* Kartlar arasında boşluk */
  width: 100%;  /* Kartların genişliğini sabitliyoruz */
}

.venue-info-title-modern {
  padding: 6px;  /* Başlık için padding'i küçültüyoruz */
  border-radius: 12px 12px 0 0;
}

.venue-info-body-modern {
  padding: 8px;  /* Kart içeriğindeki padding'i küçültüyoruz */
  font-size: 13px;  /* Yazı boyutunu küçültüyoruz */
  line-height: 1.5;  /* Satır aralığını azaltıyoruz */
}

/* Harita için özel düzenleme: */
.google-map-modern {
  border-radius: 12px;
  width: 100%;
  height: 250px; /* Harita boyutunu değiştirmiyoruz */
  border: 2px solid #ddd;
}

/* Genel Stil Düzenlemeleri */
.text-primary {
  color: #ff4000 !important;
}

.shadow {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.bg-light {
  background-color: #f9f9f9 !important;
}

.bg-primary {
  background-color: #383d42 !important;
}

.text-dark {
  color: #333 !important;
}

a.text-dark:hover {
  color: #814159 !important;
}

/* Küçük ekranlar için daha iyi uyum */
@media (max-width: 767px) {
    .venue-thumb-modern {
        padding: 6px;  /* Küçük ekranlar için kart dolgusunu daha da küçültüyoruz */
    }

    .venue-info-title-modern {
        padding: 4px;  /* Başlık padding'ini daha da küçültüyoruz */
    }

    .venue-info-body-modern {
        padding: 6px;  /* İçeriğin padding'ini azaltıyoruz */
        font-size: 12px;  /* Yazı boyutunu daha da küçültüyoruz */
    }
}


.site-footer .navbar-brand {
  color: var(--primary-color);
}

.site-footer .social-icon-link {
  font-size: var(--h6-font-size);
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.site-footer .copyright-text {
  font-size: var(--copyright-text-font-size);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
}

.footer-menu-link {
  font-size: var(--copyright-text-font-size);
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--white-color);
  border-radius: 100px;
  font-size: var(--p-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1500px) {
   .speakers-text-info {
    padding: 100px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
    margin-top: 140px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding,
  .site-footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    height: calc(75vh - 78.39px);
  }

  .nav-tabs .nav-link {
    width: 50%;
  }

  .copyright-text-wrap {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
    margin-top: 130px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .navbar-brand {
    font-size: 16px;
  }

  .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .nav-tabs .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 15px;
  }

  .hero-text {
    width: 100%;
  }

  .site-footer .social-icon-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .footer-menu-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-menu,
  .copyright-text-wrap {
    justify-content: center;
  }
}
/* Büyük ekranlar için stil */
@media screen and (min-width: 1024px) {
  .custom-btn {
      position:relative  !important;
      top: -26px !important;
  }
}

@media screen and (min-width: 1024px) {
  .teklif {
      position:relative  !important;
      top: 40px !important;
  }
}


/* Teklif Formu Container */
.custom-form-container {
  max-width: 500px;
  margin: 50px auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* Başlık */
.custom-form-header {
  text-align: center;
  color: #2d3436;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Form Elemanları */
.custom-form-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.custom-form-item label {
  font-weight: 500;
  color: #495057;
  font-size: 16px;
  flex-basis: 35%;
}

.custom-form-item input,
.custom-form-item select,
.custom-form-item textarea {
  padding: 8px 12px; /* Daha küçük padding */
  font-size: 14px; /* Küçük font */
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
  display: block;
  margin: auto;
}

.custom-form-item input:focus,
.custom-form-item select:focus,
.custom-form-item textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Textarea */
.custom-form-item textarea {
  height: 100px; /* Daha küçük textarea */
  resize: vertical;
}

/* Butonlar */
.custom-form-actions {
  text-align: center;
  margin-top: 25px;
}

.custom-form-actions button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 25px;
  margin: 10px;
  cursor: pointer;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 160px;
}

.custom-form-actions button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.custom-form-actions button.secondary-btn {
  background-color: #28a745;
}

.custom-form-actions button.secondary-btn:hover {
  background-color: #218838;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .custom-form-container {
    padding: 20px;
    margin: 20px;
  }

  .custom-form-item label {
    font-size: 14px;
    flex-basis: 40%;
  }

  .custom-form-item input,
  .custom-form-item select,
  .custom-form-item textarea {
    width: 100%;
  }

  .custom-form-actions button {
    width: 100%;
    min-width: unset;
  }
}


/* Genel Konteyner Stilleri */
.scrollable-form-container {
  max-width: 500px;
  margin: 50px auto 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  backdrop-filter: blur(8px);
}

.unique-container {
  max-width: 500px;
  margin: 50px auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* Ürün Öğesi Stilleri */
.unique-product-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

/* Resimlerin Eşit Boyutta Olması */
.unique-product-image {
  width: 120px; 
  height: 120px; 
  margin-right: 20px;
  border-radius: 10px;
  object-fit: cover; /* Resimleri kesmeden ölçekler */
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ürün Detayları */
.unique-product-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

/* Miktar Giriş Alanı */
.unique-product-quantity input {
  width: 100px; /* Genişletildi */
  padding: 5px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Butonlar */
.unique-button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.unique-button:hover {
  background-color: #0056b3;
}
/* Butonlar Kapsayıcısı */
.button-container {
  display: flex;
  justify-content: center; /* Yatayda ortala */
  align-items: center; /* Dikeyde ortala */
  margin-top: 20px; /* Butonlar arasına boşluk ekle */
}

/* WhatsApp Butonu - Mavi */
.whatsapp-button {
  background-color: #007BFF !important; /* WhatsApp butonu mavi */
  color: white !important;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #0056b3 !important;
}

/* Mail Butonu - Yeşil */
.mail-button {
  background-color: #25D366 !important; /* Mail butonu yeşil */
  color: white !important;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.mail-button:hover {
  background-color: #1ebe5d !important;
}


/* Responsive Tasarım */
@media (max-width: 768px) {
  .scrollable-form-container,
  .unique-container {
    max-width: 100%;
    padding: 15px;
    margin: 30px auto;
  }
}

@media (max-width: 576px) {
  .unique-product-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .unique-product-image {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .unique-product-quantity input {
    width: 90px;
  }

  .unique-button,
  .mail-button {
    padding: 8px 16px;
  }
}

#yukari {
  position: relative;
  top: -50px;
}
/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 700px) {
  .section-padding, .site-footer {
    padding-top: 1px;
    padding-bottom: 1px;
}
  #urun{
    font-size: 32px;
    margin-top: 10px;
  }
}
.custom-col {
  max-width: 200px; /* Genişliği belirleyin */
  margin: 0 auto;   /* Ortalayın */
}

@media (max-width: 576px) { /* Küçük ekranlar için */
  .custom-col {
      max-width: 100px; /* Daha da daralt */
  }
}
h2.mb-5 {
  margin: 10px 0; /* Alt ve üst boşluğu küçült */
  padding: 0;     /* Gereksiz iç boşluğu kaldır */
  line-height: 1.2;  /* Satır aralığını daralt */
}
@media (max-width: 700px) {
  .venue-thumb-modern {
    max-width: 80%; /* Kart genişliğini daha fazla küçült */
    margin: 10px auto; /* Ortala ve çevredeki boşluğu küçült */
    padding: 5px; /* İç boşluğu azalt */
    border-radius: 8px; /* Köşe yuvarlaklığını küçült */
  }

  .venue-info-title-modern {
    font-size: 0.9rem; /* Başlık boyutunu küçült */
    padding: 4px; /* Başlık boşluğunu azalt */
  }

  .venue-info-body-modern {
    font-size: 12px; /* İçerik yazı boyutunu küçült */
    line-height: 1.5; /* Satır aralığını daralt */
    padding: 4px; /* İç boşluğu küçült */
  }

  .google-map-modern {
    height: 200px; /* Harita yüksekliğini azalt */
  }
  
  .carousel-item video {
      object-fit: cover;
      width: 100%;
      height: 80%;
  }
}

@media (max-width: 700px) {
  .icerik {
      margin: 0 auto;  /* Otomatik ortalama */
      width: 90%;      /* Ekran genişliğinin %90'ını kapla */
  }

  #hakkimiz p {
    margin: 0 !important;
    padding: 0 15px !important;
    text-align: justify !important; /* Satır hizalama */
    width: calc(100vw - 40px) !important; 
    position: relative;
    left: 0;
    word-break: break-word;  /* Uzun kelimeleri kır */
    hyphens: auto;  
  }

  #hakkimiz2 p {
    margin: 0 !important;
    padding: 0 15px !important;
    text-align: justify !important; /* Satır hizalama */
    width: calc(100vw - 40px) !important; 
    position: relative;
    left: 0;
    word-break: break-word;  /* Uzun kelimeleri kır */
    hyphens: auto;           /* Kelimeleri gerektiğinde hecele */
  }
}

.custom-form-header {
  text-align: center;
  color: #2d3436;
  font-size: 24px;
  margin-bottom: 45px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 20px;
}

