/* Estilos generales de la sección */
#signs {
    padding: 0; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E7DACB; /* Beige suave */
    backdrop-filter: blur(5px);
}

/* Imágenes decorativas arriba y abajo */
.full-width-image {
    width: 25%;
    height: 200px;
    transform: rotate(180deg);
    display: block;
    margin-bottom: -100px;
}

/* Contenedor del libro de firmas */
.signs {
    max-width: 800px;
    width: 90%;
    background-color: #BCA578; /* Beige cálido */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin: 20px 0;
}

/* Título principal */
.signtext {
    font-size: 50px;
    margin-top: 0;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
    font-family: "Dancing Script", serif;
}

/* Sección de comentarios */
#commentsSection {
    margin-top: 20px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Estilos de cada comentario */
.comment {
    background-color: #f3f1eb; /* Beige muy claro */
    border-left: 5px solid #b6a99f; /* Beige grisáceo */
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Animación al pasar el mouse */
.comment:hover {
    transform: translateY(-3px);
}

/* Texto del comentario */
.comment-text {
    font-size: 18px;
    color: #141414; /* Beige oscuro */
}

/* Autor del comentario */
.comment-author {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    color: #99733d; /* Beige medio oscuro */
    text-align: right;
}

/* Personalización de scrollbar en la sección de comentarios */
#commentsSection::-webkit-scrollbar {
    width: 6px;
}

#commentsSection::-webkit-scrollbar-thumb {
    background: #4e4b44; /* Beige oscuro */
    border-radius: 5px;
}

#commentsSection::-webkit-scrollbar-track {
    background: #f3f1eb; /* Beige muy claro */
}

@media (max-width: 600px) {
    /* Ajuste del contenedor principal */
    .signs {
        max-width: 95%;
        padding: 20px;
    }

    /* Título principal */
    .signtext {
        font-size: 35px;
        text-shadow: 0 0 5px #ffffff;
    }

    /* Imágenes decorativas */
    .full-width-image {
        width: 55%;
        height: 55%;
        margin-bottom: -80px;
    }

    /* Ajuste de la sección de comentarios */
    #commentsSection {
        max-height: 200px;
        padding-right: 5px;
    }

    /* Ajuste de cada comentario */
    .comment {
        padding: 12px;
        min-height: 60px;
    }

    /* Texto del comentario */
    .comment-text {
        font-size: 16px;
    }

    /* Autor del comentario */
    .comment-author {
        font-size: 14px;
    }

    /* Ajuste de la barra de desplazamiento */
    #commentsSection::-webkit-scrollbar {
        width: 4px;
    }
}
