/* css/index.css */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px 80px 60px;
  min-height: calc(100vh - 70px);
  gap: 60px;
  background-color: var(--siyah);
}

.hero-sol { flex: 1; }

.hero-tag {
  font-size: 30px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--turuncu);
  margin-bottom: 40px;
}

.hero-baslik {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 24px;
  color: var(--beyaz);
}

.hero-baslik span { color: var(--turuncu); }

.hero-aciklama {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 3px;
  color: var(--acik-gri);
  font-weight: 500;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-buton {
  display: inline-block;
  background-color: var(--turuncu);
  color: var(--beyaz);
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  margin-bottom: 48px;
  transition: background-color 0.2s, transform 0.2s;
}

.hero-buton:hover {
  background-color: #d94e1f;
  transform: translateY(-2px);
}

.hero-istatistik {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 3px solid rgba(255,255,255,0.5);
}

.stat-sayi {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 70px;
  color: var(--turuncu);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--beyaz);
  margin-top: 4px;
}

.hero-sag {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.foto-cerceve {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 450px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.foto-cerceve:hover {
  transform: scale(1.02) rotate(1deg);
}

.cerceve-ic {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
}

.cerceve-ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.5s ease;
  filter: grayscale(20%);
}

#ana-foto[src=""], 
#ana-foto:not([src]) {
  opacity: 0;
}

.foto-cerceve:hover .cerceve-ic img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.foto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(217, 78, 31, 0.2), transparent);
  mix-blend-mode: overlay;
}

/* Teknik Dekorasyonlar */
.dekor-kose {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--turuncu);
  z-index: 2;
}

.kose-1 { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.kose-2 { top: -5px; right: -5px; border-left: none; border-bottom: none; }
.kose-3 { bottom: -5px; left: -5px; border-right: none; border-top: none; }
.kose-4 { bottom: -5px; right: -5px; border-left: none; border-top: none; }

.teknik-etiket {
  position: absolute;
  bottom: -25px;
  right: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--turuncu);
  background: var(--siyah);
  padding: 2px 10px;
  border-left: 2px solid var(--turuncu);
}

.tarama-cizgisi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(217, 78, 31, 0.5);
  z-index: 3;
  animation: scan 4s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% { top: 0; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.turuncu-serit {
  display: none; /* Eskiyi gizle */
}

/* HOME GALLERY */
.home-gallery {
    padding: 100px 60px;
    background-color: #0b0d11;
}

.section-baslik {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    letter-spacing: 4px;
    color: var(--beyaz);
    margin-bottom: 40px;
    text-align: center;
}

.section-baslik span {
    color: var(--turuncu);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--beyaz);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-info {
    opacity: 1;
}

.gallery-info h3 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
