/* ======================================
   LAYOUT.CSS — Sayfa yerleşimi ve genel düzen
   ====================================== */



/* 🔰 LOGO */
.logo img {
  height: 50px;
  display: block;
}


/* 🌟 ÖNE ÇIKAN MENÜ (CTA) */
nav ul li.cta a {
  background-color: #1e90ff;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

nav ul li.cta a:hover {
  background-color: #0077cc;
}

/* 💼 HİZMET KUTULARI */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.service-box {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border-color: #0077cc;
}

.service-box i {
  font-size: 40px;
  color: #0077cc;
}

.service-box h2 {
  font-size: 22px;
  color: #003366;
  font-weight: 700;
}

.service-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* ✅ İÇERİK KAPSAYICISI */
.a1-deneme .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ✅ GÖRSELLERİN GENİŞLİK SINIRI */
.custom-image-size img,
.hoeren-question-block img,
.lesen-question-block img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 10px auto;
}

/* ✅ SORU BLOKLARI BOŞLUK */
.lesen-question-block,
.hoeren-question-block {
  margin-bottom: 40px;
}

/* ✅ SES ÇALAR ORTALAMASI */
.lesen-question-block audio,
.hoeren-question-block audio {
  display: block;
  margin: 0 auto 12px;
}

/* ✅ ŞIKLAR (ORTALANMIŞ VE KUTULU) */
.lesen-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

/* ✅ STANDART ŞIK KUTUSU */
.option-box {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #ccc;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

/* ✅ RADYO BUTONUNU GİZLE */
.option-box input[type="radio"] {
  display: none;
}

/* ✅ ŞIK YAZISI */
.option-box .checkmark {
  color: #333;
}

/* ✅ SEÇİLİ OLAN ŞIK TASARIMI (Modern & Dengeli) */
.option-box input[type="radio"]:checked + .checkmark {
  background-color: #22bd58;        /* ✅ Yeşil vurgulu zemin */
  color: #fff;                      /* ✅ Beyaz yazı rengi */
  border-radius: 6px;               /* ✅ Yumuşak köşe yuvarlama */
  padding: 8px 16px;                /* ✅ Yatayda daha ince ve dengeli boşluk */
  font-weight: 600;                 /* ✅ Biraz daha hafif ama vurgulu font kalınlığı */
  box-shadow: 0 0 0 2px #1a9445;    /* ✅ Hafif dış çerçeve efekti */
  transition: all 0.2s ease-in-out; /* ✅ Geçiş efektleri */
  display: inline-block;
}









/* ✅ PUAN HESAPLAMA BUTONU (ORTAK) burada kaldım */
.puan-btn,
.puanla-btn {
  background-color: #3498db;
  color: #fff;
  padding: 10px 300px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.8s ease;
}

.puan-btn:hover,
.puanla-btn:hover {
  background-color: #22bd58;
}

/* ✅ DEVAM / BİTİRME BUTONLARI */
.devam-btn,
.bitir-btn {
  display: block;
  margin: 40px auto 0;
  background-color: #2ecc71;
  color: #fff;
  padding: 14px 30px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.devam-btn:hover {
  background-color: #27ae60;
}

.bitir-btn {
  background-color: #34495e;
}

.bitir-btn:hover {
  background-color: #2c3e50;
}



















/* ✅ Hören Soru Kutusu Genel Tasarım */
.hoeren-question-block {
  background-color: #fefefe;
  border: 1px solid #ff7675;
  border-radius: 12px;
  padding: 20px;
  margin: 40px auto;
  max-width: 740px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  scroll-margin-top: 120px;
}

/* ✅ Görsel hizalama */
.hoeren-question-block img {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 18px auto 12px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* ✅ Ses çalar ortalanmış ve mesafeli */
.hoeren-question-block audio {
  display: block;
  margin: 0 auto 16px;
}

/* ✅ Şık kutularını ortala ve gruplandır */
.lesen-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

/* ✅ Şık kutusu stilizasyonu */
.option-box {
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: all 0.25s ease;
}

/* ✅ Radio input gizli */
.option-box input[type="radio"] {
  display: none;
}

/* ✅ Seçilen şık */
.option-box input[type="radio"]:checked + .checkmark {
  background-color: #22bd58;
  color: #fff;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 700;
}

/* ✅ Checkmark yazısı */
.checkmark {
  color: #333;
  transition: all 0.2s ease;
}












/* ✅ Uygulama Butonları Konteyneri */
.app-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ✅ Kalp Atışı Animasyonu */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

/* ✅ Logo Görselleri */
.app-buttons img {
  height: 56px; /* Biraz büyütüldü */
  animation: pulse 2.5s infinite;
  transition: transform 0.3s ease;
}

/* ✅ Hover Efekti (elle büyütme) */
.app-buttons img:hover {
  transform: scale(1.08);
}














