/* Bahnschrift Font */

@font-face {

  font-family: "Bahnschrift";

  src: url("https://db.onlinewebfonts.com/t/0a6ee448d1bd65c56f6cf256a7c6f20a.eot");

  src: url("https://db.onlinewebfonts.com/t/0a6ee448d1bd65c56f6cf256a7c6f20a.eot?#iefix") format("embedded-opentype"),

       url("https://db.onlinewebfonts.com/t/0a6ee448d1bd65c56f6cf256a7c6f20a.woff2") format("woff2"),

       url("https://db.onlinewebfonts.com/t/0a6ee448d1bd65c56f6cf256a7c6f20a.woff") format("woff"),

       url("https://db.onlinewebfonts.com/t/0a6ee448d1bd65c56f6cf256a7c6f20a.ttf") format("truetype"),

       url("https://db.onlinewebfonts.com/t/0a6ee448d1bd65c56f6cf256a7c6f20a.svg#Bahnschrift") format("svg");

}



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: 'Bahnschrift', sans-serif;

  background: #0a0a0a;

  color: white;

  min-height: 100vh;

  overflow-x: hidden;

  position: relative;

}



.overlay {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(30, 20, 10, 0.9) 100%);

  z-index: 1;

}



.container-lang {

  position: relative;

  z-index: 2;

  min-height: 100vh;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 2rem;

  padding-top: 6rem;

  gap: 3rem;

}



.logo-header {

  position: fixed;

  top: 2rem;

  right: 0;

  z-index: 100;

  text-align: right;

  padding-right: 2rem;

}

.logo-img {

  max-width: 180px;

  width: 100%;

  height: auto;

  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));

  margin-left: auto;

  display: block;

}

.logo-text {

  margin-top: 0.5rem;

  font-size: 0.75rem;

  color: rgba(255, 255, 255, 0.75);

  text-align: right;

  line-height: 1.5;

  white-space: nowrap;

}



.breadcrumb {

  position: fixed;

  top: 2rem;

  left: 2rem;

  z-index: 100;

  display: flex;

  align-items: center;

  gap: 0.5rem;

  font-size: 0.85rem;

  color: rgba(255, 255, 255, 0.6);

}

.breadcrumb a {

  color: rgba(255, 255, 255, 0.7);

  text-decoration: none;

  transition: color 0.3s ease;

}

.breadcrumb a:hover {

  color: rgba(255, 255, 255, 1);

}

.breadcrumb-separator {

  color: rgba(255, 255, 255, 0.4);

}

.breadcrumb-current {

  color: rgba(255, 255, 255, 0.9);

  font-weight: 500;

}



/* SOSYAL MEDYA - SOL ALT */

