/*
Theme Name: Yeşil Gürün Özel Teması
Author: Nazlı Civelek
Description: HTML ve CSS ile hazırlanan özgün tasarımın WordPress entegrasyonu.
Version: 1.0
Text Domain: yesilgurun-tema
*/

/* --- GENEL AYARLAR --- */
:root {
  --yeg-green: #2e7d32;
  --yeg-turquoise: #0097a7;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
}

/* --- NAVBAR STİLİ --- */
.navbar {
  background-color: #ffffff !important;
  padding: 0.8rem 0;
}

.navbar-brand span {
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.nav-link {
  transition: var(--transition);
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--yeg-turquoise) !important;
  transform: translateY(-1px);
}

/* --- HERO ALANI (ARKA PLAN) --- */
.hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* Üst klasördeki resimler klasörünün içine, ı harfiyle hedef gösterdik */
  background-image: url('resimler/Lake Gokpinar.jpg');
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax Etkisi */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

/* --- LOGO BANDI & KARTLAR --- */
.img-fluid.opacity-75 {
  max-height: 60px;
  /* Grayscale (siyah-beyaz) efekti kaldırıldı */
  filter: none !important;
  /* Tam renk görünürlüğü için opaklık artırıldı */
  opacity: 1 !important;
  transition: var(--transition);
}

/* Hover durumunda (fare üzerine gelince) özel bir efekte gerek yok, 
   zira zaten renkli */
.img-fluid.opacity-75:hover {
  filter: none !important;
  opacity: 1 !important;
}

.card {
  transition: var(--transition);
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.btn-info {
  background-color: var(--yeg-turquoise) !important;
  border-color: var(--yeg-turquoise) !important;
}

/* --- FOOTER STİLLERİ --- */
.footer {
  background-color: #1a3c34; /* Yeşil Gürün kurumsal koyu yeşil */
  color: #ffffff;
  padding: 4rem 0 2rem 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: var(--transition);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: #ffffff !important;
  padding-left: 8px;
}

.social-links a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--yeg-turquoise) !important;
}

/* MOBİL AYARI */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll; /* Mobilde parallax performansı için scroll yaptık */
    min-height: 70vh;
  }
  .display-3 {
    font-size: 2.5rem;
  }
}

/* Yönetim Kurulu Özel Stilleri */
.card img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.bg-success {
  background-color: var(--yeg-green) !important;
}
