/**
 * Projeler CSS
 * Sayfa: projeler.php
 */

/* =============================================
   GOOGLE MAPS MARKER LABEL
   ============================================= */
.gm-style .marker-label {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  white-space: nowrap;
  transform: translateY(-36px);
  pointer-events: none;
  font: 600 13px/1.3 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1f2937;
}

@media (max-width: 768px) {
  .gm-style .marker-label {
    font-size: 11px;
    transform: translateY(-30px);
  }
}

@media (max-width: 400px) {
  .gm-style .marker-label {
    font-size: 10px;
    transform: translateY(-26px);
  }
}

/* =============================================
   3D SANAL TUR EMBED
   ============================================= */
.tour-embed {
  position: relative;
  width: 96%;
  max-width: 1600px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.tour-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .tour-embed {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tour-embed {
    aspect-ratio: 9 / 16;
    border-radius: 0;
  }
}

/* =============================================
   YOUTUBE EMBED
   ============================================= */
.embed-responsive-9by16::before {
  padding-top: 177.77%; /* 16/9'un tersi oran */
}

