/* ----- MAIN BODY ----- */
body {
  background-color: #000;
  background-image: url('images/yourbackground.png');
  background-size: cover;
  background-attachment: fixed;
  color: #d0fca2;
  font-family: "Trebuchet MS", sans-serif;
  margin: 0;
  padding: 0;
}

/* ----- LAYOUT ----- */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
}

/* MAIN CONTENT */
.container {
  width: 700px;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  border: 2px solid #00ff66;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.3);
}

/* SIDEBAR (for notes, photos, etc.) */
.sidebar {
  width: 220px;
  background: rgba(10, 20, 10, 0.7);
  border: 2px solid #005522;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 10px #003300 inset;
}

.sidebar img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #00aa44;
  margin-bottom: 10px;
}

.sidebar textarea {
  width: 100%;
  height: 100px;
  background: #001800;
  color: #aaffaa;
  border: 1px solid #00ff66;
  resize: none;
  font-family: "Courier New", monospace;
  padding: 8px;
}

/* ----- HEADER ----- */
header {
  text-align: center;
  border-bottom: 2px solid #00ff66;
  padding-bottom: 10px;
}

header h1 {
  font-size: 30px;
  color: #aaffaa;
  text-shadow: 0 0 10px #00ff66, 0 0 5px #00cc44;
}

/* ----- NAV BAR ----- */
nav {
  text-align: center;
  margin: 20px 0;
}

nav a {
  color: #aaffaa;
  text-decoration: none;
  background: #003300;
  border: 1px solid #00ff66;
  padding: 5px 10px;
  border-radius: 4px;
  margin: 0 8px;
  font-weight: bold;
  box-shadow: 0 0 5px #00aa44 inset;
}

nav a:hover {
  background: #00ff66;
  color: #000;
}

/* ----- CONTENT ----- */
h2 {
  color: #00ff99;
  border-bottom: 1px solid #007744;
  padding-bottom: 4px;
}

p, li {
  color: #ccffcc;
  line-height: 1.5em;
}

img {
  max-width: 100%;
  border-radius: 5px;
  border: 1px solid #00ff66;
  margin: 10px 0;
}

/* ----- FOOTER ----- */
footer {
  text-align: center;
  color: #77cc88;
  font-size: 12px;
  margin-top: 30px;
  border-top: 1px solid #00ff66;
  padding-top: 8px;
}
/* ----- SIDEBAR GLOW ANIMATION ----- */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.3);
    border-color: #00ff66;
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 100, 0.6);
    border-color: #66ff99;
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.3);
    border-color: #00ff66;
  }
}

.sidebar {
  background: rgba(10, 20, 10, 0.7); /* Slightly more transparent */
  animation: pulseGlow 3s infinite ease-in-out;
}

