/* Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');





body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

.logo{
    height: 40px !important;
}
/* Hero Section */
.hero-section {
  position: relative;
  height: auto;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  /* Daha koyu overlay (orijinaldeki gibi) */
}

/* Style for the map placeholder to look like a frame */
.map-frame {
  border: 1px solid #ddd;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Style for the video controls bar simulation */
.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  /* text-sm */
}