/* ==========================================================================
   Demo acente sitesi — turkuaz/deniz teması.
   Bu dosya tanıtım sitesinin style.css'inden bağımsızdır; demo sayfaları
   ana sitenin design token'larını kullanmaz.
   ========================================================================== */
/* Değişken fontlar: her aile TEK dosyada tüm ağırlıkları taşır.
   Önceden her ağırlık ayrı dosyaydı (Manrope için 5 dosya); değişken sürümde 1.
   font-weight aralığı (ör. "400 800") o dosyanın hangi ağırlıkları kapsadığını söyler.
   Alt kümeler unicode-range ile ayrıldığı için tarayıcı yalnızca sayfadaki
   harfler için gerekli dosyayı indirir: Türkçe latin+latin-ext, Rusça kiril. */

/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/manrope-cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/manrope-cyrillic.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/manrope-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/manrope-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/plus-jakarta-sans-cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* latin-ext */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/plus-jakarta-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/plus-jakarta-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
/* <picture> sarmalayicisi duzeni etkilemesin (bkz. style.css). */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
[hidden] { display: none !important; }
body {
  background: #fff; color: #0F2330;
  font-family: 'Manrope', sans-serif; font-size: 15px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; }
:focus-visible { outline: 2px solid #0EA5A5; outline-offset: 3px; border-radius: 4px; }

.ac-kap { max-width: 1200px; margin-inline: auto; padding-inline: 28px; }

/* Üst bar */
.ac-ust {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9); border-bottom: 1px solid #E8EEF0;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.ac-ust__ic { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ac-marka img { height: 26px; width: auto; }
.ac-ust__araclar { display: flex; align-items: center; gap: 14px; }
.ac-giris { font-size: 14px; font-weight: 600; color: #3D5562; }
.ac-dugme {
  background: #0EA5A5; color: #fff; font-weight: 700; font-size: 14px;
  padding: 10px 18px; border-radius: 9px; transition: background .2s;
}
.ac-dugme:hover { background: #0B8C8C; }

/* Hero */
.ac-hero {
  position: relative; overflow: hidden; padding: 64px 28px 110px;
  background: linear-gradient(160deg, #06363E 0%, #0B5560 55%, #0EA5A5 130%);
}
.ac-hero__isik {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .16), transparent 45%),
              radial-gradient(circle at 15% 80%, rgba(14, 165, 165, .4), transparent 50%);
}
.ac-hero__ic { position: relative; max-width: 1080px; margin-inline: auto; text-align: center; }
.ac-hero__baslik {
  font-weight: 800; font-size: clamp(32px, 5vw, 54px); line-height: 1.06;
  letter-spacing: -.03em; color: #fff; margin-bottom: 18px;
}
.ac-hero__metin {
  font-size: clamp(16px, 1.8vw, 19px); color: rgba(255, 255, 255, .86);
  max-width: 600px; margin-inline: auto;
}

/* Bölümler */
.ac-bolum { padding: 64px 28px 30px; }
.ac-bolum--dar { padding: 40px 28px 30px; }
.ac-bolum__ust {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.ac-baslik { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; }
.ac-alt-metin { font-size: 15px; color: #6A828D; margin-top: 6px; }
.ac-link { font-size: 14px; font-weight: 700; color: #0EA5A5; display: inline-flex; align-items: center; gap: 6px; }
.ac-izgara { display: grid; gap: 18px; }
.ac-izgara--4 { grid-template-columns: repeat(4, 1fr); }

/* Destinasyon kartları */
.dest {
  display: block; border-radius: 18px; overflow: hidden;
  border: 1px solid #E8EEF0; background: #fff;
  transition: transform .25s, box-shadow .25s;
}
.dest:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(15, 35, 48, .14); }
.dest__gorsel { position: relative; height: 170px; display: flex; align-items: flex-end; padding: 16px; }
.dest__ad {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}
.dest__fiyat {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255, 255, 255, .92); color: #0F2330;
  font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 7px;
}
.dest__alt {
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px; font-weight: 600; color: #6A828D;
}

/* Ürün kartları */
.urun { background: #fff; border: 1px solid #E8EEF0; border-radius: 16px; padding: 24px; }
.urun__ikon {
  width: 46px; height: 46px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(14, 165, 165, .1);
}
.urun__ad { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.urun__metin { font-size: 13.5px; line-height: 1.55; color: #6A828D; }

/* Neden biz */
.neden {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: #F4F8F8; border: 1px solid #E3EDED; border-radius: 22px; padding: 44px;
  margin-bottom: 40px;
}
.neden__ikon {
  width: 42px; height: 42px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px; background: #fff; border: 1px solid #DCE9E9;
}
.neden__ad { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.neden__metin { font-size: 13.5px; line-height: 1.55; color: #6A828D; }

/* Alt bilgi */
.ac-alt { background: #06363E; color: rgba(255, 255, 255, .75); padding: 50px 0 30px; }
/* Demo sayfasinda gezinme menusu yok; alt bilgide yalnizca marka blogu kaliyor.
   .ac-alt__ic ayni zamanda .ac-kap oldugu icin genisligine dokunulmaz; yoksa
   kapsayici daralir ve blok sayfanin ortasina kayar. */
.ac-alt__metin { max-width: 420px; }
.ac-alt__logo { height: 24px; width: auto; margin-bottom: 16px; }
.ac-alt__metin { font-size: 14px; line-height: 1.6; max-width: 300px; }
.ac-alt__not { opacity: .7; }
.ac-alt__baslik { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.ac-alt__ic ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.ac-alt__telif {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px;
}
.ac-alt__telif strong { color: #FF6FB4; }

@media (max-width: 980px) {
  .ac-izgara--4, .neden { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ac-izgara--4, .neden { grid-template-columns: 1fr; }
  .neden { padding: 28px; }
}

/* --- Demo şeridi ve widget alanı (iki demo sayfasında da aynı) ------------ */
.demo-serit {
  position: relative; z-index: 60;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px;
  padding: 9px 24px; background: #FF0A82; color: #fff;
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600;
}
.demo-serit__yazi { display: inline-flex; align-items: center; gap: 8px; }
.demo-serit__nokta { width: 7px; height: 7px; border-radius: 50%; background: #fff; flex: none; }
.demo-serit__geri {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 7px; font-weight: 700;
  background: rgba(255, 255, 255, .18); transition: background .2s;
}
.demo-serit__geri:hover { background: rgba(255, 255, 255, .3); }

/* Resminer widget'inin gelecegi alan. Yer tutucu, widget kodu eklenince kaybolur. */
.widget-alani { max-width: 1080px; margin: -46px auto 0; padding: 0 28px; position: relative; z-index: 20; }
.widget-yer {
  border: 2px dashed rgba(255, 10, 130, .45); border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  padding: 34px 28px; text-align: center;
  box-shadow: 0 20px 50px rgba(20, 30, 40, .12);
}
.widget-yer__baslik {
  font-size: 15px; font-weight: 800; color: #D40069; margin-bottom: 8px;
  letter-spacing: .01em;
}
.widget-yer__metin { font-size: 14px; line-height: 1.6; color: #5A6B75; max-width: 560px; margin: 0 auto; }

/* ==========================================================================
   Gerçek fotoğraflar
   ========================================================================== */

/* Hero artık fotoğraf taşıyor; gradyan, görsel yüklenene kadar zemin olarak kalır. */
.ac-hero__ic { position: relative; z-index: 2; }

/* Beyaz başlığın okunurluğunu korumak için fotoğrafın üstüne yarı saydam
   marka gradyanı serilir. Kontrast oranı bu sayede erişilebilir seviyede kalır. */
.slayt-kaplama {
  background: linear-gradient(160deg, rgba(6, 54, 62, .84) 0%, rgba(11, 85, 96, .74) 55%,
              rgba(14, 165, 165, .58) 130%);
}

/* Destinasyon kartları */
.dest__gorsel { overflow: hidden; }
.dest__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.dest:hover .dest__img { transform: scale(1.06); }
.dest__perde {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 40, 48, .72) 0%, rgba(6, 40, 48, .18) 45%, transparent 70%);
}
/* Yazilar fotografin ve perdenin uzerinde kalir. .dest__fiyat zaten mutlak
   konumlu oldugu icin position degeri degistirilmez, yalnizca katman verilir. */
.dest__ad    { position: relative; z-index: 2; }
.dest__fiyat { z-index: 2; }

/* --- Üst görsel alanı (slider) ------------------------------------------- */
.slayt-alani { position: absolute; inset: 0; overflow: hidden; }
.slayt {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.slayt--aktif { opacity: 1; }
.slayt__img { width: 100%; height: 100%; object-fit: cover; }
.slayt-kaplama { position: absolute; inset: 0; pointer-events: none; }

/* --- Küçük ekranlar ------------------------------------------------------ */
@media (max-width: 768px) {
  .ac-hero { padding: 44px 20px 86px; }
  .ac-bolum { padding: 44px 20px 24px; }
  .ac-bolum--dar { padding: 26px 20px 24px; }
  .ac-kap { padding-inline: 20px; }
  .widget-alani { margin-top: -38px; padding-inline: 20px; }
  .widget-yer { padding: 24px 20px; }
  .ac-ust__ic { height: 62px; }
  .ac-giris, .ac-dugme { padding: 11px 14px; }
  .dest__gorsel { height: 150px; }
  .neden { padding: 24px; gap: 20px; }
  .ac-alt { padding: 36px 0 24px; }
}
@media (max-width: 480px) {
  .ac-marka img { height: 22px; }
  .ac-giris { display: none; }        /* dar ekranda tek eylem yeter */
}
