html{
    font-size: 67%;
}

*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
body{
    background-image: url(Galeri/ark_pln.png);
    background-repeat: no-repeat;
    background-position:center center;
     background-attachment: fixed;
     background-size: cover;
     font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
     line-height: 1.5;
     
     
}

/* ------------ */
/* Navbar stili */
  /* Genel stiller */
  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  /* Navbar stili */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 20px;
    color: white;
  }
  
  .navbar .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar .menu {
    display: flex;
    gap: 15px;
  }
  
  .navbar .menu a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .navbar .menu a:hover {
    background-color: #575757;
    border-radius: 5px;
  }
  
  /* Hamburger menü */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
  }
  
  /* Mobil görünüm */
  @media (max-width: 768px) {
    .navbar .menu {
      display: none;
      flex-direction: column;
      background-color: #000;
      position: absolute;
      top: 118px; /* Navbar yüksekliği kadar boşluk */
      left: 0;
      width: 100%;
      border-radius: 0; /* Köşeler kaldırıldı */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
  
    .navbar .menu.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  }
  



/* ---------------------- */




/* İletişim Konteyneri */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
  padding: 20px;
}

/* Mail Gönderme Kutusu */
.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #f8f9fa; /* Açık gri arka plan */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form button {
  background-color: #eeaa54;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #b40e36;
}

/* İletişim Bilgileri Kutusu */
.contact-box {
  flex: 1;
  min-width: 300px;
  background-color: #575757; /* Mavi arka plan */
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.contact-box h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  font-size: 18px;
  color: #eeaa54; /* Altın renkli ikonlar */
}

.contact-info a {
  color: #eeaa54;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-box {
    width: 100%;
  }
}




/*------------------------*/
.clearfix{
    background-color: #020a20;
    display:block;
    color: white;
    vertical-align: baseline;
}

.container_footer{
    max-width: 1170px;
    margin: auto;
}

.row{
display: flex;
flex-wrap: wrap;
}

.ul{
    list-style: none;
}

/* -------------------*/

.Başlik-1{
    text-align: center;
    background-color: #f4f4f4;
    width: 100%;
    height: 3vh;
}

/* ------------- */

.footer {
    background-color: #000;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    opacity: 0.8;
    margin-top: 90px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around; /* Div'leri yan yana yerleştirir */
    align-items: flex-start; /* Dikey hizalamayı ayarlar */
    flex-wrap: wrap; /* Taşma durumunda alt satıra geçmesini sağlar */
  }
  
  .footer-logo h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .footer-links, .footer-contact {
    margin: 20px;
    flex: 1; /* Her bir div'in eşit genişlikte olmasını sağlar */
    min-width: 200px; /* Minimum genişlik ayarı */
  }
  .footer-contact p{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 15px;
  margin-top: 15px;
  }
  
  .footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    
  }
  
  
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin: 10px 0;
    position: relative; /* Pseudo-element için konumlandırma */
  }
  
  .footer-links a {
    color: #ffffff; /* Normal yazı rengi */
    text-decoration: none;
    position: relative; /* Pseudo-element için konumlandırma */
    z-index: 1; /* Yazının üstte görünmesi için */
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
  }
  
  .footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%; /* Ortalamak için */
    height: 100%;
    width: 100%;
    background-color: #575757; /* Marker rengi */
    transform: translateY(-50%) scaleY(0) scaleX(1.1); /* Başlangıçta görünmez ve yatayda biraz büyütülmüş */
    transition: transform 0.3s ease; /* Geçiş efekti */
    z-index: -1; /* Arka planda görünmesi için */
    border-radius: 5px; /* Kenarları yuvarlatmak için */
  }
  
  .footer-links a:hover::before {
    transform: translateY(-50%) scaleY(1.5) scaleX(1.1); /* Hover'da daha büyük görünür hale gelir */
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 14px;
  }
  
  /* Mobil uyumlu tasarım için medya sorguları */
  @media (max-width: 600px) {
    .footer-container {
        flex-direction: column; /* Mobilde dikey hizalama */
        align-items: center; /* Ortalar */
        padding: 20px;
    }
  
    .footer-logo h1 {
        font-size: 20px;
    }
    
    .footer-links h3, .footer-contact h3 {
        font-size: 18px;
    }
  
  
    .footer-bottom {
        font-size: 12px;
    }
  }
/* ------------- */ 

.container {
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
    background-color: #f4f4f4;
    padding: 20px;
    
  }
  
  .box {
    width: 300px;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  
  .box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .box h2 {
    margin-top: 0;
  }
  
  .box p {
    line-height: 1.6;
  }
  
  .box ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .box li {
    margin-bottom: 5px;
  }







