:root {
  --bg: #fff;
  --text: #111;
  --accent: #ccc;
  --font: 'Roboto Mono', monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
/**/
text-shadow: .2px .3px 1px red, -.3px -.2px 5px blue; .2px -.2px 5px green;
}

body.dark {
  --bg: #111;
  --text: #f5f5f5;
  --accent: #444;
  background: var(--bg);
  color: var(--text);
}

body.dark .burger {
  color: #fff;
}

.menu a,
.menu-info-link {
  cursor: default;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  height: 60px;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
text-shadow: .02px .03px .33px red, -.03px -.02px 1px blue; .02px -.02px 1px green;
}

.burger {
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 700;
  font-family: var(--font);
  position: relative;
  z-index: 1003; /* must be higher than .menu */
text-shadow: .02px .03px .33px red, -.03px -.02px 1px blue; .02px -.02px 1px green;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: transparent; /* background: red - temporary debug color */
  text-shadow: 2px 3px 5px red, -3px -2px 4.5px blue; 2px -2px 5px green;

}

.menu.show {
  opacity: 1;
  pointer-events: auto;
}


.menu a {
  display: block;
  margin: 0.75rem 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  text-transform: lowercase;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.menu a:hover {
  opacity: 0.90;
}

.menu-title {
  font-size: 1.1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--text);
  opacity: 1;
}


.menu-info-link {
	  
  margin-top: 4rem;
  padding-top: 1.75rem;
  font-size: 1rem;
  font-weight: 100;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.menu-info-link:hover {
  opacity: 1;
}

.menu a.menu-info-link {
  text-transform: uppercase;
font-weight: 300;
 font-size: 1.2rem;
letter-spacing: 0.1em;
}


main {
  padding: 5rem 1.5rem 2rem; /* Adds horizontal space */
  margin: 0 auto;
  max-width: 1024px; /* Constrains line width */
}



h2 {
  margin-top: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}

.gallery {
  display: block;
  margin: 0;
  padding: 0;
}

.gallery img {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  border: none;
}


/* Responsive Vimeo */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1024px;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1024px;
  height: 100%;
  border: none;
}

/* Toggle Button */
#modeToggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s ease, border 0.3s ease;
  background: #000; /* default is black (light mode) */
}



figure {
  margin: 0 0 2rem;
}

figcaption {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.75;
  margin-top: 0.25rem;
}



.coming-soon {
  font-style: italic;
  color: var(--text);
  opacity: 0.5;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}


@media (max-width: 768px) {
  .gallery img {
    padding: 0 1rem;
  }

  .video-wrapper iframe {
    width: calc(100vw - 2rem);
    left: 1rem;
  }
}


section {
  margin: 4rem 0;
  border-top: 1px solid var(--accent);
  padding-top: 2rem;
  transition: background 0.3s ease;
  scroll-margin-top: 80px;
}



@media (min-width: 768px) {
  header {
    position: sticky;
    top: 0;
  }
}


@media (min-width: 1024px) {
  main {
    max-width: 1024px;
  }
}

@media (max-width: 1023px) {
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}



.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 0px;
  transition: transform 0.3s ease;
}

body.menu-open #page-content {
  filter: blur(8px);
  transition: filter 0.5s ease;
}


body.menu-open {
  overflow: hidden;
}


.gallery img,
.video-wrapper iframe {
  max-width: 100%;
  height: auto;
}


/* --- 1. Make mobile menu scrollable --- */
.menu {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2rem 1rem;
}


/* --- 3. Adjust font sizes on phones --- */
@media (max-width: 768px) {
  body {
    font-size: 0.9rem;
  }

  .menu a {
    font-size: 1.1rem;
  }

  .menu-title {
    font-size: 1rem;
  }

  .menu-info-link {
    font-size: 0.9rem;
  }
}





