/*
 * NSG.VC Privacy Page
 * Black background, white text, minimal styling
 */

/* === Font Loading === */
@font-face {
  font-family: 'Courier Prime';
  src: url("/fonts/Courier_Prime,IBM_Plex_Mono,IBM_Plex_Sans,Noto_Sans_JP,Noto_Serif/Courier_Prime/CourierPrime-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === Base === */
html {
  background: rgb(0, 0, 0);
}

body {
  /* Proportional width using ch units */
  max-width: 65ch;
  width: min(65ch, 100vw);
  min-width: min(20rem, 100vw);
  margin: 0 auto;
  box-sizing: border-box;

  /* Fluid spacing */
  padding: clamp(4rem, 3rem + 5vw, 8rem)
           clamp(2rem, 1.5rem + 1vw, 2rem)
           1rem
           clamp(2rem, 1.5rem + 1vw, 2rem);

  /* Fluid typography */
  font-size: clamp(1.125rem, 0.675rem + 1.08vw, 1.575rem);
  line-height: 1.8;

  /* Typography */
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-weight: 400;

  /* White text on black background */
  background: inherit;
  color: rgb(255, 255, 255);
}

/* === Typography === */
h1 {
  font-size: 1.15em;
  font-weight: 700;
  margin: 0 0 clamp(1.5rem, 1.2rem + 1vw, 2.5rem) 0;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}

p {
  margin: 0 0 clamp(1.5rem, 1.2rem + 1vw, 2.5rem) 0;
  color: rgb(255, 255, 255);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: rgb(255, 255, 255);
}

/* === Links === */
a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

.email-link {
  opacity: 0.8;
}

.email-link:hover {
  opacity: 1;
}

/* === Footer === */
footer {
  margin-top: clamp(3rem, 2.5rem + 2vw, 5rem);
  margin-bottom: clamp(2rem, 1.5rem + 1vw, 3rem);
  opacity: 0.6;
  font-size: 0.9em;
}

footer p {
  margin-bottom: 0.5rem;
}

.home-link {
  opacity: 0.8;
  text-decoration: none;
}

.home-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Easter egg temporarily disabled
.vault-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vault-modal.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.vault-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  background-color: #000;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .vault-modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
  }
}

.vault-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  z-index: 10000;
}

.vault-modal-close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .vault-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 2.5rem;
  }
}

.vault-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

@media (max-width: 768px) {
  .vault-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
  }
}

.vault-video-container iframe,
.vault-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vault-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Courier Prime', monospace;
}
*/
