@charset "UTF-8";
/* CSS Document */
a {
	color: #123987;
	font-size: 1em;
}
a:hover,
a:focus {
	text-decoration: none;
}
[hidden] {
	display: none;
}
.brc-Portfolio {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    align-items: center;
}
.brc-Intro_statement, .brc-Artist_statement, .brc-es-Artist_statement{
	margin: 10px;
	line-height: 1.4;
	padding: 5px;
}
@media (min-width: 668px) {
	.brc-Intro_statement, .brc-Artist_statement, .brc-es-Artist_statement{
		width: 580px;
		line-height: 1.4;
		padding: 10px;
		margin: 10px auto;
	}
}
.brc-Artist_statement, .brc-es-Artist_statement {
	line-height: 1.6;
	background: #f8f3e7;
	padding: 20px;
	margin: 20px auto;
	max-width: 580px;
}
.brc-Artist_statement p, .brc-es-Artist_statement p  {
	margin: 0 1px 10px;
}
.brc-Artist_statement p:last-child , .brc-es-Artist_statement p:last-child{
	margin-bottom: 0px;
}
button{
	color: #000;
	border-color: blue;
	background-color: aliceblue;
	border-radius: 5px;
}

/* Grid */
.photo-grid {
    display: block; /* Disable the grid display */
    column-gap: 20px;
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Column Counts */
.photo-grid { column-count: 1; }
@media (min-width: 500px) { .photo-grid { column-count: 2; } }
@media (min-width: 700px) { .photo-grid { column-count: 3; } }
@media (min-width: 1024px) { .photo-grid { column-count: 4; } }

.photo-item {
    display: inline-block; /* Essential to prevent images splitting across columns */
    width: 100%;
    margin-bottom: 12px; /* Space between photos vertically */
}

/* The Photo & Caption Styles */
.photo-item figure {
  margin: 0;
  display: block;
}

.photo-item img {
  width: 100%;       /* Forces image to span the full column width */
  max-width: none;   /* Overrides any global max-width limits */
  height: auto;      /* Keeps the image proportions natural */
  display: block;
  margin-left: auto;
  margin-right: auto; /* These two lines center the image if it ever falls short */
}

.photo-item figcaption {
  padding-top: 14px;
  text-align: center;
  font-family: sans-serif; /* Or your preferred font */
  font-size: 14px;
}
.photo-item figcaption {
  display: none; /* Hides the caption in the grid view */
}

/* Lightbox Styling */

/* Navigation Buttons */
/* Close button */
.close-lightbox {
    position: absolute;
    top: 5px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}
/* Nav buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    padding: 0;        /* Removed padding to ensure exact 5px spacing */
    z-index: 10001;
    user-select: none;
    transition: 0.3s;
    opacity: 0.5;
}

.nav-btn:hover {
    opacity: 1;
}

/* Position exactly 5px outside the wrapper/image edges */
.prev-btn { 
    right: 100%; 
    margin-right: 5px; 
}

.next-btn { 
    left: 100%; 
    margin-left: 5px; 
}

/* Lightbox image background */
.lightbox {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Slightly darker for better focus */
    
    /* Centering logic */
    align-items: center;
    justify-content: center;
}

/* Consolidated Wrapper - include arrows */
.lightbox-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative; 
    /* width: auto allows the wrapper to shrink to the image's width */
    width: fit-content; 
    height: auto;
    max-width: 85vw;
}

/* Enlarged image */
.lightbox-content {
    display: block;
    /* image dictates the wrapper width */
    max-width: 85vw;
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain; 
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* Position arrows 5px outside the wrapper/image edge */
.prev-btn { 
    right: 100%; 
    margin-right: 5px; 
}

.next-btn { 
    left: 100%; 
    margin-left: 5px; 
}

/* Caption spacing */
#lightbox-caption {
    color: #ccc;
    font-family: sans-serif;
    font-size: 18px;
    margin-top: 24px;
    text-align: center;
    width: 90%;
}
/* Prevents the background page from scrolling when lightbox is open */
.stop-scrolling {
	overflow: hidden !important;
    height: 100vh !important;
    position: fixed; /* iOS */
    width: 100%;
}