body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #ffffff;
 
}
.fade{
   opacity: 0;
  transition: opacity 1s ease-in-out;
}
.fade.loaded {
  opacity: 1;
}

/* Üst Menü */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Üst Menü */
.header {
  width: 100%;
  height: 65px;
  background-color: rgb(0, 119, 255);
  color: white;
}

.headerContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  margin: 0 auto;
  padding-top: 13px;
}

.headerTitle a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-style: italic;
}

.headerLinks a {
  text-decoration: none;
  color: white;
  margin: 0 25px;
}

.headerLinks a:hover {
  background-color: orange;
}

/* Alt Başlık */
.headerSection {
  width: 100%;
  height: 75px;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.headerSectionTitle {
  width: 70%;
  margin: 0 auto;
  font-size: 24px;
  
}
.headerSectionTitle a{
    text-decoration: none;
    color: black;
    font-weight: 400;
}
.bannerText {
  position: absolute;
  top: 150px;
  color: white;
  text-align: left;
  left: 50px;
  margin-top: 25px;
  font-size: 34px;
  font-style: italic;
  font-weight: bolder;
  width: 80%;
}
.bannerText2 {
  position: absolute;
  color: #ffffff;
  text-align: left;
  left: 55px;
  margin-top: 250px;
}
.bannerText h1{
    margin: 0;
}
.bannerText2 h1{
    margin: 0;
}


.image-section {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}
.image-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* İletişim Bölümü */
.contact-section {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 25px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #0050ff;
  letter-spacing: 1px;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: #003380;
}

.contact-item i {
  font-size: 28px;
  color: rgb(0, 119, 255);
  min-width: 35px;
  text-align: center;
}


.footer {
  background: linear-gradient(to right, #00aeff, #7eeee8);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 20px 10px;
  margin-top: 60px;
  font-weight: bold;
}

.footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: -15px auto 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left h2 {
  margin: 0 0 10px;
  font-style: italic;
  font-size: 28px;
}

.footer-left p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

 .header {
    height: auto;
    padding: 10px 0;
  }

  .headerContainer {
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding-top: 0;
  }

  .headerTitle a {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .headerLinks {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 10px;
  }

  .headerLinks a {
    font-size: 16px;
    margin: 0;
    padding: 10px;
  }

  /* Banner */
  .bannerText {
            top: 60px;
        left: 20px;
        font-size: 15px;
        width: 90%;
  }

  .bannerText2 {
    margin-top: 150px;
    left: 20px;
    font-size: 14px;
    width: 90%;
  }

  .image-section {
    max-height: 250px;
  }

  .image-section img {
    object-fit: cover;
    height: 250px;
  }

  /* Alt Başlık */
  .headerSection {
    height: auto;
    padding: 10px 0;
  }

  .headerSectionTitle {
    width: 90%;
    font-size: 18px;
    text-align: center;
  }

  .headerSectionTitle a {
    font-size: 16px;
  }

  /* İçerik */
  .sectionContainer {
    width: 90%;
    padding: 10px;
  }

  .sectionText h2 {
    font-size: 20px;
  }

  .sectionText p,
  .sectionText li,
  address {
    font-size: 15px;
  }



@media (max-width: 768px) {
  .contact-section {
    padding: 15px;
    text-align: center;
  }

  .contact-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }

  .contact-item i {
    font-size: 24px;
    color: orange; /* İstersen ikon rengini değiştirebilirsin */
  }

  .contact-item span {
    display: block;
    word-break: break-word;
  }
}

  /* Footer */
  .footer-upper,
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    text-align: center;
  }

  .footer-left h2 {
    font-size: 22px;
  }

  .footer-left p {
    font-size: 14px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 0 10px;
  }
}
 .circle-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background-color: #00aaff; /* Mavi */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 1s ease-out forwards;
  z-index: 9999;
}

@keyframes breathe {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.fade {
  opacity: 0;
  transition: opacity 2.5s ease;
}

.fade.loaded {
  opacity: 1;
}