/* Eski header stilleri kaldırıldı - Bootstrap kullanılıyor */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
/* Genel Stil Ayarları */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

html,
body {
  height: 100%;
  margin: 0;
}

/* Container */
.container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Eski header stilleri kaldırıldı - Bootstrap kullanılıyor */

/* Eski responsive stilleri kaldırıldı - Bootstrap kullanılıyor */

/* Ana İçerik */
main {
  background-color: white;
  padding: 40px 0;
  flex: 1;
}

.content h2,
.about h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.content p,
.about p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Banner Alanı */
.banner-container {
  width: 100%;
  margin: 0 auto;
}

/* Asıl flex yapısı banner-slider üzerinde olmalı */
.banner-slider {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* Ekran daralınca alt alta geçsin */
  width: 100%;
}

/* Her banner */
.banner {
  flex: 1 1 50%;
  max-width: 50%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

/* Görseller düzgün sığsın */
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Banner üzerindeki yazılar */
.banner-text {
  position: absolute;
  bottom: 5%;
  left: 32%;
  transform: translateX(-50%);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .banner {
    flex: 1 1 100%;
    max-width: 100%;
    height: 300px;
  }
}

/* CTA Alanı */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  animation: fadeIn 1.5s ease-in;
  position: relative;
  top: -50px;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #111b55;
  margin-bottom: 10px;
  animation: bounce 1s infinite;
}

.cta-button {
  background-color: #111b55;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #6ccf6d;
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Animasyonlar */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Portföy */
#portfoy {
  padding: 50px 0;
  background-color: #f4f4f4;
  text-align: center;
}

#portfoy h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #111b55;
}

