body {
  margin: 0;
  padding: 0;
  background-color: #FEF8FA;
  font-family: 'Poppins', sans-serif;
  color: #5c4c78;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.logo-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: -20px;
}

.logo {
  width: 140px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.title {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  color: #a48ac3;
  text-align: center;
  margin-bottom: 24px;
}

.intro {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 36px;
  color: #6a5a96;
}

.content p {
  font-size: 16px;
  margin-bottom: 18px;
}

.content .final {
  font-weight: 600;
  color: #8e84a2;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}
.about-text {
  font-size: 17px;
  color: #5c4c78;
  line-height: 1.8;
  margin-top: 32px;
}

.about-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.about-text em {
  font-style: italic;
  color: #a48ac3;
}

.about-text strong {
  font-weight: 600;
  color: #8b6bb2;
}

.about-text .signature {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-top: 36px;
  color: #6a5a96;
}

/* Mobil uyum */
@media (max-width: 600px) {
  .title {
    font-size: 36px;
  }

  .intro {
    font-size: 16px;
  }

  .content p {
    font-size: 15px;
  }

  .gallery {
    gap: 12px;
  }
}
