/* ESTILOS GENERALES */
body {
    background-image: url(imagenes/1_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    font-family: 'Rubik', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column; /* Asegura que el contenido se apile de forma vertical */
}

.titulo-container {
    position: absolute;
    top: 11%;
    left: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; 
}

.titulo-container a {
    display: inline-block;
    position: relative; /* Asegura que respete el z-index */
    z-index: 2; /* Hace que el enlace esté por encima de la imagen */
}

/* IMAGEN DE LAS MANZANAS */
#tres_manzanas {
    position: relative;
    width: 95px;
    height: 36%;
    top: 5%;
    z-index: 1; /* Mantiene la imagen por debajo del enlace */
}

/* TEXTO DEL TÍTULO */
#agus-fuga-titulo {
    font-size: 1.4em;
    color: rgb(77, 77, 78);
    position: relative;
    margin-top: -10px;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: underline;
}


.contenedor-principal {
    position: relative;
    width: 100%;
    height: 100vh;
}

.menu-circular {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-circular a {
    position: absolute;
}
.menu-circular a:nth-child(1) { transform: translate(0px, -210px); }
.menu-circular a:nth-child(2) { transform: translate(180px, -120px); }
.menu-circular a:nth-child(3) { transform: translate(180px, 120px); }
.menu-circular a:nth-child(4) { transform: translate(0px, 210px); }
.menu-circular a:nth-child(5) { transform: translate(-180px, 120px); }
.menu-circular a:nth-child(6) { transform: translate(-180px, -120px); }

.menu-circular img {
    width: 110px;
    height: auto;
    transition: transform 0.3s ease;
}

.menu-circular a:hover img {
    transform: scale(1.2);
}

#conejitos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30vw;
    max-width: 300px;
    z-index: 2;
    transition: opacity 1.5s ease-in-out;
    opacity: 0; /* si querés que aparezca con fade */
}


#titulo-hover {
    position: absolute;
    top: 11%; /* Lo coloca a la mitad de la pantalla */
    left: 50%; /* Centrado horizontalmente */
    transform: translate(-50%, -50%); /* Ajuste fino para centrar */
    font-size: 1em;
    font-weight: bold;
    color: rgb(87, 87, 87); 
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    opacity: 0; /* Oculto por defecto */
    transition: opacity 0.3s ease-in-out; /* Suaviza la aparición */
    pointer-events: none; /* Evita que interfiera con otros elementos */
}


/* POSICIÓN AJUSTADA (MÁS SEPARADOS) */
.menu-circular a:nth-child(1) { transform: translate(0px, -210px); }  /* Mariposa */
.menu-circular a:nth-child(2) { transform: translate(180px, -120px); } /* Caballo */
.menu-circular a:nth-child(3) { transform: translate(180px, 120px); }  /* Corazón enrulado */
.menu-circular a:nth-child(4) { transform: translate(0px, 210px); }   /* Reja */
.menu-circular a:nth-child(5) { transform: translate(-180px, 120px); } /* Manzanas */
.menu-circular a:nth-child(6) { transform: translate(-180px, -120px); } /* Corazón cuadrillé */

/* MEDIA QUERY PARA MÓVILES */
@media (max-width: 768px) {
    .menu-circular {
        width: 350px;
        height: 350px;
    }

    .menu-circular img {
        width: 90px;
    }

    .menu-circular a:nth-child(1) { transform: translate(0px, -150px); }
    .menu-circular a:nth-child(2) { transform: translate(120px, -90px); }
    .menu-circular a:nth-child(3) { transform: translate(120px, 90px); }
    .menu-circular a:nth-child(4) { transform: translate(0px, 150px); }
    .menu-circular a:nth-child(5) { transform: translate(-120px, 90px); }
    .menu-circular a:nth-child(6) { transform: translate(-120px, -90px); }

    #conejitos {
        width: 45vw;
        max-width: 220px;
    }
}


