@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gabarito", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  /* 1. VARSAYILAN DURUM: Tüm alt sayfalar için katı renk ve blursuz */
  background-color: #1c4425;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
  /* 2. SADECE ANASAYFA İÇİN (is-home sınıfı varsa) */
}
.site-header.is-home {
  background-color: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* Anasayfada sayfa aşağı kaydırıldığında (JS ile eklendiğinde) */
}
.site-header.is-home.scrolled {
  background-color: #1c4425;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header {
  /* --- İçerik Ayarları --- */
}
.site-header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .site-header .header-container {
    padding: 5px 16px;
  }
}

.logo a {
  text-decoration: none;
  /* 1. Adım: Her zaman mobil tasarımı (varsayılanı) en üste yazarız */
}
.logo a .site-logo {
  width: auto;
  height: 60px;
  transition: all 0.3s ease;
  /* 2. Adım: HTML'deki ile aynı medya sorgusunu yazarız */
}
@media (min-width: 600px) {
  .logo a .site-logo {
    height: 45px;
  }
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-menu a {
  text-decoration: none;
  color: #f9f9f9;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #f9f9f9;
  transition: width 0.3s ease;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #f9f9f9;
}
.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

@media screen and (max-width: 1130px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background-color: #1c4425;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 5px;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  }
  .nav-menu.is-active {
    max-height: 400px;
    padding: 20px 0;
  }
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  background-color: #f9f9f9;
  color: #1c4425;
  padding: 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
  background-color: #ff5c00;
  color: #f9f9f9;
}
@media screen and (max-width: 1050px) {
  .btn-primary {
    padding: 10px;
    font-size: 14px;
  }
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}
.lang-dropdown .lang-btn {
  background-color: #f9f9f9;
  border-radius: 50px;
  color: #1c4425;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  font-family: inherit;
  transition: all 0.3s ease-in-out;
  border: none;
}
.lang-dropdown .lang-btn .arrow {
  font-size: 9px;
  transition: transform 0.3s ease;
}
.lang-dropdown .lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #f9f9f9;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 60px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.lang-dropdown .lang-menu li {
  width: 100%;
}
.lang-dropdown .lang-menu a {
  display: block;
  padding: 8px 16px;
  color: #1c4425;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}
.lang-dropdown .lang-menu a:hover, .lang-dropdown .lang-menu a.active {
  background-color: rgba(0, 77, 64, 0.1);
  color: #ff5c00;
}
.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown:hover .lang-btn .arrow {
  transform: rotate(180deg);
}
@media screen and (max-width: 1050px) {
  .lang-dropdown .lang-btn {
    font-size: 14px;
    padding: 10px;
  }
  .lang-dropdown .lang-menu {
    min-width: 70px;
  }
  .lang-dropdown .lang-menu a {
    padding: 8px 12px;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #f9f9f9;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 1130px) {
  .hamburger {
    display: flex;
  }
}

.site-footer {
  background-color: #1c4425;
  color: #f9f9f9;
  padding: 80px 20px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.site-footer .footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .footer-about .footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.site-footer .footer-about p {
  font-size: 1rem;
  color: #f9f9f9;
  line-height: 1.6;
  margin-bottom: 30px;
}
.site-footer .footer-about .btn-primary {
  background-color: #f9f9f9;
  color: #1c4425;
  padding: 12px 25px;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease-in-out;
}
.site-footer .footer-about .btn-primary:hover {
  background-color: #ff5c00;
  color: #f9f9f9;
}
.site-footer .footer-links ul {
  list-style: none;
}
.site-footer .footer-links ul li {
  margin-bottom: 15px;
}
.site-footer .footer-links ul li a {
  text-decoration: none;
  color: #f9f9f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}
.site-footer .footer-links ul li a:hover {
  color: #ff5c00;
}
.site-footer .footer-social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.site-footer .footer-social .social-icons a {
  color: #f9f9f9;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .footer-social .social-icons a:hover {
  color: #ff5c00;
}
.site-footer .footer-contact .contact-info p {
  font-size: 1rem;
  color: #f9f9f9;
  line-height: 1.6;
  margin-bottom: 15px;
}
.site-footer .footer-contact .contact-info p strong {
  color: #fff;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  text-align: center;
}
.site-footer .footer-bottom .bottom-container p {
  font-size: 0.9rem;
  color: #f9f9f9;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 992px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .site-footer {
    padding-top: 60px;
  }
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .site-footer .footer-social .social-icons {
    align-items: center;
  }
  .site-footer .footer-links ul li a:hover {
    padding-left: 0;
  }
}/*# sourceMappingURL=global.css.map */