/* =======================================
   ESTILOS GENERALES (Afecta a todo el sitio)
   ======================================= */

body {
  /* Imagen de fondo (Asegúrate de que tu archivo se llame exactamente así) */
  background-image: url('fondo-neocities.jpg'); 
  background-repeat: no-repeat;               
  background-position: center top;                  
  background-size: cover;                       
  background-attachment: fixed;  
  min-height: 100vh;

  /* Estilos de texto */
  color: #e0e0e0;                           
  font-family: 'fantasy', sans-serif, serif; 
  line-height: 1.6;                         
  
  /* Contenedor centrado para que nada se desarme */
  max-width: 650px;                         
  margin: 0 auto;                           
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Títulos */
h1 {
  font-size: 2.2rem;
  color: #000000; /* Negro (Cámbialo a #ffffff si tu fondo es muy oscuro y no se lee) */
  margin-bottom: 5px;
}

.subtitle {
  font-style: italic;
  color: #888888;                           
  margin-top: 0;
  margin-bottom: 40px;
}

h2 {
  font-size: 1.4rem;
  color: #ffb86c;                           
  margin-bottom: 15px;
}

/* Listas (Sección Actualmente) */
ul {
  list-style-type: '→ ';                    
  padding-left: 20px;
  margin-bottom: 30px;
}

li {
  margin-bottom: 12px;
  color: #d0d0d0;
}

strong {
  color: #ff79c6;                           
}

/* =======================================
   ENLACES Y MENÚS
   ======================================= */

a {
  color: #ffb86c;
  text-decoration: none;                    
  font-weight: bold;
}

a:hover {
  color: #ff79c6;
  text-decoration: underline;               
}

.main-nav {
  margin-top: 40px; 
  border-top: 1px dashed #444444; 
  padding-top: 20px;
}

/* =======================================
   ENTRADAS DEL DIARIO
   ======================================= */

.post {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #333333;        
}

.post h3 {
  color: #ff79c6;
  font-size: 1.1rem;
  margin-bottom: 8px;
}