@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:wght@500&display=swap');

@font-face {
  font-family: "doctor-glitch";
  src: url("../fonts/doctor-glitch.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url("/background.jpeg") no-repeat center center fixed;
  background-size: cover;
  background-blend-mode: multiply; /* Arka plandaki logonun hafif görünmesini sağlar */
  position: relative;
  color: white;
  transition: background-color 0.5s ease-in-out;
}

/* Dinamik arka plan efekti için overlay */
#background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1)); /* İlk başta siyah */
  opacity: 0.9; /* Başlangıçta fazla opak olmasın ki logo hafif gözüksün */
  transition: background 0.5s ease-in-out, opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: -1;
}





/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  padding: 10px 0;
}








/* Linkler */
a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  color: rebeccapurple; /* Daha koyu mor */
}

/* Navbar */
/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9); /* Daha belirgin siyah arka plan */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); /* Altına gölge efekti ekler */
  padding: 10px 0;
}


/* Navbar Stil */
.navbar {

  border-radius: 8px; /* Köşeleri hafif yuvarlat */
  border-bottom: 3px solid rebeccapurple; /* Altına çizgi ekledik */
}

/* Navbar Font Stilleri */
.navbar a {
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: rebeccapurple; /* Hover efekti */
}

/* Navbar Butonları */
.navbar .action_btn {
  background-color: white;
  color: black;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar .action_btn:hover {
  background-color: rebeccapurple;
  color: white;
}


.logo {
  margin-left: 20px; /* Logoyu biraz sağa kaydır */
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  cursor: default;
}


.logo a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

.navbar .links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar .toggle_btn {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.action_btn {
  background-color: #fff;
  color: black;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: scale 0.2s;
}

.action_btn:hover {
  scale: 1.05;
  color: gray;
}

/* Bölümler (Tek Sayfa Görünümü İçin) */
section {
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent; /* Bölümlerin arka planını kaldırıyoruz */
  color: #fff;
}



p {
  
  max-width: 600px;
  line-height: 1.6;
}

/* Dropdown Menü */
.dropdown_menu {
  display: none;
  position: absolute;
  right: 2rem;
  top: 60px;
  height: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
  height: 240px;
}

.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu .action_btn {
  width: 100px;
  display: flex;
  justify-content: center;
}

/* Footer */
.copy-right {
  text-align: center;
  color: #fff;
  background-color: black;
  padding: 20px 0;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

footer .social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
}

footer .social-links a:hover {
  color: rebeccapurple;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
  .navbar .links,
  .navbar .action_btn {
    display: none;
  }

  .navbar .toggle_btn {
    display: block;
  }

  .dropdown_menu {
    display: block;
  }
}

@media (max-width: 576px) {
  .dropdown_menu {
    left: 2rem;
    width: unset;
  }
}

.hero-section {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: relative;
}

.hero-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

hero-content p {
  font-size: 1.5rem;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 1s ease-in-out;
}

.splash-logo {
  width: 2000px; /* Logonun boyutu */
  opacity: 1;
  animation: fadeOut 1.5s ease-in-out forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Splash Screen kaybolduğunda içeriği göster */
body.loaded .splash-screen {
  opacity: 0;
  pointer-events: none;
}

/* Games Section */
.game-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.game {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

/* Steam Button */
.steam-button {
    display: inline-block;
    background: linear-gradient(45deg, #1b2838, #2a475e);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.steam-button:hover {
    background: linear-gradient(45deg, #2a475e, #1b2838);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #66c0f4;
    border-color: #66c0f4;
}

.steam-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Steam butonunun önüne Steam ikonu eklemek için */
.steam-button::before {
    content: '\f1b6';  /* Steam ikonu */
    font-family: 'Font Awesome 6 Brands';
    margin-right: 10px;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;  /* iki sıra için wrap kullanıyoruz */
  justify-content: center;  /* merkeze hizalama */
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 1400px;  /* maksimum genişlik */
  margin: 0 auto;  /* sayfada ortalama */
}

.team-member {
  flex: 0 0 auto;
  width: calc(20% - 2rem);  /* 5 kişi yan yana */
  min-width: 200px;  /* minimum genişlik */
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 1rem;  /* alt boşluk */
}

/* Responsive düzenleme */
@media (max-width: 1200px) {
  .team-member {
    width: calc(25% - 2rem);  /* 4 kişi yan yana */
  }
}

@media (max-width: 992px) {
  .team-member {
    width: calc(33.33% - 2rem);  /* 3 kişi yan yana */
  }
}

@media (max-width: 768px) {
  .team-member {
    width: calc(50% - 2rem);  /* 2 kişi yan yana */
  }
}

@media (max-width: 480px) {
  .team-member {
    width: 100%;  /* 1 kişi */
  }
}

/* Diğer stiller aynı kalacak */
.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  width: 150px;  /* biraz daha küçük fotoğraflar */
  height: 150px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member h3 {
  margin: 10px 0 5px;
  color: #fff;
  font-size: 1.2rem;
}

.team-member p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Contact Section */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.social-links a {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: rebeccapurple;
}
.game-item {
  display: flex;
  flex-direction: row;
  gap: 12rem;
}
.game-item-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-content{
  display: flex;
  flex-direction: row;
  gap: 16rem;
}
h2{
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.social-links-contact{
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
.social-links-contact i{
  font-size: 2.5rem;
  color: #fff;
  transition: color 0.3s ease;
}
.social-links-contact i:hover{
  color: rebeccapurple;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-item h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.contact-item p {
  margin: 0;
  color: #ccc;
}

.social-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.social-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease; /* Geçiş efekti ekledik */
}

.social-item:hover {
  background: rgba(255, 255, 255, 0.2); /* Hover efekti */
}

.social-item h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.social-item p {
  margin: 0;
  color: #ccc;
}