/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

/* Buttons */
.btn,
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #111;
  cursor: pointer;
  font-size: 16px;
  background: #111;
  color: #fff;
}

.btn-primary {
  background: #111;
  color: #fff;
  border: 2px solid #111;
}

.btn-primary:hover {
  background: #fff;
  color: #111;
  border: 2px solid #111;
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 2px solid #111;
}

.btn-secondary:hover {
  background: #111;
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  padding: 8px 20px;
  font-size: 14px;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  color: #111;
  font-size: 24px;
  margin-bottom: -5px;
}

.nav-logo span {
  font-size: 12px;
  color: #666;
  font-weight: 300;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 18px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #111;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #111;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #222;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  color: #111;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #000;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  color: #000;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.hero-btn {
  border: 3px solid #fff;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-curtain {
  width: 200px;
  height: 300px;
  background: #eaeaea;
  border-radius: 10px;
  position: relative;
}

.stage-curtain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: #ccc;
  border-radius: 10px 10px 0 0;
}

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  background: #f8f9fa;
  color: #111;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.8;
}

.about-cta {
  margin-top: 30px;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-item h4 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 5px;
}

.stat-item p {
  color: #444;
  font-weight: 500;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image Placeholders */
.image-placeholder {
  width: 100%;
  /* height: 300px; */
  /* background: #eaeaea; */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

/* Team Section */
.team {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-grid-manager {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  margin-bottom: 30px;
}

.team-member {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image .image-placeholder {
  height: 100%;
  border-radius: 0;
  font-size: 4rem;
}

.member-info {
  padding: 25px;
}

.member-info h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 10px;
}

.member-role {
  color: #222;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.member-description {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.member-social {
  display: flex;
  gap: 15px;
}

.member-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #222;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  font-size: 14px;
}

.member-social a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

.team-cta {
  text-align: center;
  margin-top: 50px;
}

.team-cta .btn {
  font-size: 18px;
  padding: 15px 40px;
}

/* Full Team Section */
.full-team {
  padding: 100px 0;
  background: #f8f9fa;
}

.full-team .team-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.full-team .member-description {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: #f8f9fa;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

.gallery-cta .btn {
  font-size: 18px;
  padding: 15px 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.full-gallery {
  padding: 100px 0;
}

.gallery-item .image-placeholder {
  height: 100%;
  border-radius: 0;
}

/* References Section */
.references {
  padding: 100px 0;
}

.references-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.references-text h3 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 20px;
}

.references-text p {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.8;
}

.references-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.logo-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.05);
}

.logo-item .logo-placeholder {
  height: 100%;
  border-radius: 0;
}

.references-cta {
  text-align: center;
  margin-top: 40px;
}

.references-cta .btn {
  font-size: 18px;
  padding: 15px 40px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  max-width: 100%;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #111;
  margin-top: 5px;
}

.contact-item h4 {
  color: #111;
  margin-bottom: 5px;
}

.contact-item p {
  color: #444;
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #222;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 900px) {
  .team-grid,
  .full-team .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .references-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .references-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 18px;
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-video {
    object-position: center;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats {
    flex-direction: column;
    gap: 20px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-grid-manager {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .full-team .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .references-logos {
    grid-template-columns: 1fr;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-map {
    height: 300px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-logo {
    height: 56px;
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .container {
    padding: 0 15px;
  }
  .hero-video {
    object-position: center;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* About Detail Section */
.about-detail {
  padding: 60px 0 80px 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-detail p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #222;
  text-align: center;
}

.nav-main-btn {
  margin-left: 24px;
  padding: 10px 28px;
  font-size: 16px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 44px;
}

.nav-main-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 18px rgba(102, 126, 234, 0.18);
}

@media (max-width: 900px) {
  .nav-main-btn {
    display: none;
  }
}

.site-logo {
  height: 80px;
  max-width: 240px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 48px;
}

.preloader-logo {
  width: 200px;
  max-width: 80vw;
  display: block;
  margin: 0 auto 40px auto;
}

.preloader-text {
  font-size: 18px;
  color: #111;
  font-weight: 500;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-dots {
  display: inline-block;
  animation: loadingDots 1.5s infinite;
  margin-left: 4px;
}

@keyframes loadingDots {
  0%,
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.nav-main-btn-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-main-btn-desktop {
    display: none !important;
  }
  .nav-main-btn-mobile {
    display: flex !important;
    justify-content: center;
    margin: 16px 0 0 0;
  }
  .nav-main-btn-mobile .btn {
    width: auto;
    min-width: 140px;
    max-width: 90vw;
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
}
/* Mobile Hero Height Fix - Bu kodu CSS dosyanızın sonuna ekleyin */

/* Mobile Hero Height Fix - Bu kodu CSS dosyanızın sonuna ekleyin */

@media (max-width: 768px) {
  .hero {
    min-height: 70vh; /* Mobilde daha dengeli yükseklik */
  }

  /* Hero overlay ayarları */
  .hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Overlay koyuluk ayarı */
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 65vh; /* Küçük ekranlarda biraz daha küçük */
  }

  /* Hero overlay ayarları */
  .hero-overlay {
    background: rgba(0, 0, 0, 0.4); /* Daha açık overlay */
  }
}

/* Games Page Styles */
.games-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.games-subsection {
  margin-bottom: 60px;
}

.games-subsection-title {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 30px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  border-bottom: 3px solid #111;
  padding-bottom: 10px;
  display: inline-block;
}

.game-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.game-poster {
  width: 100%;
}

.game-poster .image-placeholder {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.game-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-info h3 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 15px;
}

.game-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.game-genre,
.game-duration,
.game-age {
  background: #f8f9fa;
  color: #111;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid #e9ecef;
}

.game-description {
  color: #444;
  line-height: 1.7;
  margin-bottom: 0px;
  font-size: 1rem;
}

.game-details {
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #666;
  font-size: 0.95rem;
}

.detail-item i {
  color: #111;
  width: 16px;
}

.game-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.game-actions .btn {
  padding: 12px 25px;
  font-size: 0.95rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* References Page Styles */
.references-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.logo-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.logo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.logo-item .logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
}

.logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #111;
  font-size: 3rem;
  background: #f8f9fa;
  border-radius: 15px;
}

/* Responsive Design for References Page */
@media (max-width: 900px) {
  .references-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .references-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .references-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .logo-fallback {
    font-size: 2rem;
  }
}

/* Games Page Responsive Design */
@media (max-width: 768px) {
  .game-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px;
  }
  
  .game-poster .image-placeholder {
    height: 250px;
  }
  
  .game-info h3 {
    font-size: 1.5rem;
  }
  
  .game-meta {
    gap: 10px;
  }
  
  .game-actions {
    flex-direction: column;
  }
  
  .game-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .game-card {
    padding: 15px;
    margin-bottom: 30px;
  }
  
  .game-poster .image-placeholder {
    height: auto;
  }
  
  .game-info h3 {
    font-size: 1.3rem;
  }
  
  .game-meta {
    flex-direction: column;
    gap: 8px;
  }
}