.portfolio-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.portfolio-item {
  width: 300px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.portfolio-item h3 {
  margin: 15px 0;
  color: #333;
}

.portfolio-item p {
  color: #555;
  padding: 0 10px 15px;
}

/* Görsel Galeri */
.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.image-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* Oyuncular Alanı */
.players {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.player-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.player-item p {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

/* Footer */
footer {
  background-color: #111b55;
  color: white;
  text-align: center;
  padding: 20px 0;
}

#contact p {
  font-size: 14px;
}

.about-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.about-item {
  width: 300px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about-item p {
  padding: 15px;
  font-size: 15px;
  color: #333;
  text-align: center;
}

.about-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111b55;
  box-shadow: 0 0 8px rgba(17, 27, 85, 0.3);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn-submit {
  background-color: #111b55;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
  background-color: #6ccf6d;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .contact-form {
    padding: 25px 20px;
  }
}

.mission-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mission-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mission-card i {
  color: #111b55;
  font-size: 30px;
  margin-bottom: 10px;
}

.mission-card h3 {
  color: #111b55;
  margin-bottom: 10px;
}

.mission-card a {
  color: #6ccf6d;
  text-decoration: none;
}

.map-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
footer {
  background-color: #111b55;
  color: white;
  text-align: center;
  padding: 25px 0;
  font-size: 15px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #6ccf6d;
}
@media (max-width: 768px) {
  .contact-form {
    width: 90%;
    padding: 20px;
  }
  
  /* İletişim sayfası responsive düzenlemeleri */
  .contact h1 {
    font-size: 24px !important;
    margin-top: 20px !important;
  }
  
  .map-section h2 {
    font-size: 22px !important;
    margin-top: 20px !important;
  }
  
  .map-container {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .mission-card {
    width: 90%;
    margin-bottom: 20px;
  }
}
.mission-card i {
  font-size: 35px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .map-container {
    width: 95%;
  }
}
@media (max-width: 768px) {
  footer {
    font-size: 13px;
  }
}

/* Bootstrap primary rengini özelleştir - Daha güçlü özellikler */
:root {
  --bs-primary: #111b55 !important;
  --bs-primary-rgb: 17, 27, 85 !important;
  --bs-secondary: #6ccf6d !important;
  --bs-secondary-rgb: 108, 207, 109 !important;
}

/* Bootstrap renk sınıflarını override et */
.text-primary,
.text-primary * {
  color: #111b55 !important;
}

.bg-primary,
.bg-primary * {
  background-color: #111b55 !important;
}

.border-primary,
.border-primary * {
  border-color: #111b55 !important;
}

.text-secondary,
.text-secondary * {
  color: #6ccf6d !important;
}

.bg-secondary,
.bg-secondary * {
  background-color: #6ccf6d !important;
}

/* Bootstrap'ın kendi renklerini tamamen override et */
[class*="bg-primary"] {
  background-color: #111b55 !important;
}

[class*="text-primary"] {
  color: #111b55 !important;
}

[class*="border-primary"] {
  border-color: #111b55 !important;
}

[class*="bg-secondary"] {
  background-color: #6ccf6d !important;
}

[class*="text-secondary"] {
  color: #6ccf6d !important;
}

/* Tüm sayfalarda renk tutarlılığı için genel kurallar */
h1, h2, h3, h4, h5, h6 {
  color: #111b55;
}

a {
  color: #111b55;
  transition: color 0.3s ease;
}

a:hover {
  color: #6ccf6d;
}

.btn-primary {
  background-color: #111b55;
  border-color: #111b55;
}

.btn-primary:hover {
  background-color: #6ccf6d;
  border-color: #6ccf6d;
}

/* Bootstrap ile uyumlu container düzenlemesi - sadece belirli container'lar için */
.container.top-info,
.container.header-container,
.container.mission-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* CTA bölümleri için özel düzenleme */
section .container .row {
  display: flex !important;
  flex-wrap: wrap !important;
}

section .container .row.justify-content-center {
  justify-content: center !important;
}

section .container .row .text-center {
  text-align: center !important;
  width: 100% !important;
}

/* CTA bölümleri için daha güçlü ortalanma */
section .container .row .col-12 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

section .container .row .col-12 .text-center {
  text-align: center !important;
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

/* Bootstrap renklerini tamamen override et - En güçlü kurallar */
.bg-primary,
.bg-primary *,
[class*="bg-primary"],
[class*="bg-primary"] * {
  background-color: #111b55 !important;
}

.text-primary,
.text-primary *,
[class*="text-primary"],
[class*="text-primary"] * {
  color: #111b55 !important;
}

.border-primary,
.border-primary *,
[class*="border-primary"],
[class*="border-primary"] * {
  border-color: #111b55 !important;
}

.bg-secondary,
.bg-secondary *,
[class*="bg-secondary"],
[class*="bg-secondary"] * {
  background-color: #6ccf6d !important;
}

.text-secondary,
.text-secondary *,
[class*="text-secondary"],
[class*="text-secondary"] * {
  color: #6ccf6d !important;
}

/* Birleşik Bootstrap Header Stilleri */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: #111b55 !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-header .top-bar {
  background-color: #f8f9fa !important;
  border-bottom: 1px solid #dee2e6 !important;
}

/* Topbar metin renkleri */
.main-header .top-bar .text-muted {
  color: #ffffff !important;
}

.main-header .top-bar .text-primary {
  color: #111b55 !important;
}

/* Ana içerik için padding */

/* Navbar link hover efektleri */
.navbar-nav .nav-link {
  transition: all 0.3s ease;
  position: relative;
  color: #ffffff !important;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(108, 207, 109, 0.1) !important;
  color: #6ccf6d !important;
}

.navbar-nav .nav-link.active {
  background-color: rgba(108, 207, 109, 0.2) !important;
  color: #6ccf6d !important;
}

/* Dropdown menü stilleri */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #111b55 !important;
}

.dropdown-item {
  transition: all 0.3s ease;
  color: #ffffff !important;
}

.dropdown-item:hover {
  background-color: rgba(108, 207, 109, 0.2) !important;
  color: #6ccf6d !important;
}

/* Hamburger menü animasyonu */
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobil responsive düzenlemeler */
@media (max-width: 991.98px) {
  /* Topbar'ı mobilde gizle */
  .main-header .top-bar {
    display: none !important;
  }
  
  /* Mobilde body padding'ini azalt */
  .navbar-nav {
    background-color: rgba(17, 27, 85, 0.95);
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px;
  }
  
  .navbar-nav .nav-link {
    margin: 2px 0;
  }
}

@media (max-width: 768px) {

  
  .navbar-brand img {
    height: 50px !important;
  }
}

@media (max-width: 576px) {

  
  .navbar-brand img {
    height: 45px !important;
  }
}


.hero-section {
  background-color: #f47907 !important;
}