@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* #region Estilo de los enlaces de la barra de navegación */
.nav-link {
    color: rgb(0, 0, 0) !important;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #E5007D; /* Color rosado al pasar el mouse */
    text-decoration: none;
}

/* Estilo del botón "Pedidos Online" */
.navbar-nav .btn {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Ajuste del espaciado entre los enlaces */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: bold;
    margin-right: 20px; /* Espaciado entre los elementos */
}


/* Añadir borde negro a las tarjetas */
.features-section .card {
    margin-bottom: 30px;
    border: 2px solid black; /* Borde negro de 2 píxeles */
    border-radius: 15px; /* Mantener esquinas redondeadas */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mantener el efecto hover */
.features-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Añadir sombra */
}

/* #endregion */

/* ===== Fondo premium: Nuestra Historia ===== */
.mocha-nosotros-wrap {
    display: flow-root;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(229, 0, 125, 0.18) 0%, transparent 55%),
        linear-gradient(160deg, #1F0D18 0%, #3A1A2E 48%, #522338 100%);
    color: #F8F2F5;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}

.nuestra-historia-titulo {
    font-family: 'Anton', sans-serif;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    line-height: 1.15;
}

.nuestra-historia-titulo::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 0.85rem;
    background: linear-gradient(90deg, #F4A9C8, #E5007D);
    border-radius: 2px;
}

.nuestra-historia-texto {
    font-family: 'Playwrite GB S', serif;
    color: #F4D4E4;
    line-height: 1.65;
}

.nuestra-historia-texto span {
    color: #F4A9C8;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .mocha-nosotros-wrap .col-md-8 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .nuestra-historia-titulo {
        text-align: center;
    }

    .nuestra-historia-titulo::after {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .mocha-nosotros-wrap {
        padding-top: 2.25rem;
        padding-bottom: 2.75rem;
    }

    .nuestra-historia-titulo {
        font-size: 1.75rem;
    }

    .nuestra-historia-texto {
        font-size: 0.95rem;
        text-align: justify;
    }
}

/* #region footer */
.social-link {
    margin: 0 8px;
    color: #333;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff; /* Cambia a un color de hover */
}

footer p {
    font-size: 20px;
    color: #000000;
}

footer svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
/* O solo a un elemento específico */
.footer-text {
    font-family: 'Itim', cursive;
}
/* #endregion */
