/* Carousel navigation buttons */
/* #heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  z-index: 3;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: white;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100%); /* ikonları siyah yerine beyaz yapar */
  /* width: 20px;
  height: 20px;
} */

  
    /* Hero Bölümü */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero.dark-background {
  background: transparent !important;
}

#hero .carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item img {
  height: 100%;
}

#hero .carousel-item img {
  width: 100%;
  object-fit: cover;
  display: block;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
}

/* Hafif karartma */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1;
}

/* Hakkımızda Bölümü (foto + overlay) */




#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* İçerik overlay üstünde */
#about .container {
  position: relative;
  z-index: 1;
}

#about h2 {
  color: #f5f5f5;
  font-weight: 700;
}

#about h3 {
  color: #f5f5f5;
  font-weight: 600;
}

#about p {
  color: #ddd;
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-title .baslik-ortak {
  font-size: 2rem !important;  /* her ikisine de aynı boyut */
  font-weight: 100 !important;
  letter-spacing: 6px !important;
  text-transform: uppercase !important;
  color: #fff !important;
}




/* Fotoğraf kutusu */
.about-img-wrapper {
  display: inline-block;
  overflow: hidden;
  border-radius: 1rem;
  width: 80%;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.about-img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  transition: transform 0.4s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.1);
}






/* Ortak arka plan resmi */


/* Başlıklar */
.section-bg h2,
.section-bg h3,
.section-bg h4,
.section-bg h5,
.section-bg h6 {
  color: #010101;
  text-shadow: none; /* açık arka plan olduğu için gölgeyi kaldırıyoruz */
}

/* Paragraflar */
.section-bg p {
  color: #010101;
}

/* Services Section */
#services {
  position: relative; /* overlay kaldırıldı, sade */
}

/* Başlık renkleri */
#services h2 {
  font-weight: 600;
  color: #111;
}

#services p {
  color: #444;
}

/* Service kartlar */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #0b0a0a;
  box-shadow: 0 10px 32px rgba(0,0,0,0.8);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.service-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Yazı overlay */
.service-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.8); /* açık arka plan + siyah yazı */
  padding: 20px;
  text-align: center;
  color: #111;
}

.service-body h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111;
}

.service-body p {
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
}

/* Flip kart */
.flip-card {
  perspective: 1000px;
  margin-bottom: 30px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  backface-visibility: hidden;
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

/* Flip-card arka yüz (açık arka planlarda okunaklı olsun diye hafif siyah overlay) */
.flip-card-back {
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transform: rotateY(180deg);
  text-align: center;
}

.flip-card-back h4 {
  color: #fff !important;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.flip-card-back p {
  color: #f5f5f5;
  font-size: 0.95rem;
}

/* Galeri Başlık */
#galeri h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #111;
}

#galeri p {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

#galeri .portfolio-info h4,
#galeri .portfolio-info p {
  color: #222;
}

#galeri .portfolio-info a {
  color: #ffc107;
  transition: color 0.3s ease;
}

#galeri .portfolio-info a:hover {
  color: #111;
}

/* Video Galeri */
#videogaleri .section-title h2,
#videogaleri .section-title p {
  color: #111 !important;
}

#videogaleri .portfolio-filters li {
  color: #222 !important;
}

#videogaleri .portfolio-filters li.filter-active {
  background: rgba(0,0,0,0.1);
  color: #111 !important;
  border-radius: 6px;
}

video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.stat-box {
  margin-bottom: 30px;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #030303;
}

.stat-box p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #030303;
}







/* Logo resmi */
.logo-img {
    width: 60px; /* istediğin genişliği ayarlayabilirsin */
    height: 60px; /* yükseklik orantılı, resim kare değilse auto yapabilirsin */
    object-fit: contain; /* resmi bozmadan kutuya sığdırır */
    border-radius: 8px; /* hafif yuvarlak köşe, opsiyonel */
}

/* Başlık yanındaki boşluk */
.sitename {
    font-size: 1.5rem; /* istersen artır veya azalt */
    font-weight: 700;
    color: #111;
}






/* Harita */
#contact .map-container iframe {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}



/* İletişim Kısmı Arka PLan /*

/* Arka yüz başlığı Fotoğraf */
.flip-card-back h4 {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    text-align: center;
}
/* SAĞDAN sola */
@keyframes slideRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* SOLDAN sağa */
@keyframes slideLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ZOOM IN */
@keyframes zoomIn {
  from { transform: scale(1.3); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ZOOM OUT */
@keyframes zoomOut {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}








/* İletişim-Wrap kısmı
Overlay karartma */





#scroll-top {
  background: transparent !important;
  box-shadow: none; /* varsa gölgeyi kaldırır */
  border: none;     /* varsa kenarlığı kaldırır */
  color: white;
  font-size: 36px; /* büyüklüğünü ayarlayabilirsin */

}

/* Mesaj kutusu: yuvarlak ve modern */
.message-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  cursor: pointer;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: visible;
}

/* Header ikon */
.message-header i {
  font-size: 28px;
  color: #14100f;
}

/* Açılır body */
.message-body {
  position: absolute;
  bottom: 70px; /* header’ın üstünde başlasın */
  right: 0;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
}

/* Açık olduğunda */
.message-box.open .message-body {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Telefon linki */
.phone-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #030303;
  text-decoration: none;
  font-weight: 500;
}

.phone-icon i {
  font-size: 22px;
  color: #060403;
}

.phone-text {
  display: none;
}

/* Hover: telefon yazısı */
.phone-icon:hover .phone-text {
  display: inline-block;
}






