/* Genel Ayarlar */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
  scroll-behavior: smooth;
}

h1, h2 {
  text-align: center;
  color: #0d5b8c;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

/* Navbar */
.navbar {
  background-color: #f7f7f7;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  gap: 1rem;
}

.logo img {
  height: 50px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #0d5b8c;
  font-weight: 600;
}

.nav-links li a.active {
  color: #f39200; /* logo turuncusu */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-right a {
  color: #0d5b8c;
  font-size: 1rem;
}

.lang-switch {
  margin-left: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switch a {
  color: #0d5b8c;
  text-decoration: none;
  font-weight: 600;
}

.lang-switch a:hover {
  color: #f39200;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #0d5b8c;
  border-radius: 3px;
}

.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle span:nth-child(2) {
  opacity: 0;
}
.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobil Menü */
@media screen and (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: #f7f7f7;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 1rem;
    display: none;
    width: 250px;
    border-radius: 10px;
    z-index: 9999;
  }

  .nav-links.nav-active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-right {
    display: none !important;
  }

  .nav-links li {
    margin: 0.5rem 0;
    text-align: left;
  }

  .mobile-only {
    display: flex !important;
    justify-content: center;
    gap: 0.8rem;
  }

  .desktop-only {
    display: none !important;
  }

  .lang-switch {
    margin-top: 0.5rem;
    justify-content: center;
    width: 100%;
  }
}

/* Masaüstü özel sınıflar */
@media screen and (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

/* Banner */
.banner {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 1rem;
  text-align: center;
  box-sizing: border-box;
}

.banner-caption h1 {
  font-size: 1.8rem;
  color: #49a2dc;
  margin: 0;
}

.banner-caption p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .banner-caption h1 {
    font-size: 1.3rem;
  }

  .banner-caption p {
    font-size: 0.9rem;
  }
}

/* Galeri */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.lb-image {
  max-width: 90vw !important;
  max-height: 80vh !important;
}

/* Animasyonlar */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buton */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0d5b8c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0a4770;
}

/* Footer */
.footer {
  background-color: #0d5b8c;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
}

.footer p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer a:hover {
  color: #cce4f2;
}

.about-box {
  border-left: 6px solid #0d5b8c;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  animation: fadeInUp 1s ease forwards;
}

.about-box h2 {
  margin-top: 0;
  color: #0d5b8c;
  font-size: 1.8rem;
}

.about-box p {
  margin-top: 1rem;
  line-height: 1.7;
  font-size: 1rem;
}

/* İletişim */
.contact {
  background-color: #f9f9f9;
  padding: 2rem 0;
  text-align: center;
}

.contact .info-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.contact-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  max-width: 300px;
  flex: 1;
}

.contact-box i {
  font-size: 2rem;
  color: #0d5b8c;
  margin-bottom: 0.5rem;
}

.contact-box h3 {
  margin-bottom: 0.5rem;
  color: #0d5b8c;
}

.contact-box a {
  color: #f39200;
  text-decoration: none;
  font-weight: bold;
}

.contact-box a:hover {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
}

/* Masaüstü ve mobil dil seçici görünürlüğü */
.lang-switch {
  font-size: 0.9rem;
}

.lang-switch a {
  color: #0d5b8c;
  text-decoration: none;
  font-weight: 600;
}

.lang-switch a:hover {
  color: #f39200;
}

@media screen and (min-width: 769px) {
  .lang-switch.desktop-only {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .lang-switch.mobile-only {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1rem;
  }
}
