/* Genel sayfa ayarları */
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background-color: #f7f7f7;
      color: #333;
    }
	
	header {
  background: linear-gradient(to bottom, #0A2038, #024682);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  padding: 12px 60px;
}

.logo img {
  height: 45px;   /* logon çok büyükse küçültür */
  width: auto;    /* oranı korur */
}

.logo {
  display: flex;
  align-items: center;
}

/* Menü ortalama (ul içindeki elemanları ortalar) */
nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Linkler */
nav ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #FFFFDC;
  position: relative;
  padding-bottom: 5px;
}

/* Hover alt çizgi efekti */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #FFFFDC;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

footer {
      background: linear-gradient(to top, #0A2038, #024682);
      color: #ccc;
      text-align: center;
      padding: 2px 10px;
	  
    }

    footer p {
	font-family: 'Playfair Display', serif;
      margin-bottom: 10px;
    }

    footer a {
	font-family: 'Playfair Display', serif;
      color: #ffd700;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: none;
    }

    main {
      padding: 60px 8%;
    }

    /* Tanıtım alanı */
    .intro {
      text-align: center;
      margin-bottom: 100px;
      animation: fadeUp 1.2s ease;
    }

    .intro h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }

    .intro p {
      font-size: 1.2rem;
      line-height: 1.8;
      max-width: 800px;
      margin: auto;
    }

    /* Section genel ayarları */
    section {
      margin-bottom: 120px;
      animation: fadeUp 1.2s ease;
    }

    section h2 {
      font-size: 2.4rem;
      margin-bottom: 20px;
    }

    section p {
      font-size: 1.1rem;
      line-height: 1.9;
      max-width: 900px;
    }

    /* Görsel alanı */
    .image-area {
      margin-top: 40px;
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .image-box {
      aspect-ratio: 9 / 16;
      height: 350px;
      border: 3px solid #ccc;
      border-radius: 12px;
      background-color: #eaeaea;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #777;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .image-box:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    /* Animasyon */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .intro h1 {
        font-size: 2.2rem;
      }

      section h2 {
        font-size: 2rem;
      }

      .image-box {
        height: 240px;
      }
    }
	
	.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eee;
}

/* Lightbox arkaplan */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

/* Açık hali */
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* Büyüyen görsel */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}

/* Küçük animasyon */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/* Tıklanabilir hissi */
.image-box img {
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Sağ-sol oklar */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 50px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.left {
  left: 30px;
}

.lightbox-arrow.right {
  right: 30px;
}

.page-container {

  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

p {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
