/* Genel Stil */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 80px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 20px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 2em;
  font-weight: 600;
  color: white !important;
  text-decoration: none;
}

.navbar-brand .text-white {
  color: white;
}

.navbar-brand .text-dodgerblue {
  color: dodgerblue;
  transition: color 0.3s ease;
}

.navbar-brand:hover .text-dodgerblue {
  color: dodgerblue; /* Fareyle üzerine gelindiğinde renk değişmeyecek */
}

.navbar-toggler {
  border: none;
  color: white;
  display: none; /* Mobilde gösterilecek */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item {
  margin-left: 20px;
}

.nav-link {
  color: white !important;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: dodgerblue !important; /* Fareyle üzerine gelindiğinde dodgerblue olacak */
}

/* Hero Alanı */
.bolum1 {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

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

.cta-button {
  padding: 30px 120px;
  font-size: 2.5em;
  background-color: rgba(30, 144, 255, 0.5); /* DodgerBlue şeffaf */
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(30, 144, 255, 0.8);
  transform: scale(1.05); /* Hafif büyüme efekti */
}

.cta-button a {
  color: white !important;
  text-decoration: none;
}

.cta-button a:hover {
  color: white !important;
  text-decoration: none;
}

.bolum3 {
  padding: 80px 0;
  text-align: center;
}

.download-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.text-content {
    margin-bottom: 20px;
}

.subheading {
    font-size: 12px;
    color: red;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.buttons {
    display: flex;
    gap: 15px;
}

.download-button {
    display: flex;
    align-items: center;
    background-color: rgba(220, 220, 220, 0.8);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.icon {
    width: 30px;
    height: 30px;
    fill: black;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
}

.small-text {
    font-size: 12px;
    color: #555;
}

.main-text {
    font-size: 16px;
    font-weight: bold;
    color: black;
}

.sosyalmedya {
    display: flex;
    justify-content: center; /* İkonları yatayda ortala */
    align-items: center; /* İkonları dikeyde ortala */
    gap: 50px; /* İkonlar arası boşluk */
    padding: 0;
    margin: 20px 0;
}

.sosyalmedya li {
    list-style: none;
}

.sosyalmedya .social-icon {
    font-size: 50px; /* İkon boyutu */
    text-decoration: none;
    color: black; /* İkon rengi siyah */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sosyalmedya .social-icon:hover {
    transform: scale(1.3); /* Hover efekti */
    opacity: 0.8;
}

/* Footer Genel Stili */
footer {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Footer içeriğini tam ortala */
}

.karavan-link {
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.karavan-link:hover {
    color: gray;
    text-decoration: none;
}
@media only screen and (max-width: 768px) {
	.navbar {
    top: 20px; /* Navbar'ı yukarı taşı */
    padding: 10px 20px; /* Padding'i azalt */
  }

  .navbar-brand {
    margin-left: -10px; /* Yazıyı sola taşı */
    margin-top: -10px; /* Yazıyı yukarı taşı */
  }
  .navbar-nav {
    display: none !important; /* Mobilde butonları tamamen gizle */
  }

  .navbar-toggler {
    display: none !important; /* Toggle butonunu da gizle */
  }

  .navbar-brand {
    margin-right: auto; /* Logoyu sola yasla */
  }
  
  .cta-button {
    padding: 30px 90px; /* Buton boyutunu küçült */
    font-size: 2em; /* Yazı boyutunu küçült */
  }
}