body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.navbar-brand img {
  max-height: 50px;
}/* Slider görselleri */
.carousel-item img {
  object-fit: cover;
  height: 75vh; /* Görsel boyu ekranın %75'i */
}
@media (max-width: 768px) {
  .carousel-item img {
    height: 60vh;
  }
}

/* Slider overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* siyah şeffaf katman */
  z-index: 1;
}

/* Slider yazıları ortalama */
.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  z-index: 2; /* overlay üstüne çıksın */
}

.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #ffcc00;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 1.6rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}
/* Top header */
.bg-warning {
  background-color: #ff6600 !important; /* Daha canlı turuncu */
}

.fixed-top + .navbar {
  margin-top: 40px; /* Topbar eklenince navbar aşağı kayar */
}

.bg-warning a:hover {
  color: #fff !important;
}


footer h5 {
  margin-bottom: 1rem;
}

footer a:hover {
  color: #ff6600 !important;
}
section h5 {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
section p {
  font-size: 1rem;
}
