@font-face {
    font-family: "bellarose"; /* nombre que vos elijas */
    src: url("bellarose.ttf") format("truetype");
}

/* Aplicar la fuente solo al menú (nav bar) */
nav li {
    font-family: "bellarose", serif; 
}
.key {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 50px; /* Ajusta el tamaño según sea necesario */
}

/* Fondo negro y fuente general */
body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: serif;
    text-align: center;
        cursor: url("cursor.png"), auto;

}
.image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.fixed-cross-left {
    position: fixed;
    top: 65%;
    left: 170px;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
}

.fixed-cross-right {
    position: fixed;
    top: 65%;
    right: 170px;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
}


/* Para que el contenido central (gif + galería) esté centrado entre las cruces */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tamaño de las cruces */
.side-cross {
    width: 60px; /* ajusta según tu imagen */
    height: auto;
}
/* HEADER */
.logo {
    width: 300px;
    margin-top: 20px;
}

/* NAV */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

nav li {
    cursor: pointer;
    color: pink;
    font-size: 16px;
}

nav li:hover {
    text-decoration: underline;
}

/* DIVISOR */
.divisor img {
    margin: 20px auto;
    display: block;
    max-width: 400px;
}

/* GIF PRINCIPAL */
.gif-container img {
    max-width: 80%;
    margin-bottom: 30px;
}

.gallery {
    display: flex;
    flex-wrap: wrap; /* permite que las fotos pasen a otra fila */
    justify-content: center; /* centra las fotos en cada fila */
    gap: 15px;
    padding-bottom: 30px;
    max-width: 900px; /* ancho máximo total */
    margin: 0 auto; /* centra toda la galería */
}

.gallery img {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Ajustes para pantallas chicas */
@media (max-width: 768px) {
    .fixed-cross-left {
        left: 1px; /* más cerca del borde */
        width: 50px; /* más pequeñas */
    }

    .fixed-cross-right {
        right: 5px;
        width: 50px;
    }
}

/* Ajustes para pantallas muy pequeñas (celulares) */
@media (max-width: 480px) {
    .fixed-cross-left,
    .fixed-cross-right {
        top: 50%;
        bottom: 10px; /* mover abajo si querés que no molesten en el medio */
        transform: none;
    }
}
footer {
    background-color: black; /* mismo fondo que la página */
    color: pink; /* mismo color que el texto del menú */
    font-family: "bellarose", serif; 
    font-size: 14px;
    text-align: center;
    padding: 15px 0;
   
}

footer p {
    margin: 0;
}

.gallery-item {
    position: relative;
    display: inline-block;
}

.gallery-item img {
    display: block;
    max-width: 250px;
    height: auto;
}

.gallery-item .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; /* tamaño del PNG */
    height: 150px;
    background: url("marco.png") no-repeat center/contain;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    font-family: "bellarose", serif;
    font-size: 15px; /* más pequeño si querés */
    line-height: 1.4;
    padding: 25px 20px; /* ↑ más padding para separar el texto del borde */
    box-sizing: border-box; /* para que el padding no agrande el marco */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Mostrar en hover */
.gallery-item:hover .info {
    opacity: 1;
}

* {
    cursor: url("cursor3.png"), auto !important; 