.social-toggle-btn {

  position: fixed;

  bottom: 2rem;

  left: 2rem;

  width: 50px;

  height: 50px;

  background: rgba(255, 255, 255, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  font-size: 1.5rem;

  cursor: pointer;

  z-index: 100;

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;

}

.social-toggle-btn:hover {

  background: rgba(255, 255, 255, 0.25);

  border-color: rgba(255, 255, 255, 0.5);

  transform: scale(1.1);

}

.social-toggle-btn.active {

  background: rgba(255, 255, 255, 0.3);

  border-color: rgba(255, 255, 255, 0.6);

}



.social-icons-container {

  position: fixed;

  bottom: 2rem;

  left: 5rem;

  display: flex;

  flex-direction: row;

  flex-wrap: nowrap;

  max-width: calc(100vw - 8rem);

  gap: 0.6rem;

  z-index: 99;

  opacity: 0;

  visibility: hidden;

  transform: translateX(-20px);

  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  overflow-x: auto;

  overflow-y: hidden;

  padding-right: 1rem;

  scrollbar-width: thin;

  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;

}



.social-icons-container::-webkit-scrollbar {

  height: 6px;

}

.social-icons-container::-webkit-scrollbar-track {

  background: rgba(255, 255, 255, 0.1);

  border-radius: 3px;

}

.social-icons-container::-webkit-scrollbar-thumb {

  background: rgba(255, 255, 255, 0.3);

  border-radius: 3px;

}



.social-icons-container.show {

  opacity: 1;

  visibility: visible;

  transform: translateX(0);

}



.social-icon-btn {

  width: 45px;

  height: 45px;

  flex-shrink: 0;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  text-decoration: none;

  font-size: 1.2rem;

  transition: all 0.3s ease;

  backdrop-filter: blur(10px);

}

.social-icon-btn:hover {

  background: rgba(255, 255, 255, 0.2);

  border-color: rgba(255, 255, 255, 0.4);

  transform: translateY(-3px) scale(1.1);

}



/* DİL SEÇİMİ - SAĞ ALT */

.lang-toggle-btn {

  position: fixed;

  bottom: 2rem;

  right: 2rem;

  width: 50px;

  height: 50px;

  background: rgba(255, 255, 255, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  font-size: 1.5rem;

  cursor: pointer;

  z-index: 100;

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;

}

.lang-toggle-btn:hover {

  background: rgba(255, 255, 255, 0.25);

  border-color: rgba(255, 255, 255, 0.5);

  transform: scale(1.1);

}

.lang-toggle-btn.active {

  background: rgba(255, 255, 255, 0.3);

  border-color: rgba(255, 255, 255, 0.6);

}



.lang-icons-container {

  position: fixed;

  bottom: 5rem;

  right: 2rem;

  display: flex;

  flex-direction: column;

  gap: 0.8rem;

  z-index: 99;

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

}

.lang-icons-container.show {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}

.lang-icon-btn {

  width: 45px;

  height: 45px;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  text-decoration: none;

  font-size: 0.9rem;

  font-weight: 600;

  transition: all 0.3s ease;

  backdrop-filter: blur(10px);

}

.lang-icon-btn:hover {

  background: rgba(255, 255, 255, 0.2);

  border-color: rgba(255, 255, 255, 0.4);

  transform: translateX(-5px) scale(1.1);

}



.tagline {

  position: absolute;

  left: -9999px;

  width: 1px;

  height: 1px;

  overflow: hidden;

}

.lang-title {

  display: none;

}



.main-content {

  width: 100%;

  max-width: 1400px;

  display: flex;

  flex-direction: column;

  gap: 2.5rem;

}



.mushroom-grid {

  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 1.5rem;

  width: 100%;

}



.mushroom-btn {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 1.8rem 1.2rem;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 12px;

  cursor: pointer;

  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  text-decoration: none;

  color: white;

  backdrop-filter: blur(10px);

  position: relative;

  overflow: hidden;

}

.mushroom-btn::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);

  opacity: 0;

  transition: opacity 0.4s ease;

  z-index: -1;

}

.mushroom-btn:hover {

  transform: translateY(-8px) scale(1.05);

  background: rgba(255, 255, 255, 0.12);

  border-color: rgba(255, 255, 255, 0.3);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);

}

.mushroom-btn:hover::before {

  opacity: 1;

}

.mushroom-btn:active {

  transform: translateY(-4px) scale(1.02);

}

.mushroom-img {

  width: 100%;

  height: auto;

  object-fit: contain;

  margin-bottom: 0.8rem;

  border-radius: 8px;

  transition: transform 0.3s ease;

}

.mushroom-btn:hover .mushroom-img {

  transform: scale(1.1);

}

.mushroom-name {

  font-size: 0.9rem;

  font-weight: 500;

  text-align: center;

  letter-spacing: 0.5px;

}



.description-box {

  width: 100%;

  padding: 2rem;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 12px;

  backdrop-filter: blur(15px);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

}

.description-title {

  font-size: 1.4rem;

  font-weight: 600;

  color: rgba(255, 255, 255, 0.95);

  text-align: left;

  margin-bottom: 1.2rem;

  letter-spacing: 0.5px;

}

