/* Genel görünüm */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #1e90ff, #8a2be2, #ffcc00);
  color: #fff;
  text-align: center;
}

.logo {
  max-width: 120px;
  margin-top: 20px;
}

.title {
  font-size: 2.5rem;
  margin: 10px 0;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.info-box {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin: 0 auto 30px;
  max-width: 800px;
  border-radius: 10px;
}

.info-box h2 {
  font-size: 1.5rem;
  color: #fff;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ffcc00;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.gallery-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.photo {
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  max-width: 300px;
}

.photo img {
  width: 100%;
  border-radius: 10px;
}

.photo p {
  margin-top: 8px;
  color: #fff;
  font-weight: bold;
}

footer {
  font-size: 0.8rem;
  margin-bottom: 20px;
}