.navbar {
  position: fixed;
  top: 0; /* düzeltildi: top:30 yerine top:0 */
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #1f2a2e;
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo kısmı */
.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height:160px;
  object-fit: contain;
}

/* Menü kısmı */
.navbar ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0 25px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar a:hover {
  color: #f9a825; /* turuncu vurgu */
}


.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 15px 20px;
  border-bottom: 2px solid #1f2a2e;
  margin: 0; /* navbar ile yapışık */
}

.geributton {
  background-color:#1f2a2e;
  color: white;
  text-decoration: none;
  padding: 12px 24px; 
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
}
.geributton:hover{
   box-shadow: 0 10px 18px rgba(0,0,0,0.2);
	color: #f9a825;
}

.dosyakonumu {
  flex: 1;
  text-align: center; /* ortada */
  font-size: 18px;
  color: #1f2a2e;
}

.dosyakonumu a {
  color: #1f2a2e;
  text-decoration: none;
  margin: 0 6px;
}

.dosyakonumu .current {
  font-weight: bold;
  color: #555;
}

    
body {
  margin:0;
  padding: 0;
}

.slider {
  position: relative;      /* ikon ve resimler için referans */
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* resim ekranı doldursun */
  opacity: 0;
  animation: slide 20s infinite;
}

.slider img:nth-child(1) { animation-delay: 0s; }
.slider img:nth-child(2) { animation-delay: -5s; }
.slider img:nth-child(3) { animation-delay: -10s; }
.slider img:nth-child(4) { animation-delay: -15s; }

@keyframes slide {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}

.social-icons {
  position: fixed;         /* Sayfa kayınca sabit kalır */
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;             /* Resmin üstünde kalır */
}

.social-icons a {
  width: 70px;
  height: 70px;
  color: #fff;
  text-align: center;
  align-items: center;
  line-height: 80px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.social-icons a:hover {
  background-color: #EDB100;
  color: #000;
}


/* Arka plan resmi kapsayıcı */
.hero {
  position: relative;
  height: 100vh;
  background: url('arka-plan.jpg') no-repeat center/cover;
}

/* Manşetleri resmin üstüne bindirmek için */
.manset-wrapper {
  position: absolute;   /* resmin üstüne oturur */
  top: 20%;             /* yukarıdan boşluk */
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;            /* Manşetler arası boşluk */
  padding: 0 20px;
  z-index: 10;          /* resmin üzerinde görünür */
}

.manset-container {
  position: relative;
  animation: mansetGirisSoldan 2s ease-out forwards;
}

.manset-yazi {
  color: white;
  background-color: #1f2a2e; /* Gri arka plan */
  padding: 20px 40px;
  font-size: 2.5rem;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
  position: relative;
  box-shadow: 10px 10px 25px #EDB100; /* Sarı gölge */
  display: inline-block;
}

/* Dik üçgen çıkıntı */
.manset-yazi::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 40px solid #1f2a2e; /* Arka planla aynı renk */
}

/* Soldan giriş animasyonu */
@keyframes mansetGirisSoldan {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
audio {
  display: block; /* görünür olsun */
}
h2{
	margin-top:100px;
}

