/* GENEL AYARLAR */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding-top: 0;
    background-color: #d9d7d244;
}

/*İMAGE MANZARA*/

.text {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.img-wrap {
  position: relative;
  width: 100%;
  height: 100vh; /* full ekran yüksekliği */
  background-image: url('/img/pexels-sevenstormphotography-439416.jpg'); /* görseli burada belirliyoruz */
  background-size: cover; /* ekranı tamamen kaplar */
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.caption {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-50%, -50%); 
  width: 90%;           
  padding: 2rem;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  font-size: clamp(11.5rem, 1vw, 3rem);
  z-index: 15;
}

.caption h1 {
  margin: 0;
  font-weight: 800;    
  line-height: 1.2;
  font-size: clamp(1.5rem, 4vw, 3rem); 
  color: #fff;
  letter-spacing: 2px;   
  text-shadow: 2px 2px 10px rgba(20, 23, 59, 0.7);
}

@media (min-width: 768px) {
  .caption h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); 
  }
}

@media (max-width: 768px) {
  .caption h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
}

.slide-fade {
  opacity: 0;
  transform: translateY(-50%) translateX(50%); 
  animation: slideFade 1s forwards;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/*MİSYON*/

.misyon {
    font-family: 'Teko', sans-serif;
    padding-top: 8em;
    padding-bottom: 8em;
    padding-left: 200px;
    padding-right: 200px;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
    width: 100%;
    line-height: 1;
    vertical-align: inherit;
    text-transform: uppercase;
    display: flex;
    font-weight: 500;
}

.misyon p {
    font-size: 3em;
    margin-bottom: 1em;
    padding-bottom: 1em;
}

.misyon h4 {
    padding-top: 100px ;
    font-size: 1.8em;
    padding: 40px;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.text-focus-in {
  opacity: 0;
}

.text-focus-in.show {
  animation: text-focus-in 0.7s cubic-bezier(0.550, 0.085, 0.680, 0.530) forwards;
}

@media (max-width: 1024px) {
    .misyon { padding: 6em 100px; }
    .misyon p { font-size: 2.5em; }
    .misyon h4 { font-size: 1.5em; padding-top: 30px; }
}

@media (max-width: 768px) {
    .misyon { padding: 5em 50px; }
    .misyon p { font-size: 2em; }
    .misyon h4 { font-size: 1.3em; padding-top: 25px; }
}

@media (max-width: 480px) {
    .misyon { padding: 4em 20px; }
    .misyon p { font-size: 1.6em; }
    .misyon h4 { font-size: 1.1em; padding-top: 20px; }
}

/*DEĞERLER*/

.values {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    background-color: #2E3092;
    color: #E4E1D7;
    font-weight: 600;
    padding-bottom: 2em;
    padding-top: 2em;
    line-height: 1.2;
}

.values h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    color: #fff;
    margin-top: 4.5rem;
}

.values .col-xl-6 .number {
    font-size: 3rem !important;
    color: #919191 !important;
}

.values p{
	text-align:justify;
}

/* Başlık altı foto */
.values-photo{
  margin: 54px 0 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  aspect-ratio: 1;    
  background: #1b1b1b;
}
.values-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
  display: block;
}
/* Kenarlardan hafif karartma, mavi-siyah zeminle uyum */
.values-photo::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}
/* Hover’da minik zoom */
.values-photo:hover img{
  transform: scale(1.06);
}

/* Başlıkta boşluk ayarı (mobilde çok yukarıda durmasın) */
@media (max-width: 992px){
  .values h4{ margin-top: 2rem; }
  .values-photo{ margin-top: 12px; }
}
/* Dar ekranda oranı yükselt (daha dikey görünüm) */
@media (max-width: 576px){
  .values-photo{ aspect-ratio: 3/4; }
}


/* Kutular */
i.fa-solid {
    font-size: 50px;
}

p.mb-0 {
    font-size: 20px;
}

.row .kicon {
    transition: transform 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    border-radius: 12px;
}

.row .kicon:nth-child(1):hover {
    transform: translateY(10px) scale(1.05);
    background-color: #6c6d707d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

}

.row .kicon:nth-child(2):hover {
    transform: translateY(10px) scale(1.05);
    background-color: #6c6d707d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.row .kicon:nth-child(3):hover {
    transform: translateY(10px) scale(1.05);
    background-color: #6c6d707d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.row .kicon:nth-child(4):hover {
    transform: translateY(10px) scale(1.05);
    background-color: #6c6d707d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.row .kicon:nth-child(5):hover {
    transform: translateY(10px) scale(1.05);
    background-color: #6c6d707d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.row .kicon:nth-child(6):hover {
    transform: translateY(10px) scale(1.05);
    background-color: #6c6d707d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/*HAKKIMIZDA*/
.about {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    background-color: #1d232b;
    color: #E4E1D7;
    font-weight: 600;
    padding-bottom: 2.7em;
    padding-top: 2.7em;
    line-height: 1.4;
	text-align:justify;
}

.about h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #fff;
    margin-top: 3.5rem;
}


/*kurucu mesajı*/

.message .container {
    position: relative;
    padding: 30px 15px;
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message .text {
     font-size: 22px;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.message .text .kurucu-isim i{
     font-family: "Parisienne", cursive;
    color: #919191; 
    font-size: 3rem;
}

.message .text .kurucu-isim p{
   font-family: "Parisienne", cursive;
    color: #919191; 
    font-size: 1.5rem;
}

/* 📱 Mobil uyum */
@media (max-width: 768px) {
  .message .text {
    font-size: 16px;
    padding: 20px 10px;
  }
  .message .text .kurucu-isim i{
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .message .text {
    font-size: 14px;
    line-height: 1.4;
  }
  .message .text .kurucu-isim i{
    font-size: 18px;
  }
}