﻿/* =====================================================
/* Menü slider üstünde dursun ama scroll’da takip etmesin */
#siteHeader.header--sticky.header-one{
  position: absolute !important;  /* ✅ slider üstüne oturur */
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

/* Tema sticky/fixed zorlamasın */
.header--sticky{
  position: absolute !important;
}

/* Başlangıç: transparan */
#siteHeader .header-main-one{
  background: transparent !important;
  box-shadow: none !important;
  transition: background .25s ease, box-shadow .25s ease;
}

/* Menü yazıları başlangıçta beyaz */
#siteHeader .mainmenu > li > a{
  color:#fff !important;
  transition: color .25s ease;
}

/* ikon/tema */
#siteHeader .menu-dark{ display:none; }
#siteHeader .menu-light{ display:inline-block; }

/* logo */
#siteHeader .logo-white{ display:block !important; }
#siteHeader .logo-color{ display:none !important; }

/* Üzerine gelince beyaz olsun */
#siteHeader:hover .header-main-one{
  background:#fff !important;
  box-shadow: 0 5px 20px rgba(0,0,0,.08) !important;
}

#siteHeader:hover .mainmenu > li > a{
  color:#111 !important;
}

#siteHeader:hover .logo-white{ display:none !important; }
#siteHeader:hover .logo-color{ display:block !important; }
#siteHeader:hover .menu-dark{ display:inline-block; }
#siteHeader:hover .menu-light{ display:none; }

/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-indicator{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: scrollBounce 1.6s infinite;
}

.scroll-indicator .mouse{
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 20px;
  position: relative;
  display: block;
}

.scroll-indicator .wheel{
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  animation: wheelMove 1.2s infinite;
}

@keyframes wheelMove{
  0%   { transform: translate(-50%, 0); opacity: 1; }
  60%  { transform: translate(-50%, 14px); opacity: .3; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes scrollBounce{
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-8px); }
}


/* =====================================================
   PROMO SECTION
===================================================== */

:root{
  --text: #0e1a2b;
  --muted: #5e6b7d;
}

*{ box-sizing: border-box; }

body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:#fff;
}

.promo{
  padding: clamp(40px, 6vw, 90px) 0;
}

.promo__container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.promo__title{
  margin:0 0 18px 0;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.promo__titleStrong{
  display:block;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 62px);
}

.promo__titleThin{
  display:block;
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 62px);
  color:#162742;
}

.promo__text{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.85;
  max-width: 560px;
}

.promo__text b{
  color: var(--text);
  font-weight: 800;
}

/* Görsel */
.promo__image{
  width: 100%;
  height: min(420px, 46vw);
  object-fit: cover;
  background: #f2f4f7;
  transition: transform .6s ease;
}

.promo__image:hover{
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 980px){
  .promo__container{ grid-template-columns: 1fr; }
  .promo__image{ height: 320px; }
}
@media (max-width: 560px){
  .promo__image{ height: 260px; }
}
