/*
Theme Name: Suites San Miguel Theme
Theme URI: https://suitessanmiguel.es
Author: Trae AI
Author URI: https://trae.ai
Description: Un tema personalizado para Suites San Miguel con Tailwind CSS.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: suites-san-miguel
*/

/* Reset básico */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* --- ACCESIBILIDAD --- */

/* Enlace para saltar al contenido (Skip Link) */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 0;
    background: #0f766e; /* teal-700 */
    color: white;
    padding: 1rem;
    z-index: 9999;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #fcd34d; /* yellow-300 for visibility */
}

/* Clase para lectores de pantalla (Screen Reader Text) */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Foco visible mejorado para navegación por teclado */
*:focus-visible {
    outline: 2px solid #0d9488; /* teal-600 */
    outline-offset: 2px;
}
