/* FILE: style.css */
:root {
  --bg: #ffffff;
  --text: #111;
  --muted: #6f6a63;
  --line: #ddd6cd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .wrap {
    padding: 16px 20px;
  }
}

html, body {
  width: 100%;
  overflow-x: hidden;
}



img {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif",sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  background: url('images/JEL_Full_105.jpg') center / cover no-repeat;
}
body.portfolio-active {
  background: #ffffff; /* or whatever your clean background is */
}

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 48px;
}

.gate { display: grid; place-items: center; height: 100vh; }
.gate-panel { border: 0px solid var(--line); padding: 24px; background: #fff; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}



.portfolio-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.caption {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 10;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 5;
  cursor: pointer;
  width: 48px;
  height: 48px;
  font-size: 24px;
  line-height: 1;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox.open { display: flex; }



button {
  cursor: pointer;
}

.hidden { display: none; }

@media (max-width: 800px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

.button {
  background-color: black;
  border: none;
  color: hotpink;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

input[type="password"] {
  font-size: 16px;
}

.kicker {
  background-color: hotpink;
  border: none;
  color: black;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  cursor: arrow;
}

.site-sub {
  background-color: hotpink;
  border: none;
  color: black;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  cursor: arrow;
}

.intro {
  background-color: ;
  border: none;
  color: black;
  padding: 0px 0px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  cursor: arrow;
}

.warning {
  background-color: ;
  border: none;
  color: hotpink;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 11px;
  cursor: arrow;
}

.lightbox {
  cursor: zoom-out;
}



/* CSS Document */

