﻿body {
    background-color: lightblue;
    font-size: 1.3rem;
    color: blue;
}

h1, h2, h5 {
    text-align: center !important;
}

p {
    margin: 0 !important;
    padding: 0 !important;
}

.Message {
    display:block; 
    width:100%;
    height: 60px;
    font-size: 18px;
    background-color: black;
    color: white;
    overflow-y: auto;
    resize: none;
    word-wrap: break-word;
    white-space: normal;
    -webkit-overflow-scrolling: touch;
}

li a {
    font-size: 1rem;
    font-weight: bold;
    color: black !important;
}

li a:hover {
    color: grey !important;
}

.slides-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center slides horizontally */
    gap: 100px; /* Space between slides */
}

.slide {
    width: 85%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    background-color: lightgray;   
}

.slide img {
    height: 200px;
    border-radius: 8px;
    display: block; /* prevents text from wrapping */
    margin-left: 0; /* aligns image to the left */
    margin-bottom: 50px;
}

.members-slides-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers horizontally */
    gap: 10px;
}

.members-slide img {
    height: 140px;
    width: 140px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.membersthumbnail-slide {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers everything horizontally */
}

.membersthumbnail-slide img {
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.members-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Overlay */
.image-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Allow metadata below image */
    z-index: 9999;
}

/* Large image */
.large-image {
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    margin-bottom: 10px; /* space for metadata */
}

/* Metadata box */
.image-metadata {
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    max-width: 80%;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 8px;
}

/* Navigation arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.3);
    transition: background-color 0.2s;
}

.arrow:hover {
    background-color: rgba(0,0,0,0.6);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

.Link {
    font-size: 14px;
    color: lightblue;
    font-weight: initial;
    text-decoration: underline; /* ensures the line is always visible */
}

@media (min-width: 750px) { /* adjust if using different breakpoints */
    .navbar-nav-desktop {
        position: relative;
        top: -70px; /* pull desktop menu up */
    }
}





