@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/TelegrafRegular_272984568a25d8528fe2de8b20b29011.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/Telegraf UltraBold 800.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/Telegraf UltraLight 200.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Telegraf';
  background: linear-gradient(180deg, #f6d8a6 0%, #f6880b 30%, #f41d05 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Beyaz derinlik efektleri */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 75px;
  z-index: 1000;
  pointer-events: none;
}

body::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}

body::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 70%, rgba(255, 255, 255, 0.4) 100%);
}

.yayin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fdf7ec;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-left .castle-icon {
  height: 58px;

}

.yayin-nav {
  display: flex;
  gap: 150px;
  font-size: 1.6rem;
  font-weight: 500;
}

.yayin-nav a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
}

.yayin-nav a.active,
.yayin-nav a:hover {
  color: #000000;
  font-weight: 700;
}

.header-search input {
  border: none;
  border-radius: 20px;
  padding: 8px 28px;
  font-size: 1.2rem;
  background: #fbf3e5;
  outline: none;
  width: 140px;
  transition: box-shadow 0.2s;
}

.header-search input:focus {
  box-shadow: 0 0 0 2px #e43e2b33;
}

.header-right .main-logo {
  height: 54px;
}

main {
  padding: 0 0 40px 0;
}

.yeni-cikanlar {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 48px 0 66px 0;
  color: #fdf7ec;
  text-shadow: 0 2px 8px #e43e2b33;
}

/* Yakında Geliyor Animasyonu */
.coming-soon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  padding: 20px 20px;
  margin-top: -30px;
}

.coming-soon-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.coming-soon-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fdf7ec;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.coming-soon-text {
  font-size: 1.2rem;
  color: #fdf7ec;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.coming-soon-animation {
  margin-top: 30px;
}

