
/* Slider ana kapsayıcı */
.hero-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

/* Görsellerin orana göre otomatik yüksekliği */
.hero-slide img {
  width: 100%;
  height: auto; /* yüksekliği orana göre belirlenir */
  display: block;
  margin: 0 auto;
  object-fit: contain; /* kırpma yok */
  background-color: #000; /* varsa boşluklar siyah olur */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Yazı alanı */
.carousel-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  padding: 0 1rem;
}

.carousel-caption h1 {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;

  /* Daha esnek: mobilde küçük, 2K'da dengeli */
  font-size: clamp(1.1rem, 2.2vw + 0.4rem, 2.3rem);
  letter-spacing: 0.02em;
}

.carousel-caption p {
  color: #f2f2f2;
  margin-top: 0.75rem;
  line-height: 1.5;

  /* Cihaz genişliğine göre orantılı küçülür */
  font-size: clamp(0.85rem, 1.5vw + 0.25rem, 1.15rem);
  max-width: 720px; /* uzun metinlerde satır uzunluğunu dengeler */
}




/* Fade geçiş (isteğe bağlı) */
.carousel.carousel-fade .carousel-item {
  transition: opacity 0.6s ease-in-out;
}


.template-btn.white-btn {
  /* Daha dengeli padding – mobilde fazla büyümez */
  padding: clamp(0.4rem, 0.8vw + 0.3rem, 0.8rem) clamp(1rem, 1.5vw + 0.3rem, 1.8rem);

  /* Yazı boyutu: mobilde 13px civarı, masaüstünde 17px civarı */
  font-size: clamp(0.8rem, 0.6vw + 0.3rem, 1.05rem);

  /* Ek: yazı kalınlığı sabit kalır */
  font-weight: 600;
  text-transform: uppercase;
}


.header-navigation ul li a {
                font-size: 15px;
                padding: 35px 10px;
            }

            .lang-dropdown {
                position: relative;
            }

            .lang-toggle {
                border: none;
                background: transparent;
                font-size: 14px;
                font-weight: 600;
                display: inline-flex;
                align-items: center;
                gap: 4px;
                cursor: pointer;
                padding: 0;
            }

            .lang-toggle i {
                font-size: 10px;
            }

            .lang-menu {
                position: absolute;
                right: 0;
                top: 100%;
                background: #fff;
                min-width: 80px;
                margin: 8px 0 0;
                padding: 6px 0;
                list-style: none;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
                border-radius: 4px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(5px);
                transition: all .18s ease;
                z-index: 50;
            }

            .lang-menu li a {
                display: block;
                padding: 6px 14px;
                font-size: 13px;
                color: #000;
                text-decoration: none;
                white-space: nowrap;
            }

            .lang-menu li a:hover {
                background-color: #f1f1f1;
            }

            .lang-menu li a.active-lang {
                font-weight: 700;
            }

            .lang-dropdown:hover .lang-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }