/* Layout & Base Styles */
html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  padding: 40px 20px;
  color: #e8eee8; 
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;

  /* --- Polka Dot Pattern --- */
  background-color: #2b332b; 
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.2px, transparent 0);
  background-size: 20px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Container */
.container {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Header - No box, just a bold floating element */
h1 {
  flex-shrink: 0;
  color: #ffffff;
  text-align: left; /* Shifted to left for modern Swiss look */
  text-transform: uppercase;
  letter-spacing: 8px;
  padding: 0 0 20px 0;
  margin: 0 0 40px 0;
  border-bottom: 4px solid #4a7c4a; /* Simple underline accent */
  font-size: 2.5rem;
}

/* Main Area */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Subheadings - Flat bar style */
h2 {
  flex-shrink: 0;
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  padding: 5px 0;
}

/* Navigation Menu - Flat list with "Light Up" effect */
ul {
  flex-shrink: 0;
  list-style-type: none;
  padding: 0;
  margin: 0 0 40px 0;
}

li {
  margin-bottom: 2px;
}

li a {
  display: block;
  padding: 15px 20px;
  color: #a3cfa3;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03); /* Barely visible base */
  transition: all 0.2s ease;
}

/* --- THE LIGHT UP EFFECT --- */
li a:hover {
  background-color: #ffffff; /* Turns solid white */
  color: #1a2e1a;            /* Dark text for maximum contrast */
  padding-left: 30px;
}

/* Content Text - No box, just clean typography */
p {
  margin: 0 0 20px 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5cb;
  overflow-y: auto; /* Only scrolls if text exceeds screen */
}

/* Links */
a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #4a7c4a;
}

a:hover {
  background: #4a7c4a;
}

/* Image - Integrated with text */
img {
  vertical-align: middle;
  margin-right: 10px;
  filter: sepia(0.2) contrast(1.1); /* Subtle vintage tone */
  display: inline-block;
  max-height: 1.2em;
  width: auto;
}