/* Genel Reset ve Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: #333;
  line-height: 1.6;
  padding-top: 100px; /* Header yüksekliği kadar boşluk */
}

/* Header */
/* ===================== HEADER ===================== */
header {
  background: #fff; /* Beyaz arka plan */
  color: #000;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* Hafif gölge */
}

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

/* Logo + Yazı */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo span {
  font-family: "Georgia", serif; /* Daha resmi bir font */
  font-size: 1.5em;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.5px;
}

/* Menü */
nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #000;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #000000; /* Koyu mavi hover efekti */
  text-decoration: none;
}


h1 {
  font-size: 1.6em;
  margin-bottom: 20px;
}

/* Faaliyetler Container */
.faaliyetler-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.faaliyetler-container h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #000000;
}

/* Grid yapısı */
.faaliyetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Her bir kutu */
.faaliyet-kutu {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25); /* daha koyu ve belirgin gölge */
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.faaliyet-kutu:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45); /* hoverda daha derin gölge */
}


.faaliyet-kutu img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  height: 200px;
  object-fit: cover;
}

.faaliyet-kutu h3 {
  color: #000000;
  margin-bottom: 10px;
}

.faaliyet-kutu p {
  font-size: 0.95em;
  color: #555;
}

/* Modal Popup */
.modal {
  display: none; /* Başta gizli */
  position: fixed;
  z-index: 1000; /* En öne gelsin */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* İçerik taşarsa kaydırma */
  background-color: rgba(0,0,0,0.6); /* Saydam siyah arka plan */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
  position: relative;
}

.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* Banner ve Info */
.section-banner {
  margin-top: 0px;
  position: relative;
}

.section-banner img {
  width: 100%;
  height: auto;
}

.section-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -40%);

  color: #000000;
  padding: 40px;
  max-width: 600px;
  text-align: center;
}

.section-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-info.reversed {
  flex-direction: row-reverse;
}

.info-box {
  flex: 1 1 300px;
  padding: 25px 25px 25px 35px;
  background: #fff;
  border-left: 6px solid #000; /* Siyah şerit */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}


.info-box img {
  max-width: 100%;
  border-radius: 8px;
}

/* Contact */
.section-contact {
  background: #f8f9fa;
  padding: 80px 20px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contact-info h2 {
  color: #000000;
  font-size: 2em;
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1em;
  color: #333;
}

.contact-info p::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background-size: cover;
}

.contact-info p.telefon::before {
  background-image: url('images/telefonemoji.png');
}

.contact-info p.email::before {
  background-image: url('images/mailemoji.png');
}

.contact-info p.adres::before {
  background-image: url('images/haritaemoji.png');
}

.contact-info a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-map {
  flex: 1 1 500px;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Footer */
footer {
  background: #140055;
  color: #ccc;
  text-align: center;
  padding: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .faaliyetler-grid {
    grid-template-columns: 1fr;
  }

  .faaliyet-kutu img {
    height: 150px;
  }

  .modal-content {
    width: 90%;
    margin: 20% auto;
    padding: 15px;
  }

  .section-info {
    flex-direction: column;
  }

  .section-banner .section-content {
    top: 30%;
    transform: translate(-50%, -30%);
    padding: 20px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contact-map {
    height: 250px;
    width: 100%;
  }

  .contact-info {
    width: 100%;
  }

  
}


.faaliyetler-butonu {
  width: 100%;
  display: flex;              /* Flex ile ortalama */
  justify-content: center;    /* Yatayda ortala */
  margin: 50px 0;
}

.faaliyetler-butonu h3 {
  background: #f8f8f8;
  padding: 15px 40px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faaliyetler-butonu h3:hover {
  transform: translateY(-3px); /* Hoverda hafif yukarı çıksın */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.faaliyetler-butonu h3 a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.faaliyetler-butonu h3 a:hover {
  color: #000000;  /* Hoverda koyu mavi */
}

/* Hamburger Menü (Mobil) */
.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

/* Mobilde aktif hale getir */
@media (max-width: 768px) {
  nav {
    display: none; /* Menü gizli */
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;   /* header yüksekliğinin altına gelsin */
    right: 20px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-radius: 10px;
  }

  nav a {
    margin: 10px 0;
    font-size: 1em;
  }

  nav.show {
    display: flex; /* Toggle ile açılacak */
  }

  .menu-toggle {
    display: block; /* Mobilde göster */
    color: #000;
  }
}





.faaliyet-link {
  text-decoration: none;
  color: inherit;
  display: block;
}





