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;
}

/* my styles */
.home-hero {
    min-height: 100vh;
    width: 100%;
    background-image: url('/images/home-bg.png');
    background-size: cover; /* Fill screen */
    background-position: center; /* Keep center visible */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* Improves text visibility */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    padding: 20px;
    max-width: 90%;
    z-index: 1;
}

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 4.5rem);
        font-weight: bold;
        margin-bottom: 15px;
    }

    .hero-content h4 {
        font-size: clamp(1rem, 2vw, 1.5rem);
    }

/* Mobile */
@media (max-width: 768px) {

    .home-hero {
        min-height: 100vh;
        background-position: center center;
    }

    .hero-content {
        padding: 15px;
    }
}