
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  ;
}

@font-face {
  font-family: 'Francois One';
  src: url('assets/Inter/Inter-VariableFont_opsz\,wght.ttf');
  font-weight: normal;
  font-style: normal;
}

/* ================== Layout ================== */
.container {
  position: relative;               
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Mobil tarayıcı adres çubuğu için gerçek tam ekran yüksekliği */
@supports (height: 100svh){
  .container{ height: 100svh; }
}

/* ================== Background Image ================== */
.container .image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;                /* full-bleed */
  object-position: 50% 18%;         /* varsayılan: üst tarafa yakın kadraj */
  z-index: -1;
}

/* ================== Typography ================== */
.container header {
  position: absolute;
  top: 140px;
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  z-index: 3;                       /* yazı hep üstte kalsın */
}

.container h1 {
  position: absolute;
  top: 250px;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  text-align: center;
  z-index: 3;
}

/* Satır kırılmasını dengele (taşmaları azaltır) */
.container header,
.container h1{ text-wrap: balance; }

/* ================== Logo & Social ================== */
.logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: #fff;
}
.logo svg { width: clamp(88px, 12vw, 160px); }

.sm {
  position: absolute;
  top: 50px;
  right: 30px;
  display: flex;
  gap: 15px;
}
.sm a {
  color: white;
  font-size: 24px;
  transition: 0.3s;
}
.sm a:hover { color: #FF6A3D; }

/* ================== Breakpoints ================== */

/* Çok küçük ekran */


/* Tablet ve altı – akışkan boyut & konum */
@media (max-width: 768px){
  .container .image{ object-position: 50% 20%; }

  .container header{
    top: clamp(12vh, 17vh, 20vh);
    font-size: clamp(28px, 7vw, 40px);
    width: 92%;
    left: 50%;
    transform: translateX(-50%);
  }
  .container h1{
    top: clamp(22vh, 26vh, 30vh);
    font-size: clamp(16px, 4.5vw, 24px);
    width: 92%;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.35;
  }
  .logo svg{ width: clamp(72px, 18vw, 120px); }
  .sm{ top: 12px; right: 12px; gap: 12px; }
  .sm a{ font-size: 20px; }
}

/* Küçük telefonlar – biraz daha sıkı */
@media (max-width: 480px){
  .container .image{ object-position: 50% 12%; }
  .container header{
    top: 23vh;
    font-size: clamp(24px, 7vw, 32px);
    width: 92%;
    left: 50%;
    transform: translateX(-50%);
  }
  .container h1{
    top: 29vh;
    font-size: clamp(16px, 5.5vw, 22px);
    width: 92%;
    left: 50%;
    transform: translateX(-50%);
  }
  .logo { top: 0; left: 0; }
  .logo svg {width: 100px}
  .sm a { font-size: 19px;}
  .sm {top: 41px; right: 20px;}
}


@media (min-width: 1024px){
  .container{ background:#0e0e0e; }  /* boş alan rengi */
  .container .image{
    object-fit: cover;
    object-position: center;
    z-index: 2;                     /* yazıların altında kalsın */
  }
  .sm {
    z-index: 2;
    top: 38px;
    right: 30px;
  }
  .container header{
    top: 15vh;
    
  }
  .container h1{
    top: 29vh;
   
  }
  .logo {
    top: 0;
    left: 0;
  }
}

/* 1000px ve ALTINDA – tüm görsel görünsün (contain) + letterbox */
@media (max-width: 1000px){
  .container{ background: #0e0e0e; }              /* boş alan rengi */
  .container .image{
    object-fit: contain;                           /* tamamını göster, kırpma yok */
    object-position: center;
    z-index: 2;                                   /* yazının arkasında kalsın */
  }
  .sm {
    z-index: 2;
  }
}

@media (max-width: 1025px){
  .container{ background: #0e0e0e; }              /* boş alan rengi */
  .container .image{
    object-fit: contain;                           /* tamamını göster, kırpma yok */
    object-position: center;
    z-index: 2;                                   /* yazının arkasında kalsın */
  }
  .sm {
    z-index: 2;
  }
  .container header{
    top: 13vh;
    
  }
  .container h1{
    top: 24.5vh;
   
  }
}

@media (max-width: 376px){
  .container{ background: #0e0e0e; }              /* boş alan rengi */
  .container .image{
    object-fit: contain;                           /* tamamını göster, kırpma yok */
    object-position: center;
    z-index: 2;                                   /* yazının arkasında kalsın */
  }
  .sm {
    z-index: 2;
  }
  .container header{
    top: 17vh;
    
  }
  .container h1{
    top: 24vh;
   
  }
}

@media (max-width: 413px){
  .container{ background: #0e0e0e; }              /* boş alan rengi */
  .container .image{
    object-fit: contain;                           /* tamamını göster, kırpma yok */
    object-position: center;
    z-index: 2;                                   /* yazının arkasında kalsın */
  }
  .sm {
    z-index: 2;
  }
  .container header{
    top: 19vh;
    
  }
  .container h1{
    top: 26vh;
   
  }
}

@media (max-width: 431px){
  .container{ background: #0e0e0e; }              /* boş alan rengi */
  .container .image{
    object-fit: contain;                           /* tamamını göster, kırpma yok */
    object-position: center;
    z-index: 2;                                   /* yazının arkasında kalsın */
  }
  .sm {
    z-index: 2;
  }
  .container header{
    top: 19vh;
    
  }
  .container h1{
    top: 26vh;
   
  }
}




