body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: rgb(189, 123, 23);
  color: #09407a; 
  font-weight: bolder;
}

/* ------------------------------------------------------------------------------------ */

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  width: 97%;
  background: #000; /* siyah */
  color: #fff;
  border-radius: 30px;
  align-items: center;
  text-align: center;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left .logo {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.nav-left .site-desc {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  align-items: center;
   background: linear-gradient(135deg, #5a25d4, #a8edea);
   width: 220px;
  height: 30px;
  border-radius: 50px;
}


.nav-left .site-desc:hover {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  align-items: center;
   background: rgb(18, 18, 143);
   color: yellow;
   width: 220px;
  height: 30px;
  border-radius: 50px;
}



.nav-right a {
  background: linear-gradient(135deg, #5a25d4, #a8edea);
  color: white;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-right a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
   background: rgb(18, 18, 143);
   color: yellow;
}






/* Hamburger buton */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #5a25d4;
    text-align: center;
    margin-top: 10px;
    border-radius: 8px;
  }

  .nav-right a {
    display: block;
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-right.active {
    display: flex;
  }
}



/* ------------------------------------------------------------------------------------ */







header {
  background: linear-gradient(135deg, #0066cc, #00bfff);
  border-radius: 50px;
  height: 10px;
  width: 97%;

}

h2 {
  margin-bottom: 20px;

   font-size: larger;
  font-weight: bolder;
  text-align: center;
  color: white;
}


h3 {
  margin-bottom: 20px;

   font-size: larger;
  font-weight: bolder;
  text-align: center;
  color: white;
 background-color: #09407a; 
   border-radius: 50px;

  width: 97%;
}



p {
 font-size: larger;
  font-weight: bolder;
  
  
}
.card img {
  height: 220px;
  object-fit: cover;
  border-radius: 30px
}



.card.img-container {
  position: relative;
  display: inline-block; /* ya da block, ihtiyaca göre */
}

.card.img-info {
  position: absolute;
  bottom: 15px; /* Görselin altından 15px yukarıda */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6); /* Yarı saydam siyah arka plan */
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  max-width: 90%;
}


.image-info {
  position: absolute;
  bottom: 15px; /* Görselin altından 15px yukarıda */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6); /* Yarı saydam siyah arka plan */
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  max-width: 90%;
}




.card {
   border-radius: 50px;

}
.img {
   border-radius: 50px;

}






.custom-rounded {
  border-radius: 60px;
}

.custom-container {
  width: 100%;              /* her zaman ekran genişliği */
  min-height: 400px;        /* en az 400px yüksek */
  display: flex;
  flex-wrap: wrap;          /* içerik arttıkça alt satıra geçer */
  justify-content: center;
  align-items: center;
  background-color: #09407a; 
  padding: 40px;
  border-radius: 70px;
}

footer {
  background: linear-gradient(135deg, #0066cc, #00bfff);
  border-radius: 50px;
  height: 10px;
  width: 97%;

}