body {
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;

}



:root {
  --ind-text: #111111;
  --ind-muted: #6f6f6f;
  --ind-divider: #e8e8e8;
}



/* Üst navbar */
.topbar {
  border-bottom: 1px solid var(--ind-divider);
  background: #fff;
}

.topbar .nav-link {
  color: var(--ind-muted);
}

.topbar .nav-link:hover,
.topbar .nav-link.active {
  color: var(--ind-text);
}

/* Logo img: orantılı ve responsive */
.brand-img {
  display: block;
  width: auto;
  height: clamp(28px, 3.2vw, 36px);
  margin: 0 auto;
}

/* Subnav (ikinci şerit) */
.subnav {
  width: 100% !important;
  border-bottom: 1px solid var(--ind-divider);
  background: #fff;
}

.subnav .nav-link {
  color: var(--ind-muted);
}

.subnav .nav-link:hover,
.subnav .nav-link.active {
  color: var(--ind-text);
}

/* nav-underline aktif alt çizgiyi kalınlaştır */
.subnav .nav-underline .nav-link.active {
  border-bottom-width: 2px;
  border-bottom-color: var(--ind-text) !important;
}


/* Mobil sadeleştirme */
@media (max-width: 992px) {

  .label-life {
    display: none;
  }

}




.navbar-toggler:focus {
  box-shadow: none !important;
}

.nav-link {
  color: #404040;
}

.offcanvas {
  border-radius: 10px 10px 0px 0px;
}

a {
  text-decoration: none;
}

.centered-text {
  text-align: center;
  font-weight: 100;
  font-size: 2rem;


}

.centered-text-link {
  text-decoration: none;
  color: black;


}

.centered-text-link:hover {
  color: #757575;
  opacity: 1;
}

.centered-text-link {
  margin-top: 0;
  position: relative;
  height: 30px;
  font-size: .625rem;
  line-height: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  color: #1b3127;

}

.centered-text-link:after {
  content: "";
  background-color: #1b3127;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: width .3s ease-in-out;
}

.centered-text-link:hover:after {
  width: 0;
}



.middle-paragraph {
  text-align: center;
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.employees-area>h1 {
  font-weight: 100;
}

.product-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px;
  padding: 80px 40px;
}



@media screen and (max-width: 500px) {
  .product-card {
    width: 150px !important;
  }


}

@media screen and (max-width: 399px) {
  .product-card {
    width: 130px !important;
    height: 200px !important;
  }

}

.product-card {
  position: relative;
  /* width: 200px;
  height: 250px; */
  width: 250px;
  height: auto;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}


.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  text-align: center;
}

.product-card:hover .product-info {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 829px) {

  .image-section {
    min-width: 400px !important;
  }
}

@media screen and (max-width: 570px) {

  .image-section {
    min-width: 300px !important;
  }

  .image-section>img {
    height: 400px !important;
  }
}

@media screen and (max-width: 600px) {
  .middle-paragraph {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .centered-text {
    font-size: 17px !important;
    font-weight: 200 !important;
  }
}


.area-counter {
  justify-content: center !important;
}

.area-counter h2 {
  font-weight: 800;
}



/* Kapsayıcı */
.intro-hero {
  position: relative;
  width: 100%;
  height: 90.8vh;
  overflow: hidden;
}

/* Video tam kaplasın */
.intro-hero>video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* (İsteğe bağlı) Logo tam ortada */
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 28vw;
  width: 260px;
  opacity: 1;
  height: auto;
  pointer-events: none;
}



/* Küçük ekranlarda metin boyutunu biraz küçültelim */
@media (max-width: 576px) {
  .hero-logo {
    width: 180px;
    max-width: 45vw;
  }


}




/* Kapsayıcı düzenleme vurguları */
[data-editable] {
  position: relative;
  cursor: default;

}

[data-editable]:hover {
  outline: 4px dashed #ff0000cf;
  outline-offset: -6px;
}

[data-editable].editing {
  outline: 4px dashed #0d6efd;
  outline-offset: -6px;
}



[data-editable].editing {
  outline: 4px dashed #0d6efd;
  outline-offset: -6px;
}

/* FAB daima üstte kalsın */
.edit-fab {
  position: absolute;
  top: 8px;
  right: 8px;
  display: none !important;
  z-index: 2147483647;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

/* Edit modunda FAB görünür */
[data-editable].editing>.edit-fab {
  display: inline-flex;
}

/* (Opsiyon A) İdareten: img tıklaması parent’a geçsin */
[data-editable] img {
  display: block;
  pointer-events: none;
}

/* Not: Bu, admin açıkken görsellere tıklanmasını devre dışı bırakır. Linkli görseliniz varsa alttaki JS çözümünü tercih edin. */