body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    /* Bloquea el scroll horizontal pero permite un poquito vertical en celulares */
    overflow-x: hidden; 
    font-family: Georgia, serif;
    color: white;
}

/* FONDO DE CADA PAGINA */
.index {
    background-image: url("https://i.pinimg.com/736x/4a/12/cd/4a12cd77473666be4372653d0efd0d3b.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Esto hace que el fondo se quede congelado */
}

.fairytale {
    background-image: url("https://i.pinimg.com/736x/2d/a7/1a/2da71ae117d90e004cea941f7d9b96cd.jpg");
    background-size: cover;
}

.altar {
    background-image: url("https://i.pinimg.com/1200x/05/b4/d9/05b4d9a3dfc230989ab8569f57a05788.jpg");
    background-size: cover;
}

.archive {
    background-image: url("https://i.pinimg.com/736x/c7/fb/6a/c7fb6aab68cc101814c690b99cc4aad5.jpg");
    background-size: cover;
}

.shrine {
    background-image: url("https://i.pinimg.com/736x/fb/4b/04/fb4b04a79748f415d0692887e1ff6656.jpg");
    background-size: cover;
}

.titulo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

/* ARREGLO PARA QUE LOS TEXTOS SE VEAN BLANCOS Y ELEGANTES */
.item-menu a {
    color: white !important; /* El !important obliga a cambiar el 'black' del HTML */
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* EFECTO GLITTER / BRILLO AL PASAR EL MOUSE POR EL TEXTO */
.item-menu a:hover {
    color: #ffccff !important;
    text-shadow: 0 0 8px #ff99ff;
}

/* EFECTO HOVER PARA LAS IMÁGENES (CRECEN Y ALUMBRAN) */
.item-menu a img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.item-menu a:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #ffffff) !important;
}

.volver {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* ========================================== */
/* FAIRYTALE CSS                              */
/* ========================================== */

.contenedor {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    margin-top: 50px;
}

.wiskera {
    width: 33%; 
    text-align: center;
}

.hada {
    width: 33%;
    text-align: center;
}

.pensamientos {
    width: 33%; 
    margin-top: 120px; 
    text-align: center;
}

.pensamientos textarea {
    width: 90%;
    height: 150px;
    padding: 10px;
    font-family: cursive;
    background: #fdf6f9;
    border: 2px solid #d8aef5;
    border-radius: 10px;
}

/* COLOR DEL BOTÓN HOME EN FAIRYTALE */
.home-link {
    color: #111111; /* Tu color verde pastel místico */
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* EFECTO AL PASAR EL MOUSE POR EL HOME */
.home-link:hover {
    color: #509140; /* Cambia a rosa al pasar el mouse */
    text-shadow: 0 0 8px #ff99ff;
}