.bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: space-between; /* linkler solda, credit sağda */
  align-items: center;
  padding: 8px 16px;
  font-family: 'Space Mono', monospace;
}

.menu-links {
  display: flex;
  flex-wrap: wrap; /* dar ekranda satır kaydırır */
  gap: 12px;
}

.bottom-menu a {
  color: #DFFF00;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 4px 6px;
}

.bottom-menu a:hover {
  color: #F0F0F0;
}

.bottom-menu a.active {
  color: #F0F0F0;
  font-weight: bold;
  border-bottom: 2px solid #DFFF00;
}

/* Credit yazısı küçük ve gri */
.menu-credit {
  font-size: 0.65rem;
  color: rgba(240,240,240,0.4);
  pointer-events: none;
}

/* Başlık fade-in + zoom */
.details__title {
  animation: fadeZoom 1.2s ease-out forwards;
}
@keyframes fadeZoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Meta bilgileri soldan kayarak gelsin */
.details__meta {
  animation: slideIn 1s ease-out forwards;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Ana metin alttan fade-up */
.text-overlay {
  animation: fadeUp 1.5s ease-out forwards;
}

.text-overlay p {
  animation: colorFade 6s ease-in-out forwards;
}

@keyframes colorFade {
  0%   { color: #888; }       /* gri başlangıç */
  100% { color: #d4f27c; }    /* orijinal yeşilde sabitlenir */
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
body {
  margin: 0;
  font-family: 'Space Mono', monospace;
  background: url("images/tm-620-com-01.jpg") no-repeat center center;
  background-size: cover;
  color: #F0F0F0;
  line-height: 1.6;
  overflow-x: hidden;
}

.overlay {
  background-color: rgba(0,0,0,0.55);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  position: relative;
  padding-bottom: 70px;
}

.details__meta {
  font-size: 1rem;
  font-family: 'Space Mono', monospace;
  text-align: left;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 100px auto; /* başlık ve değer yan yana */
  gap: 4px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.details__meta-label {
  color: #DFFF00;
  font-weight: bold;
  text-transform: uppercase;
}

.details__meta-value {
  color: #F0F0F0;
}

.text-overlay {
  background-color: rgba(0,0,0,0.35);
  padding: 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Space Mono', monospace;
  color: #d4f27c;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: flex-start;
}

.contact-icons a {
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Telefon */
.contact-icons a.phone-icon {
  color: #F0F0F0;
}
.contact-icons a.phone-icon:hover {
  color: #DFFF00;
}

/* WhatsApp */
.contact-icons a.whatsapp-icon {
  color: #25D366;
}
.contact-icons a.whatsapp-icon:hover {
  color: #DFFF00;
}

/* Instagram */
.contact-icons a.instagram-icon {
  color: #E1306C;
}
.contact-icons a.instagram-icon:hover {
  color: #DFFF00;
}

/* Harita */
.contact-icons a.map-icon {
  color: #F0F0F0;
}
.contact-icons a.map-icon:hover {
  color: #DFFF00;
}

/* E-posta */
.contact-icons a.email-icon {
  color: #F0F0F0;
}
.contact-icons a.email-icon:hover {
  color: #DFFF00;
}

/* YouTube */
.contact-icons a.youtube-icon {
  color: #FF0000;
}
.contact-icons a.youtube-icon:hover {
  color: #DFFF00;
}
/* 🎯 İletişim formu düzeni */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Space Mono', monospace;
  color: rgba(240,240,240,0.85);
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  font-size: 0.9rem;
  color: #DFFF00;
  margin-bottom: 4px;
  text-shadow: 1px 1px 2px #000;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background-color: rgba(0,0,0,0.4); /* şeffaf siyah */
  color: #F0F0F0;
  font-size: 0.9rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #DFFF00;
}

/* Gönder butonu */
.contact-form button {
  background-color: #DFFF00;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #F0F0F0;
}

/* KVKK metni */
.kvkk-info {
  font-size: 0.75rem;
  color: rgba(240,240,240,0.7);
  text-align: left;
  line-height: 1.4;
}

.kvkk-info a {
  color: #DFFF00;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.kvkk-info a:hover {
  border-color: #DFFF00;
}

/* İkonlar hizalama ve renk */
.contact-icons {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  justify-content: center;
}

/* Varsayılan renkleri özel class ile ver */
.contact-icons a.phone-icon   { color: #007AFF !important; }
.contact-icons a.whatsapp-icon{ color: #25D366 !important; }
.contact-icons a.instagram-icon{ color: #E1306C !important; }
.contact-icons a.map-icon     { color: #d93025 !important; }
.contact-icons a.email-icon   { color: #0072C6 !important; }
.contact-icons a.youtube-icon { color: #FF0000 !important; }

.contact-icons a:hover {
  color: #DFFF00;
}
.details__meta .details__meta-value.address {
  color: #d4f27c !important;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000;
}

.text-overlay p.questions {
  color: #DFFF00 !important;
  font-style: italic;
  text-shadow: 1px 1px 2px #000;
}

