/* css/style.css */
body {
  font-family: "Courier New", monospace;
  background: #000;        /* Pitch black background */
  color: #24ff7e;          /* Neon green-teal text */
  margin: 0;
  padding: 0;
}

header, footer {
  background: #000;
  border-bottom: 2px solid #24ff7e;
  text-align: center;
  padding: 1em;
}

h1, h2, h3 {
  color: #24ff7e;
  text-shadow: 0 0 8px #24ff7e;
}

nav a {
  margin: 0 10px;
  color: #24ff7e;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 10px #24ff7e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  border: 2px solid #24ff7e;
  border-radius: 8px;
  box-shadow: 0 0 15px #24ff7e;
}

.btn {
  display: inline-block;
  background: transparent;
  color: #24ff7e;
  border: 2px solid #24ff7e;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  text-shadow: 0 0 8px #24ff7e;
}

.btn:hover {
  background: #24ff7e;
  color: #000;
  text-shadow: none;
  box-shadow: 0 0 10px #24ff7e, 0 0 20px #24ff7e;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  background: #000;
  padding: 20px;
  border: 2px solid #24ff7e;
  box-shadow: 0 0 15px #24ff7e;
}

form label {
  margin-bottom: 10px;
  color: #24ff7e;
}

form input, form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  background: #000;
  border: 1px solid #24ff7e;
  color: #24ff7e;
}

form input:focus, form textarea:focus {
  outline: none;
  box-shadow: 0 0 10px #24ff7e;
  
  ========================================================================================
  
/* Landing page container - centers content */
.landing-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* full viewport height */
  text-align: center;
}

/* Door container */
.door-container {
  position: relative;
  width: 200px;  /* total width of door area */
  height: 300px; /* door height */
  margin: 40px 0;
  perspective: 1000px;
}

/* Left and right doors */
.door {
  border: 2px solid #24ff7e;
  position: absolute;
  width: 50%;   /* must be set */
  height: 300px; /* must be set */
  background: #24ff7e; /* neon color */
  border: 2px solid #24ff7e;
  box-shadow: 0 0 20px #24ff7e;
  top: 0;
  transition: transform 1s ease-in-out;
}

/* Position left and right doors */
.left-door {
  left: 0;
  transform-origin: center left;
}

.right-door {
  left: 50%;
  transform-origin: center right;
}

/* Open animation */
.open-left {
  transform: rotateY(-90deg);
}

.open-right {
  transform: rotateY(90deg);
}

/* Center the enter button */
.btn.enter {
  margin-top: 20px;
}