
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #c2bf9e;
}

/* fuentes */
@font-face {
    font-family: "Safira";
    src: url("../fonts/Safira March Personal Use Only.ttf");
}

@font-face {
    font-family: "Lulo";
    src: url("../fonts/Lulo-Clean-W01-One-Bold.ttf");
}

.permanent-marker-regular {
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    font-style: normal;
}

/*navbar*/
.nav-logo{
    color:#07517f;
}
.navbar{
    background: rgba(255, 255, 255, 0.242);
}

.nav-logo:hover{
    color:#fbf31b;
}

.btn-custom {
    background-color: #2a3d74;
    color: white;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #2a3d74;
    color: white;
}

/* fondo del overlay */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.1);
}

/* fondo del modal */
.modal-content {
    background-color:  rgba(42, 61, 116,0.8);
    color:white;
}

.nav-tabs .nav-link {
    color: white !important;
    background-color: transparent !important; 
    border-color: transparent !important; 
}

.nav-tabs .nav-link.active {
    color: #333 !important; 
    background-color: white !important; 
    border-color: #dee2e6 #dee2e6 white !important; 
}
/* grid */
.pinterest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2em;
}

.item-container {
    position: relative;
    padding-bottom: 35px; 
}

.item {
    position: relative;
    aspect-ratio: 1 / 1.25;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 15px solid #f5f5f5;
    border-bottom-width: 35px;
    background-color: #f8f8f8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* texto sobre el borde inferior */
.texto-sobre-borde {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    color: #2a3d74;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 3;
    white-space: nowrap;
    border: 1px solid #e0e0e0;
}
/*el background-position lo utilizó para poner la imagen en la posicion que quiero  */
.item1{
    background-image: url('../img/clotilde_con_traje_gris/clotilde_con_traje_gris.jpg');
    background-position: 50% 25%;
}
.item2{
    background-image: url('../img/Joaquín_Sorolla_y_Bastida_-_Capturing_the_moment_-_Google_Art_Project.jpg');
}
/*el filter se utiliza para poner en blanco y negro las imagenes que no puedes buscar*/
.item3{
    filter: grayscale(100%) contrast(110%);
    background-image: url('../img/mis_hijos.jpg');
}
.item4{
    filter: grayscale(100%) contrast(110%);
    background-image: url('../img/clotilde_con_traje_gris/cosiendo_la_vela.jpg');
}
.item5{
    filter: grayscale(100%) contrast(110%);
    background-image: url('../img/paris_point.jpg');
}
.item6{
    filter: grayscale(100%) contrast(110%);
    background-image: url('../img/pescadora.jpg');
}
.item7{
    filter: grayscale(100%) contrast(110%);
    background-image: url('../img/maria.jpg');
}
.item8{
    filter: grayscale(100%) contrast(110%);
    background-image: url('../img/jardines.jpg');
}
.item9{
    filter: grayscale(100%) contrast(110%);
    background-image: url('../img/orilla.jpg');
}