/*
Theme Name:   twentytwentyfive-child
Description:  Tema hijo para Postmarketingweb
Author:       Alberto O 
Author URL:   https://postmediamarketing.com/
Template:     twentytwentyfive
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  twentytwentyfive-child
*/

/* Añade aquí tus estilos personalizados */


/* style.css del tema hijo */
/* Outfit para textos generales */
body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400; /* Peso normal de la variable font */

}

/* New Black Typeface para títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'New Black Typeface', serif;
    font-weight: 700; /* Usa la variante Bold */
}

/* Ejemplo de uso para otras variantes */
.ultra-light-text {
    font-family: 'New Black Typeface', serif;
    font-weight: 200; /* UltraLight */
}












/* Estilos adicionales para mensajes de formulario */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s ease;
}

.success-message {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid #27ae60;
}

.error-message {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}