.book-animation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.book {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.book-1 {
  animation-delay: 0s;
}

.book-2 {
  animation-delay: 0.5s;
}

.book-3 {
  animation-delay: 1s;
}

.book-4 {
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(5deg);
  }

  50% {
    transform: translateY(-5px) rotate(-3deg);
  }

  75% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Hover efektleri */
.coming-soon-content:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.book:hover {
  transform: scale(1.2) rotate(10deg);
  transition: transform 0.2s ease;
}

.kitaplar {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.kitap-kart-bloğu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kitap-kart {
  background: #fff6e7;
  box-shadow: 0 4px 24px #e43e2b22;
  width: 220px;
  height: 280px;
  margin-bottom: 12px;
}

.kitap-kart:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px #e43e2b44;
}

.kitap-bilgi {
  text-align: center;
  margin-bottom: 32px;
}

.kitap-ad {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff6e7;
}

.kitap-yazar {
  font-size: 1.1rem;
  color: #fff6e7;
  margin-bottom: 5px;
}

.kitap-tur {
  font-size: 0.95rem;
  color: #fff6e7;
  font-style: italic;
}

.kategori-dropdown {
  position: relative;
  display: inline-block;
}

.kategori-menu {
  display: none !important;
  position: absolute;
  left: 0;
  top: 120%;
  background: #fff6e7;
  box-shadow: 0 4px 24px #e43e2b22;
  padding: 18px 32px;
  min-width: 420px;
  z-index: 10;
  flex-direction: row;
  gap: 36px;
  justify-content: center;
  align-items: center;
}

.kategori-menu a {
  font-size: 1.25rem;
  color: #222;
  font-family: 'Telegraf';
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.kategori-menu a:hover {
  color: #000000;
  font-weight: 700;
}

.kategori-menu.open {
  display: flex !important;
}

/* TELEFON (max-width: 700px) */
@media (max-width: 700px) {

  body::before,
  body::after {
    width: 25px;
  }

  /* --- GÜNCELLENMİŞ HEADER KODLARI --- */
  .yayin-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 15px;
    box-sizing: border-box;
  }

  .header-left {
    order: 1;
  }

  .header-right {
    order: 2;
    text-align: right;
  }

  .header-search {
    width: 100%;
    order: 4;
  }

  .yayin-nav {
    width: 100%;
    order: 3;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .header-left .castle-icon,
  .header-right .main-logo {
    height: 48px;
    position: static;
    margin: 0;
  }

  .header-search input {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background: #f0e8da;
    font-size: 1.1rem;
    padding: 10px 15px;
  }

  /* --- SAYFA İÇERİK KODLARI --- */
  .kategori-menu {
    min-width: 180px;
    padding: 8px 8px;
    gap: 12px;
    font-size: 1rem;
    flex-direction: column;
    left: 0;
    top: 110%;
    z-index: 200 !important;
  }

  .yeni-cikanlar {
    font-size: 2rem;
    margin: 24px 0 32px 0;
    text-align: center;
  }

  .kitaplar {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding: 0 2vw;
  }

  .kitap-kart-bloğu {
    width: 100%;
    align-items: center;
  }

  .kitap-kart {
    width: 90vw;
    max-width: 210px;
    height: 270px;
    margin-bottom: 8px;
  }

  .kitap-bilgi {
    margin-bottom: 18px;
  }

  .kitap-ad {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }

  .kitap-yazar {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .kitap-tur {
    font-size: 0.8rem;
  }

  .coming-soon-container {
    min-height: 35vh;
    padding: 15px 10px;
    margin-top: -20px;
  }

  .coming-soon-content {
    padding: 40px 20px;
    max-width: 90%;
  }

  .coming-soon-icon {
    font-size: 3rem;
  }

  .coming-soon-title {
    font-size: 2rem;
  }

  .coming-soon-text {
    font-size: 1rem;
  }

  .book-animation {
    gap: 10px;
  }

  .book {
    font-size: 1.5rem;
  }

  .kategori-tabs {
    gap: 12px;
    margin-bottom: 18px;
    margin-top: 12px;
    flex-wrap: wrap;
  }

  .tab-btn {
    font-size: 1rem;
    padding: 6px 10px;
  }

  .tab-baslik {
    font-size: 1.3rem;
    margin-bottom: 18px;
    margin-top: 0;
  }
}

/* TABLET PORTRAIT (min-width: 701px) and (max-width: 1366px) and (orientation: portrait) */
@media (min-width: 701px) and (max-width: 1366px) and (orientation: portrait) {
  html {
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
  }

  body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
  }

  .yayin-header {
    padding: 12px 2vw;
    width: 100%;
    gap: 0;
  }

  .header-left .castle-icon {
    height: 48px;
    margin-left: 0;
  }

  .yayin-nav {
    gap: 32px;
    font-size: 1rem;
    margin-bottom: 0;
  }

  .header-search input {
    font-size: 1rem;
    width: 80px;
    min-width: 80px;
    height: 24px;
    padding: 6px 16px;
  }

  .header-right .main-logo {
    margin-top: 0;
    margin-right: 10px;
    height: 40px;
  }

  .kategori-menu {
    min-width: 120px;
    padding: 8px 8px;
    gap: 8px;
    font-size: 0.95rem;
  }

  .yeni-cikanlar {
    font-size: 1.5rem;
    margin: 18px 0 24px 0;
  }

  .kitaplar {
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    padding: 0 2vw;
  }

  .kitap-kart-bloğu {
    width: 100%;
    align-items: center;
  }

  .kitap-kart {
    width: 120px;
    max-width: 120px;
    height: 160px;
    margin-bottom: 8px;
  }

  .kitap-bilgi {
    margin-bottom: 12px;
  }

  .kitap-ad {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }

  .kitap-yazar {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .kitap-tur {
    font-size: 0.8rem;
  }
}

/* TABLET LANDSCAPE (min-width: 701px) and (max-width: 1366px) and (orientation: landscape) */
@media (min-width: 701px) and (max-width: 1366px) and (orientation: landscape) {
  html {
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
  }

  body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
  }

  .yayin-header {
    padding: 12px 2vw;
    width: 100%;
    gap: 0;
  }

  .header-left .castle-icon {
    height: 48px;
    margin-left: 0;
  }

  .yayin-nav {
    gap: 48px;
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .header-search input {
    font-size: 1.1rem;
    width: 100px;
    min-width: 100px;
    height: 26px;
    padding: 6px 16px;
  }

  .header-right .main-logo {
    margin-top: 0;
    margin-right: 18px;
    height: 48px;
  }

  .kategori-menu {
    min-width: 160px;
    padding: 10px 10px;
    gap: 12px;
    font-size: 1rem;
  }

  .yeni-cikanlar {
    font-size: 2rem;
    margin: 12px 0 32px 0;
  }

  .kitaplar {
    flex-direction: row;
    gap: 18px;
    align-items: flex-start;
    padding: 0 4vw;
  }

  .kitap-kart-bloğu {
    width: 100%;
    align-items: center;
  }

  .kitap-kart {
    width: 150px;
    max-width: 150px;
    height: 200px;
    margin-bottom: 10px;
  }

  .kitap-bilgi {
    margin-bottom: 10px;
  }

  .kitap-ad {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }

  .kitap-yazar {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  .kitap-tur {
    font-size: 0.9rem;
  }
}