/* Estilos base */
body {
    background-color: #f0f0f0;
    font-family: 'Courier New', Courier, monospace;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    transition: background 0.3s ease;
}

header {
    border-bottom: 2px solid #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Grid de salas */
.grid-habitaciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sala {
    background: white;
    border: 2px solid #333;
    padding: 20px;
    transition: transform 0.2s ease;
}

/* Animaciones inspiradas en la fuente [1] */
.sala:hover {
    transform: translateY(-5px);
    background: #e0e0e0;
}

.no-animations .sala {
    transition: none !important;
    transform: none !important;
}

h2 {
    margin-top: 0;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    background: #333;
    color: white;
    border: none;
    padding: 5px 10px;
}