/*
Theme Name: Mi Tema 
Author: Calixto Negron
Description: Tema minimalista con estilo editorial.
Version: 1.0
*/

/* 1. Reset y Estructura Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.8;
    max-width: 680px;          
    margin: 80px auto;
    padding: 0 20px;
}

/* 2. Jerarquía Tipográfica */
h1, h2, h3 {
    font-weight: 400;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* 3. Estilo de enlaces */
a {
    text-decoration: none;
    border-bottom: 1px solid; 
    transition: 0.3s;
}

a:hover {
    color: #000; 
    border-bottom-color: #000;
}

/* 4. Estilo del artículo */
article {
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0dcd3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}
/* Borrar cualquier herencia de estilos previos */
#menu-horizontal, 
#menu-horizontal * {
    all: unset; /* Elimina cualquier estilo heredado */
    display: flex;
    flex-direction: row;
}

#menu-horizontal {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    list-style: none !important;
    margin: 20px 0 !important;
}

#menu-horizontal li a {
    display: block !important;
    color: #333;
    text-decoration: none !important;
    border-bottom: none !important;
}
footer p {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
