body {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    position: relative;
    height: 200px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 512px;
    margin-top: 1px;
}

.header-divider {
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    margin: 0;
    border: none;
    border-top: 1px solid #ccc;
    box-shadow: 0 0 15px rgba(200, 255, 255, 0.6);
}
main {
    position: relative;
    z-index: 1;
}

.centered-logo {
    display: block;
    width: 100%;
    z-index: 1;
    position: relative;
}

.partner-site {
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

h1 {
    font-size: 50px;
}
.small {
    font-size: 0.4em;
}

.super {
    vertical-align: super;
    position: relative;
    top: -0.2em;
}

.impact {
    font-family: Impact;
}

.pics {
    position: relative;
    left: -22px;
}

.testimonials {
    text-align: center;
    padding: 10px 20px 20px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    max-width: 280px;
}

.testimonial-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 6px;
    line-height: 1.4;
}

.testimonial-attr {
    font-family: Arial, sans-serif;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.5px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px;
}
.thumb {
    margin: 30px 10px;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}
caption {
    font-size: 1.2em;
    margin: auto;
    text-align: center;
}

.gallery img {
    max-height: 333px;
    width: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;

}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 0;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.full-image {
    position: relative; /* Required to position nav buttons absolutely */
    max-width: 100%;
    max-height: 100vh; /* Prevents the container from overflowing vertically */
    height: auto;
    display: block;
    margin: auto;
}
.full-image img {
    max-width: 100%;
    max-height: 100vh; /* Prevents the container from overflowing vertically */

    height: auto;
    display: block;
    margin: auto;
}
.return-link {
    position: absolute;
    top: 10px; /* Adjust the position as needed */
    left: 100px;
    font-size: 1.5em;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Optional background */
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.return-link:hover {
    opacity: 1;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
th, td {
    padding-right: 15px;
    padding-bottom: 4px;
    border: none;
    text-align: left;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}


.image-viewer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-column {
    width: 120px;
    height: 100vh;
    background: rgba(20,20,20,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    position: relative;
    z-index: 3000;
}
.side-column.active {
    opacity: 0.50;
}
.side-column.left { left: 0; }
.side-column.right { right: 0; }
.nav-button {
    background: #fff;
    color: #222;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Courier New", Courier, monospace;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    opacity: 0.9;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.nav-button:hover {
    background: #eee;
    color: #000;
    opacity: 1;
}
.image-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    height: 100vh;
}
.main-image {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 40px #000;
    background: #222;
    position: absolute;
    z-index: 1;
}
.close-btn {
    position: absolute;
    top: 24px;
    left: -85px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
    opacity: 0.8;
    z-index: 4000;
    transition: background 0.2s, opacity 0.2s;
}
.close-btn:hover {
    background: #fff;
    color: #222;
    opacity: 1;
}
.info-btn {
    position: absolute;
    top: 24px;
    right: -45px; /* 40px (close) + 12px (margin) + 24px (original) */
    font-size: 1.3em;
    font-family: 'Roboto Slab', serif;
    font-style: italic;
    text-transform: lowercase;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    z-index: 4000;
    margin-right: 12px; /* for extra spacing if needed */
}
.info-btn:hover {
    background: #fff;
    color: #222;
    opacity: 1;
}
.fullscreen-btn {
    position: absolute;
    top: 24px;
    right: -85px; /* 40px (close) + 12px (margin) + 24px (original) */
    font-size: 1.3em;
    font-family: 'Roboto Slab', serif;
    font-style: italic;
    text-transform: lowercase;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    z-index: 4000;
    margin-right: 12px; /* for extra spacing if needed */
}
.fullscreen-btn:hover {
    background: #fff;
    color: #222;
    opacity: 1;
}
.modal-bg {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}
.modal-bg.active { display: flex; }
.modal-content {
    background: #fff;
    color: #222;
    border-radius: 8px;
    padding: 32px 24px 24px 24px;
    min-width: 320px;
    max-width: 90vw;
    max-height: 80vh;
    overflow: auto;
    position: relative;
    box-shadow: 0 0 40px #000;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2em;
    color: #888;
    cursor: pointer;
    font-weight: bold;
    background: none;
    border: none;
}
.modal-close:hover { color: #222; }


