html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Index: full-bleed intro video — viewport-centered breakout + flex frame */
.intro-video-bleed {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  overflow: hidden;
}

.intro-video-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 92vh;
  max-height: 92vh;
}

.intro-video {
  width: 100%;
  max-width: 100%;
  min-height: 92vh;
  height: 92vh;
  max-height: 92vh;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

/* Anasayfa: video ikinci hero gibi tam viewport yüksekliği */
.intro-video-hero-fullscreen {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  display: block;
}

.intro-video-hero-fullscreen .intro-video-frame {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  width: 100%;
  align-items: stretch;
}

.intro-video-hero-fullscreen .intro-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  flex: 1 0 auto;
  object-fit: cover;
  object-position: 50% 50%;
}