.description-text {

  font-size: 1.1rem;

  color: rgba(255, 255, 255, 0.8);

  text-align: left;

  line-height: 1.8;

  word-break: break-word;

  overflow-wrap: break-word;

  hyphens: auto;

}



@media (max-width: 1400px) {

  .mushroom-grid { gap: 1.3rem; }

  .description-text { font-size: 1rem; }

}



@media (max-width: 1200px) {

  .mushroom-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .logo-img { max-width: 150px; }

  .description-text { font-size: 0.95rem; }

}



@media (max-width: 992px) {

  .mushroom-grid { gap: 1.2rem; }

  .breadcrumb { font-size: 0.75rem; }

  .description-box { padding: 1.5rem; }

  .description-text { font-size: 0.9rem; line-height: 1.7; }

  .description-title { font-size: 1.1rem; margin-bottom: 1rem; }

}



@media (max-width: 768px) {

  .container-lang { padding: 2rem 1.5rem; padding-top: 5rem; gap: 2rem; }

  .mushroom-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .logo-header { top: 1rem; right: 0; padding-right: 1rem; }

  .logo-img { max-width: 120px; }

  .logo-text { 

    font-size: 0.65rem;

    white-space: normal;

  }

  .description-box { padding: 1.2rem; }

  .description-text { font-size: 0.85rem; line-height: 1.6; }

  .breadcrumb { top: 1rem; left: 1rem; font-size: 0.7rem; }

  .mushroom-btn { padding: 1.5rem 1rem; }

  .mushroom-name { font-size: 0.85rem; }

  .social-toggle-btn, .lang-toggle-btn { bottom: 1.5rem; width: 45px; height: 45px; font-size: 1.3rem; }

  .social-icons-container { 

    bottom: 1.5rem; 

    left: 4.5rem; 

    max-width: calc(100vw - 6rem);

  }

  .lang-icons-container { bottom: 4rem; right: 1rem; }

  .description-title { font-size: 1.1rem; margin-bottom: 1rem; }

}



@media (max-width: 576px) {

  .container-lang { gap: 1.5rem; }

  .mushroom-grid { gap: 0.8rem; }

  .logo-img { max-width: 100px; }

  .logo-text { 

    font-size: 0.6rem;

    white-space: normal;

  }

  .description-box { padding: 1rem; }

  .description-text { font-size: 0.7rem; line-height: 1.5; }

  .mushroom-name { font-size: 0.8rem; }

  .social-icons-container { max-width: calc(100vw - 5rem); }

  .social-icon-btn {

    width: 40px;

    height: 40px;

    font-size: 1.1rem;

  }

}



@media (max-width: 480px) {

  .container-lang { padding-top: 4.5rem; padding-left: 1rem; padding-right: 1rem; }

  .logo-header { padding-right: 0.5rem; top: 0.5rem; }

  .logo-img { max-width: 85px; }

  .logo-text { 

    font-size: 0.55rem;

    white-space: normal;

    max-width: 200px;

  }

  .description-box { padding: 0.8rem; }

  .description-text { font-size: 0.65rem; line-height: 1.4; }

  .mushroom-grid { grid-template-columns: 1fr; gap: 0.8rem; }

  .breadcrumb { font-size: 0.65rem; left: 0.5rem; top: 0.5rem; }

  .social-toggle-btn, .lang-toggle-btn { width: 42px; height: 42px; bottom: 1rem; }

  .social-toggle-btn { left: 0.5rem; }

  .lang-toggle-btn { right: 0.5rem; }

  .social-icons-container { 

    left: 3.5rem; 

    bottom: 1rem; 

    max-width: calc(100vw - 4.5rem);

  }

  .social-icon-btn {

    width: 38px;

    height: 38px;

    font-size: 1rem;

  }

  .lang-icons-container { right: 0.5rem; bottom: 3.5rem; }

  .lang-icon-btn { width: 40px; height: 40px; font-size: 0.8rem; }

  .description-title { font-size: 0.95rem; margin-bottom: 0.8rem; }

}