/* Bi Dünya Müzik Kadınlar Korosu - Ana CSS Dosyası */

/* Font Tanımlaması */
@font-face {
  font-family: 'GeographEdit';
  src: url('../fonts/geographeditwebregular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GeographEditItalic';
  src: url('../fonts/geographeditwebregularitalic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeographEditBold';
  src: url('../fonts/geographeditwebbold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

strong{
    font-family: 'GeographEditBold', sans-serif;
}
i{
    font-family: 'GeographEditItalic', sans-serif;
}

/* Genel Sıfırlama ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'GeographEdit', sans-serif;
  background: url('../img/arka-plan.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Navbar Stili */
.navbar {
  background-color: #006d77 !important;
}

.navbar-brand {
  display: none !important;
}

.nav-link {
  color: #e0f7f9 !important;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #30e3ca !important; /* Turkuaz hover rengi */
}

.language-switch {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1050;
}

/* Dil Butonu */
.language-switch button {
  background-color: #006d77; /* Turkuaz arka plan */
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.language-switch button:hover {
  background-color: #006d77 /* Daha canlı turkuaz */
}

.dropdown-menu {
  background-color: #004f52; /* Daha koyu turkuaz */
}

.dropdown-item {
  color: #e0f7f9;
}

.dropdown-item:hover {
  background-color: #30e3ca;
  color: #004f52;
}

/* Hero Bölümleri */
.hero-section {
  height: 60vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

/* İçerik Bölümleri */
.content-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-title {
  color: #006d77;
  margin-bottom: 30px;
}

/* Blockquote Stili */
blockquote {
  font-style: italic;
  border-left: 3px solid #006d77;
  padding-left: 15px;
  margin: 20px 0;
  color: #555;
}

/* Butonlar */
.btn-custom {
  background-color: #006d77;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
  font-size: 0.95rem;
}

.btn-custom:hover {
  background-color: #004f52;
  color: white;
}

.btn-outline-custom {
  background-color: transparent;
  color: #006d77;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #006d77;
  font-size: 0.95rem;
}

.btn-outline-custom:hover {
  background-color: rgba(0, 109, 119, 0.1);
}

/* Görsel İşlemleri */
img {
  max-width: 100%;
}

img.rounded {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

img.rounded-circle {
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Düzenlemeler */
@media (min-width: 768px) {
  .navbar-collapse {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 40vh;
  }
  
  .content-container {
    padding: 20px;
  }
}