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;
}
@media (max-width: 768px) {
    .hero-media {
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1200px) {
    .custom-video-modal {
        max-width: 70vw;
    }
}
/* Add this either to your main CSS or inside a <style> on the page */
.pswp-custom-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; /* Pin to bottom */
    padding: 16px 18px 14px 18px;
    background: rgba(32, 32, 32, 0.82);
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    z-index: 10;
    /* Optional: Add rounded corners for bottom only */
    border-radius: 0 0 12px 12px;
    pointer-events: none; /* Caption doesn't block clicks */
}

@media (max-width: 600px) {
    .pswp-custom-caption {
        font-size: 0.98rem;
        padding: 10px 8px 8px 8px;
    }
}

#videoModalCaption {
    background: rgba(20,20,20,0.82); /* semi-transparent dark overlay */
    color: #f7f7f7; /* bright, readable */
    border-radius: 0 0 8px 8px;
    padding: 0.65rem 1rem;
    margin-top: -4px; /* pull tight to video */
    font-size: 1.07rem;
    box-shadow: 0 3px 8px #0002;
    min-height: 2.2rem;
}


