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;
    background-color: #c8e0bc;
}

.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;
}

.PageHeader {
    background-color: #446538;
    text-align: center;
}
h1 {
    background-color: #446538;
    color: white;
    font-weight: bold;
    font-size: 6rem;
    margin-bottom: 0;
    padding-bottom: 10px;
}
h3 {
    background-color: #446538;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding-bottom: 10px;
}


.gallery-img {
    border: 2px solid #446538;
    border-radius: 4px;
    display: block;
    width: 100%;
    height: auto;
}


    .gallery-img:hover {
        box-shadow: 0 0 12px rgba(68, 101, 56, 0.6);
        transform: scale(1.02);
        transition: all 0.2s ease;
    }

/* Image container */
.image-wrapper {
    position: relative;
    width: 100%;
}

/* Gallery image */
.gallery-img {
    border: 2px solid #446538;
    border-radius: 4px;
    display: block;
    width: 100%;
    height: auto;
}

/* Spinner overlay */
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border: 4px solid rgba(68, 101, 56, 0.25);
    border-top-color: #446538;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    z-index: 10;
}

/* Spin animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.lazy-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .lazy-img:not([src=""]) {
        opacity: 1;
    }


/* Wrapper */
.image-wrapper {
    position: relative;
    width: 100%;
    min-height: 220px;
}

/* Gallery image */
.gallery-img {
    border: 2px solid #446538;
    border-radius: 4px;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: block;
}

/* Spinner */
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border: 4px solid rgba(68, 101, 56, 0.25);
    border-top-color: #446538;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    z-index: 5;
}

/* Spinner animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
