/* ============================================================================ 
   Hoja de estilos: bandada.css
   Proyecto La Bandurria · Compartida por todas las aves del sistema 🪶
   Incluye colores base, clases visuales y espacio para escalamiento temático
============================================================================ */

/* === Tarjetas visuales del panel === */
.card-bandurrin {
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-bandurrin:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
/* Icono en tarjetas */
.card-bandurrin .icono {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Bordes temáticos */
.border-config { border-left: 5px solid #0d6efd; }
.border-datos { border-left: 5px solid #198754; }
.border-visual { border-left: 5px solid #fd7e14; }
.border-alerta { border-left: 5px solid #dc3545; }

/* === Links sutiles === */
.link-sutil {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}
.link-sutil:hover {
  color: #0d6efd;
  text-decoration: underline;
}

/* === Estilo para tarjetas tipo podcast o bloques informativos === */
.podcast-card {
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    padding: 15px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* === HEADER GENERAL === */
header {
  background-color: #212529;
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
/* Logos dentro del header */
.logo-header,
header img { max-height: 60px; transition: all 0.3s ease; }
/* Títulos del header */
.titulo-principal,
header h4 { font-weight: bold; margin: 0; font-size: 1.4rem; }
.subtitulo,
header small { font-size: 1rem; margin: 0; opacity: 0.85; }

/* === SESSION CHIPS === */
.session-chips { margin: 10px 0 0 55px; }
.session-chips-title { font-size: 0.9rem; color: #334155; margin-bottom: 6px; }
.session-chips-wrap { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-sesion {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition: all .2s ease;
}
.chip-sesion:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
}

/* ============================================================================ 
   Header y Footer fijos para pantallas grandes (≥768px) 
============================================================================ */
@media (min-width: 768px) {
    header, footer {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    header { top: 0; }
    footer { bottom: 0; }
}

/* Ajuste del main-container para no tapar header/footer */
.main-container {
    margin-top: 100px;   /* altura header */
    margin-bottom: 100px; /* altura footer */
    padding: 1rem;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 200px); /* suficiente espacio para footer */
    overflow-y: auto;
}

/* Responsive para móviles: header/footer no fijos */
@media (max-width: 767px) {
    header, footer { position: static; }
    .main-container {
        margin-top: 0;
        margin-bottom: 0;
        min-height: auto;
    }
}

/* ============================================================================ 
   FIN DE BANDADA.CSS 
============================================================================ */
