/* Genel gövde ayarları */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: #dc3545 !important;
  padding: 15px 0;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 10px 15px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
}

/* Carousel */
.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 20px;
}

.carousel-item img,
.carousel-item video {
  height: 480px;
  object-fit: cover;
  width: 100%;
  display: block;
  border-radius: 4px;
}

.carousel-item img[src$=".gif"] {
  image-rendering: auto;
}

/* Ana başlık */
.text-center.py-4 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Kartlar */
.card-header {
  font-weight: bold;
  text-align: center;
}

.card {
  height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.bg-blue {
  background-color: #0d6efd !important;
}

.border-blue {
  border: 1px solid #0d6efd !important;
}

.bg-red {
  background-color: #dc3545 !important;
}

.border-red {
  border: 1px solid #dc3545 !important;
}

.bg-cyan {
  background-color: #0dcaf0 !important;
}

.border-cyan {
  border: 1px solid #0dcaf0 !important;
}

.bg-amber {
  background-color: #ffc107 !important;
}

.border-amber {
  border: 1px solid #ffc107 !important;
}

/* Footer */
.footer {
  background: #dc3545;
  color: white;
  padding: 40px 0;
}

.footer h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background: #3b0b0b;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
}
