@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,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-family: 'Telegraf', sans-serif;
  box-sizing: border-box;
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('../BackgroundImage/Background.jpg') center center/cover no-repeat;
  z-index: -1;
  background-image: url('../BackgroundImage/Background.jpg');
  background-size: cover;
  background-position: center;
  animation: zoomInBg 6s ease-in-out forwards;
}

@keyframes zoomInBg {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

.main-header {
  width: 100vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 60px 0 60px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.header-left {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.castle-icon {
  width: 75px;
  height: 100px;
  display: block;
}

.menu-toggle-container {
  position: absolute;
  top: 65px;
  right: 80px;
  z-index: 9999;
  pointer-events: auto;
}

.header-center {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  margin-top: 0;
  justify-content: flex-start;
  height: 54px;
  /* Yükseklik ve hizalama için */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.main-logo {
  width: 350px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
  margin-top: 0;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 100px auto 0 auto;
  /* Ortalamak için auto */
  justify-content: center;
  /* Grid'i yatayda ortala */
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 32px 48px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.info-card.wide {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  padding: 48px 56px;
  color: #fff;
  animation: fadeInBox 1s cubic-bezier(.23, 1.02, .64, 1) both;
  grid-column: 1 / span 2;
  width: 100%;
  max-width: 1000px;
  /* Genişliği sınırlamak için */
  margin: 0 auto;
}

.info-card.wide h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #f67b1d;
  /*text-shadow: 0 0 5px #f67b1d, 0 0 10px #222121, 0 0 20px #f67b1d, 0 0 30px #222121, 0 0 40px #f67b1d, 0 0 55px #222121, 0 0 75px #e25042;*/
  animation: fadeInTitle 1.2s cubic-bezier(.23, 1.02, .64, 1) both;
}

.info-card.wide p {
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 26px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.10);
  animation: fadeInDesc 1.4s cubic-bezier(.23, 1.02, .64, 1) both;
}

.info-card.wide ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
  color: #fff;
  font-size: 1.08rem;
  animation: fadeInDesc 1.6s cubic-bezier(.23, 1.02, .64, 1) both;
}

.info-card.wide li {
  margin-bottom: 8px;
}

.info-card.wide strong {
  color: #f67b1d;
  text-shadow: 0 0 5px #e25042, 0 0 10px #222121, 0 0 20px #e25042, 0 0 30px #222121, 0 0 40px #e25042, 0 0 55px #222121, 0 0 75px #f67b1d;
  font-weight: 700;
}

@keyframes fadeInBox {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInTitle {
  0% {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInDivider {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    width: 80px;
  }
}

@keyframes fadeInDesc {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about-quote {
  font-size: 4rem;
  color: #e43e2b;
  font-weight: bold;
  vertical-align: middle;
  margin: 0 8px;
  opacity: 0.8;
  font-family: 'Telegraf', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 700px) {
  .main-header {
    position: relative;
    padding-top: 0;
  }

  .header-center {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    text-align: center;
    z-index: 20;
    pointer-events: none;
  }

  .main-logo {
    margin: 0 auto;
    display: block;
    max-width: 70vw;
    height: auto;
    pointer-events: auto;
  }

  .castle-icon {
    width: 32px;
    height: 38px;
  }

  .menu-toggle-container {
    top: 12px;
    right: 12px;
  }

  .info-cards {
    width: 92vw;
    max-width: 400px;
    margin: 110px auto 0 auto;
    padding: 0;
    display: block;
  }

  .info-card,
  .info-card.wide {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin: 0 0 20px 0;
    padding: 24px 20px;
  }

  .info-card.wide h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .info-card.wide p {
    font-size: 0.98rem;
  }

  /* --- YENİ EKLENEN/GÜNCELLENEN KURAL --- */
  .info-card.wide ul {
    font-size: 0.98rem;
    padding-left: 20px;
    /* Listenin sola olan mesafesini ayarlar */
  }

  .about-quote {
    font-size: 2rem;
    margin: 0 4px;
  }
}

@media (min-width: 701px) and (max-width: 1366px) and (orientation: portrait) {
  .info-cards {
    width: 80vw;
    max-width: 600px;
    margin: 70px auto 0 auto;
    /* üstten boşluk, yatayda ortalı */
    padding: 0;
    display: block;
  }

  .info-card,
  .info-card.wide {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin: 0;
  }
}

/* TABLET YATAY */
@media (min-width: 701px) and (max-width: 1366px) and (orientation: landscape) {
  .info-cards {
    width: 70vw;
    max-width: 800px;
    margin: 60px auto 0 auto;
    /* üstten boşluk, yatayda ortalı */
    padding: 0;
    display: block;
  }

  .info-card,
  .info-card.wide {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin: 0;
  }
}