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;
}

/* wwwroot/css/site.css */
.photo-group {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.photo-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    transition: box-shadow 0.2s;
}

    .photo-item:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.16);
    }

    .photo-item img {
        max-width: 100%;
        max-height: 250px;
        border-radius: 4px;
        margin-bottom: 8px;
    }

.photo-caption {
    font-size: 1rem;
    color: #333;
    text-align: center;
    margin-top: 4px;
}

h4 {
    color : blue;
}

.photo-header {
    color: darkgreen ;
}

header img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
}

.banner-container {
    position: relative;
    width: 100%;
}

.banner-container img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    display: block;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FAF7EF;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,.55), 0 0 2px rgba(16,42,26,.9); /* faux outline */
    text-align: center;
    width: 100%;
    pointer-events: none;
}