/* ===== Reset and General ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: #e4e4e4;
  color: #2a2a2a;
  font-family: 'Charter', 'EB Garamond', serif;
  font-size: 20px;
  line-height: 1.6;
  position: relative;
}

/* ===== Canvas de fondo ===== */
#stage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== Contenedor principal con z-index alto ===== */
.container, .content, main {
  position: relative;
  z-index: 10;
  max-width: 750px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: justify;
  background-color: rgba(228, 228, 228, 0.98);
}

/* ===== Header and Navigation ===== */
header.main-header {
  position: relative;
  z-index: 100;
  text-align: center;
  margin-bottom: 2em;
  background-color: rgba(228, 228, 228, 0.98);
  padding: 20px;
}

.main-title {
  font-family: 'EB Garamond', serif;
  font-weight: bold;
  font-size: 2.2em;
  margin: 0.5em auto;
  line-height: 1.3;
  max-width: 90%;
  color: #1a1a1a;
}

.main-title a {
  text-decoration: none;
  color: #1a1a1a;
}

.main-menu {
  font-family: 'EB Garamond', serif;
  font-size: 1.2em;
  font-weight: normal;
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.main-menu a {
  text-decoration: none;
  color: #3a3a3a;
  margin: 0 0.3em;
  font-weight: bold;
  display: inline-block;
}

.main-menu a:hover {
  text-decoration: underline;
  color: #1a1a1a;
}

/* ===== Títulos y texto ===== */
h1 {
  font-family: 'EB Garamond', serif;
  font-weight: bold;
  text-align: center;
  font-size: 3em;
  margin: 0.5em auto;
  color: #1a1a1a;
}

h2, h3 {
  font-family: 'EB Garamond', serif;
  font-weight: bold;
  text-align: center;
  color: #1a1a1a;
}

h2 {
  font-size: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
  color: #3a3a3a;
}

a {
  color: #4a4a4a;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
  color: #1a1a1a;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  margin-top: 60px;
  padding: 20px;
  font-size: 0.8em;
  color: #5a5a5a;
}

/* ===== Exlibris ===== */
.exlibris {
  font-family: 'EB Garamond', serif;
  font-size: 1.3em;
  text-align: center;
  max-width: 700px;
  margin: 60px auto 40px auto;
  padding: 10px 20px;
  border-top: 1px dashed #999;
  border-bottom: 1px dashed #999;
  line-height: 1.6;
  color: #3a3a3a;
}

.exlibris-frase {
  display: inline;
  font-weight: 400;
}

.exlibris-latin {
  font-family: 'EB Garamond', serif;
  font-size: 1.1em;
  font-style: italic;
  letter-spacing: 0.5px;
  color: #2a2a2a;
  margin-top: 5px;
  display: block;
}

.ornamento {
  font-size: 1.5em;
  color: #888;
  margin: 20px 0;
  text-align: center;
}

/* ===== Unicornios - DETRÁS del contenido ===== */
.unicorn {
  position: fixed;
  width: 80px;
  user-select: none;
  cursor: grab;
  z-index: 5;
  transition: transform 0.1s ease-out;
  will-change: transform, top, left;
}

.unicorn:active {
  cursor: grabbing;
  z-index: 15;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
  
  .main-title {
    font-size: 1.6em;
    white-space: normal;
    line-height: 1.3;
  }
  
  .main-menu {
    font-size: 1em;
    line-height: 2;
  }
  
  .main-menu a {
    display: inline-block;
    margin: 5px 8px;
  }
  
  .container, .content, main {
    padding: 0 15px;
    margin: 20px auto;
  }
  
  h1 {
    font-size: 2em;
  }
  
  h2 {
    font-size: 1.3em;
  }
  
  .exlibris {
    font-size: 1.1em;
    padding: 10px 15px;
  }
  
  .unicorn {
    width: 50px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  .main-title {
    font-size: 1.3em;
    line-height: 1.3;
  }
  
  .main-menu {
    font-size: 0.9em;
  }
  
  .unicorn {
    width: 40px;
  }
}