/**
 * Estilos para el logo
 */

/* Contenedor del logo */
.wp-block-site-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    text-align: center;
    gap: 2px; /* Espacio entre el logo y el subtítulo */
}

/* Enlace del logo */
.wp-block-site-logo .custom-logo-link {
    display: block;
    max-width: 100%;
    transition: opacity 0.3s ease;
}

.wp-block-site-logo .custom-logo-link:hover {
    opacity: 0.8;
}

/* Imagen del logo */
.wp-block-site-logo .custom-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

/* Título del sitio cuando no hay logo */
.wp-block-site-logo .site-title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.wp-block-site-logo .site-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wp-block-site-logo .site-title a:hover {
    color: #f43f5e; /* Color rosa */
}

/* Subtítulo del sitio */
.wp-block-site-logo .site-subtitle {
    font-size: 10px;
    font-weight: normal;
    margin: 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
    color: #818080;
}

.wp-block-site-logo .site-subtitle a {
    color: #f43f5e; /* Color rosa */
    text-decoration: none;
    transition: color 0.3s ease;
}

.wp-block-site-logo .site-subtitle a:hover {
    color: #e11d48; /* Color rosa más oscuro */
}

/* Ajustes cuando hay logo */
.wp-block-site-logo .custom-logo-link + .site-subtitle {
    margin-top: 5px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .wp-block-site-logo .custom-logo {
        max-height: 50px;
    }

    .wp-block-site-logo .site-title {
        font-size: 20px;
    }

    .wp-block-site-logo .site-subtitle {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .wp-block-site-logo .custom-logo {
        max-height: 40px;
    }

    .wp-block-site-logo .site-title {
        font-size: 18px;
    }

    .wp-block-site-logo .site-subtitle {
        font-size: 10px;
    }
}
