/* style.css */

/* Genel */
body {
  background-color: black;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2 {
  color: #ffcc00;
  font-weight: bold;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Navbar */
.custom-navbar {
   background-color: rgba(0, 0, 0, 0.8); /* %70 siyah saydam */
  backdrop-filter: blur(6px); /* arkayı hafif bulanık yapar */
  -webkit-backdrop-filter: blur(6px); /* Safari için */
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


.custom-navbar .nav-link {
  color: white !important;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ffcc00;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-in-out;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler img {
  display: block;
  width: 30px;
  height: 30px;
}

.navbar .d-flex a img {
  transition: transform 0.3s ease;
}

.navbar .d-flex a:hover img {
  transform: scale(1.1);
}

/* Swiper Genel */
.swiper-slide img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

/* Ok ikonu */
.down-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 100%;
  background-color: #000;
  animation: bounce 2s infinite;
}

.down-arrow img {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 0 5px gold);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Ürünler Slider */
.mySwiperProducts .swiper-slide {
  background-color: white;
  color: black;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.mySwiperProducts .swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.mySwiperProducts .swiper-slide:hover {
  transform: scale(1.05);
}

/* Yorumlar */
.yorumlar-slider .swiper-slide {
  background-color: #1f1f1f;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
}

/* Ürün Kutuları */
.urun-kutu {
  transition: transform 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.urun-kutu:hover {
  transform: scale(1.05);
}

.urun-kutu img {
  height: 200px;
  object-fit: cover;
}

/* Sertifika/slider görsel ayarı */
.mySwiperProducts .swiper-slide img {
  max-height: 200px;
}

/* Footer */
footer {
  margin-top: auto;
  background-color: #111;
  color: white;
}

/* Sayfa başlıkları */
h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-slide img {
    height: 300px;
  }
  .urun-kutu img {
    height: 150px;
  }
}
/* Hakkımızda sayfası özel */
.hakkimizda-content {
  background-color: black;
  padding-top: 100px; /* navbar sabit olduğu için boşluk */
  padding-bottom: 60px;
}

.large-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hakkimizda-text {
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Dropdown menüyü hover ile göster */
.navbar .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* menü kaymasın */
}

/* Dropdown menü altın arka plan */
.navbar .dropdown-menu {
  background-color: gold !important;
  border: none;
  transition: all 0.2s ease-in-out;
}

/* Menü yazı rengi siyah */
.navbar .dropdown-menu .dropdown-item {
  color: black !important;
  font-weight: 500;
}

/* Hover olduğunda yazı beyaz, arka plan koyu altın */
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #d4af37 !important; /* koyu altın tonu */
  color: white !important;
}
.urunler-bolumu {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 40px 0;
}

.urunler-gorsel {
  width: 90%;
  max-width: 1200px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 10px gold;
}

.urunler-gorsel:hover {
  transform: scale(1.02);
}
.urunler-bolumu {
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.urunler-gorsel {
  width: 100%;
  height: auto;
  display: block;
}
.anasayfa-urunlerimiz {
  background: url('assets/images/urunlerimiz.png');
}

.urunlerimiz-baslik {
  color: rgb(0, 0, 0);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.urun-gorsel {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.urun-gorsel:hover {
  transform: scale(1.05);
}
.slider-yazi {
  position: absolute;
  bottom: 15%;
  right: 5%;
  color: white;
  font-size: 6rem; /* daha büyük yazı */
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  z-index: 10;
  text-align: right;
  animation-delay: 0.3s;
  max-width: 40%;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .slider-yazi {
    font-size: 1.5rem;
    right: 5%;
    bottom: 10%;
    max-width: 90%;
    text-align: right;
  }
}
.sertifikalar-slider .swiper-slide {
  background-color: white;
  color: black;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.sertifikalar-slider .swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.sertifikalar-slider .swiper-slide:hover {
  transform: scale(1.05);
}
.section-title.text-center {
  text-align: center !important;
}
.sertifikalar-bolumu {
  background-color: white;
  color: black;
}

.sertifika-kutu {
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.sertifika-kutu img {
  width: 160px;
  height: 200px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.sertifika-kutu:hover img {
  transform: scale(1.05);
}
.iletisim-section {
  background-color: #000;
  padding-top: 100px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.tarif-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tarif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.tarif-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tarif-card:hover .tarif-img {
  transform: scale(1.05);
}

.tarif-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tarif-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.tarif-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}





