/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway Thin', sans-serif;
    background-color: #fff;
}

.highlight-firma{
    color:#c2b35e;
}

/* Estilos para el botón del menú hamburguesa */
#hamburguer-btn {
    display: none;
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 30px;
    cursor: pointer;
    background-color: #fafafa;
    border: none;
    color: #232321;
}

#hamburguer-btn:hover {
    color: #efcc03;
}

/* BARRA DE NAVEGACIÓN PÁG. INTERIORES */
#navbar-interior a.active {
    color: #efcc03;
    /* Cambia esto por el color que prefieras */
    font-weight: bold;
}

#navbar-interior {
    position: fixed;
    font-family: 'Raleway Regular', sans-serif;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fafafa;
    text-align: right;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap;
    height: 70px;
    /* Agregamos un relleno izquierdo y derecho para espacio alrededor del contenido */
}

#navbar-interior h1 {
    color: #232321;
    font-family: 'Raleway Medium', sans-serif;
    font-size: larger;
    margin-right: auto;
    margin-left: 25px;
    /* Esto empujará "David Muñoz" hacia la izquierda */
}


#navbar-interior a {
    color: #232321;
    margin: 16px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

#navbar-interior a:hover {
    color: #efcc03;
}

/* REVISAR ESTE CÓDIGO */

header {
    background-color: #333;
    /* Color de fondo del menú */
    color: #fff;
    /* Color del texto del menú */
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}


/* ÁREA DONDE SE CARGA EL POST */

main {
    max-width: 800px;
    margin: 60px auto 20px;
    padding: 20px;
    background-color: #fff;
}

h1 {
    font-family: 'Raleway SemiBold', sans-serif;
    font-size: 42px;
    color: #232321;
}

h2 {
    font-family: 'Raleway Medium', sans-serif;
    font-size: 24px;
    color: #232321;
}

h3 {
    font-family: 'Raleway Medium', sans-serif;
    font-size: 24px;
    color: #232321;
}

p {

    font-family: 'Raleway Regular', sans-serif;
    font-size: 18px;
    color: #727272;
    margin-bottom: 40px;
    line-height: 28px;
}

ul {
    font-family: 'Raleway Regular', sans-serif;
    padding-left: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 28px;

}

li {
    font-family: 'Raleway Regular', sans-serif;
    font-size: 18px;
    color: #727272;
    margin-bottom: 40px;
    padding-left: 10px;
    padding-right: 90px;
}

.full-post img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: center;
}

.full-post a {
    color: #232321;
    text-decoration: underline;
}


/* INFORMACIÓN SECUNDARIA DEL POST */

.info-container {
    /*display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;*/
    max-width: 800px;
    padding: 30px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.info-container div {
    overflow: hidden;
    text-overflow: ellipsis;
}

.firma-post {
    width: 100%;
    background-color: #1f1f1f;
}

.author {
    width: 100%;
    font-family: 'Raleway Regular', sans-serif;
    margin-bottom: 20px;
    font-size: 18px;
    color: #d7d7d7;
}

.profile-description {
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Raleway Regular', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 18px;
    color: #828282;
}

.profile-description p {
    font-family: 'Raleway Regular', sans-serif;
    font-size: 12px;
    color: #686868;
}

strong{
    font-family:'Raleway Semibold', sans-serif ;
    color: #232321;
}

.imagen-perfil img {
    border-radius: 50%;
    /* Aplica una máscara circular a la imagen */
    max-width: 6vh;
    /* Ajusta el tamaño de la imagen */
    margin-bottom: 16px;
    /* Espacio entre la imagen y el título */
}

.date {
    width: 50%;
    font-family: 'Raleway Regular', sans-serif;
    font-size: 24px;
    color: #686868;
}


hr {
    color: #c2c2c2;
    height: 1px;
    border: none;
}

/* FOOTER IMAGEN POST */

.footer-image-post {
    justify-content: space-between;
    border-top: 1px solid #ccc;
    padding: 10px;
    font-family: 'Raleway Regular', sans-serif;
    font-size: 12px;
}

.container-info-post{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.date {
    margin-left: auto;
    text-align: end;
    font-family: 'Raleway Regular', sans-serif;
    font-size: 12px;
}

.category,
.subCategory,
.category-separador {
    margin-left: 10px;
}

/* FOOTER */

.footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}

.footer-social-media {
    margin-bottom: 10px;
}

.footer-social-media a {
    color: #ccc;
    margin: 0 10px;
    font-size: 24px;
    /* Tamaño de los íconos */
    transition: color 0.3s ease;
}

.footer-social-media a:hover {
    color: #fff;
}

.footer-company-name {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.footer-copy {
    font-family: 'Raleway Regular', sans-serif;
    font-size: 16px;
    color: #686868;
}

.footer-social-media object {
    width: 30px;
    height: auto;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    margin: 10px
}

.footer-social-media object:hover {
    opacity: 0.5;
    /* Blanco con 50% de opacidad al pasar el ratón */
}

.navbar-links.open {
    left: 0;
    /* Se muestra cuando se activa */
}

/* Añade estilos responsivos si es necesario */
@media (max-width: 640px) {
    .footer-social-media a {
        margin: 0 5px;
        font-size: 20px;
    }

    #hamburguer-btn {
        display: block;
    }

    .navbar-links {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        /* Inicialmente oculto */
        background-color: #fafafa;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s;
    }

    .navbar-links.open {
        left: 0;
        /* Se muestra cuando se activa */
    }

}