body {
  margin: 0;
  background-color: #000;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

header {
  text-align: center;
  padding: 60px 20px 30px;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  color: #ffd700aa;
}

.hero-text {
  font-size: 1.8em;
  font-weight: 500;
  color: #ffd700;
  text-shadow: 0 0 6px #b8860b;
  margin-top: 20px;
  text-align: center;
}

.slogan-text {
  font-size: 1.4em;
  color: #f5deb3;
  font-style: italic;
  text-align: center;
  margin-top: 10px;
}

.hero img {
  max-width: 100%;
  border-radius: 12px;
  border: 2px solid #d4af37;
}

.contact {
  padding: 40px 20px;
  text-align: center;
}

.contact a {
  color: #d4af37;
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icons img {
  width: 40px;
  filter: drop-shadow(0 0 4px #d4af37);
  transition: transform 0.2s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px #ffd700);
}

.qr {
  margin-top: 50px; /* Aradaki boşluğu artırır */
}

.logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text, .slogan-text {
  animation: fadeInUp 1s ease-out both;
}

.counter {
  font-size: 1.2em;
  color: #ffd700;
  text-shadow: 0 0 4px #b8860b;
  margin-top: 30px;
  text-align: center;
  font-weight: 500;
}
.site-footer {
  margin-top: 60px;
  padding: 30px 20px;
  background-color: #111;
  text-align: center;
  color: #ffd700;
  font-size: 1em;
  text-shadow: 0 0 4px #b8860b;
  border-top: 1px solid #333;
}

.footer-copy {
  margin-top: 15px;
  font-size: 0.95em;
  color: #f5deb3;
}
.footer-copy {
  text-shadow: 0 0 3px #333;
}
.site-footer {
  background-color: #111;
  border-top: 1px solid #333;
}
@keyframes fadeInLogo {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.logo-video video {
  width: 35%;
  height: 35%;
  object-fit: cover;
  display: block;
   margin: 0 auto;
  text-align: center;
}
