/*
Theme Name: La Bonita 105
Theme URI: https://labonita105.com
Author: Hostingtico / ChatGPT
Author URI: https://hostingtico.com
Description: Tema tipo landing para radio Shoutcast v2 con reproductor fijo inferior, botones flotantes y personalizador.
Version: 1.3.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: labonita105
Tags: one-page, radio, streaming, responsive
*/

:root{
  --lb-bg:#0b0f14;
  --lb-surface: rgba(10, 14, 20, 0.70);
  --lb-text:#ffffff;
  --lb-muted: rgba(255,255,255,0.82);
  --lb-accent:#ffd100;
  --lb-accent2:#39d98a;
  --lb-danger:#ff4d4f;
  --lb-shadow: 0 12px 30px rgba(0,0,0,0.45);
  --lb-radius: 18px;
  --lb-player-h: 92px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--lb-bg);
  color: var(--lb-text);
  overflow-x:hidden;
  padding-bottom: calc(var(--lb-player-h) + 10px);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

.lb-hero{
  min-height: calc(100vh - var(--lb-player-h));
  background-size: cover;
  background-position: center;
  position: relative;
}
.lb-hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(0,0,0,0.78), rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.65));
}
.lb-wrap{
  position:relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 18px 26px;
  display:grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items:center;
}
@media (max-width: 980px){
  .lb-wrap{grid-template-columns:1fr; padding-top: 26px}
}

.lb-brand{
  background: var(--lb-surface);
  box-shadow: var(--lb-shadow);
  border-radius: var(--lb-radius);
  padding: 22px;
  backdrop-filter: blur(8px);
}
.lb-title{
  font-weight: 900;
  letter-spacing: 1px;
  font-size: clamp(42px, 5.2vw, 86px);
  line-height: 0.95;
  margin: 0 0 10px;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(0,0,0,0.55);
}
.lb-tagline{
  font-size: clamp(16px, 2.1vw, 22px);
  margin: 0 0 14px;
  color: var(--lb-muted);
}
.lb-desc{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}

.lb-right{
  display:grid;
  gap: 14px;
  justify-items: end;
}
@media (max-width: 980px){
  .lb-right{justify-items:start}
}

.lb-logoCard{
  width: min(360px, 92vw);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--lb-shadow);
  border-radius: 999px;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  gap: 12px;
  backdrop-filter: blur(8px);
}
.lb-logo{
  width: 64px; height: 64px;
  border-radius: 999px;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.22);
  flex: 0 0 auto;
}
.lb-logo img{width:100%;height:100%;object-fit:cover}
.lb-logoText{line-height:1.1}
.lb-logoText .name{font-weight:800; font-size:18px}
.lb-logoText .sub{color:rgba(255,255,255,0.78); font-size:13px; margin-top:4px}

.lb-cta{
  width: min(360px, 92vw);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--lb-shadow);
  border-radius: var(--lb-radius);
  padding: 14px 16px;
  backdrop-filter: blur(8px);
}
.lb-ctaRow{display:flex; gap: 10px; align-items:center; flex-wrap:wrap}
.lb-badge{
  display:inline-flex; align-items:center; gap:10px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,209,0,0.18);
  border: 1px solid rgba(255,209,0,0.35);
  font-weight: 800;
}
.lb-badge svg{width:18px;height:18px}
.lb-cta a.lb-btn{
  display:inline-flex; align-items:center; gap:10px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(57,217,138,0.16);
  border: 1px solid rgba(57,217,138,0.35);
  font-weight: 800;
}
.lb-cta a.lb-btn:hover{transform: translateY(-1px)}
.lb-cta small{display:block; margin-top:10px; color:rgba(255,255,255,0.75)}

.lb-footline{
  position: relative;
  text-align:center;
  margin: 10px auto 0;
  max-width: 1100px;
  padding: 0 18px;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-shadow: 0 6px 16px rgba(0,0,0,0.55);
}

/* Floating buttons */
.lb-float{
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.lb-fab{
  width: 44px; height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  box-shadow: var(--lb-shadow);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}
.lb-fab svg{width:20px;height:20px}
.lb-fab.fb{background: rgba(24,119,242,0.72)}
.lb-fab.wa{background: rgba(37,211,102,0.72)}
.lb-fab.mail{background: rgba(255,77,79,0.72)}
.lb-fab:hover{transform: translateY(-1px)}

/* Player bar */
.lb-player{
  position: fixed;
  left:0; right:0; bottom:0;
  height: var(--lb-player-h);
  background: rgba(255,255,255,0.92);
  color: #111;
  display:flex;
  align-items:center;
  padding: 10px 14px;
  gap: 12px;
  z-index: 9998;
  box-shadow: 0 -10px 26px rgba(0,0,0,0.35);
}
.lb-player .p-logo{
  width: 54px; height:54px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.12);
  background:#fff;
  flex: 0 0 auto;
}
.lb-player .p-logo img{width:100%;height:100%;object-fit:cover}
.lb-player .p-meta{
  min-width: 0;
  flex: 1 1 auto;
}
.lb-player .p-title{
  font-weight: 900;
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-player .p-sub{
  margin: 4px 0 0;
  font-size: 12.5px;
  color: rgba(0,0,0,0.66);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-player .p-controls{
  display:flex;
  align-items:center;
  gap: 10px;
}
.lb-play{
  width: 52px; height:52px;
  border-radius: 999px;
  border: none;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  background: #111;
  color: #fff;
}
.lb-play:active{transform: scale(0.98)}
.lb-vol{
  width: 120px;
}
@media (max-width: 520px){
  .lb-vol{display:none}
  .lb-player{gap:10px}
}

/* WP helpers */
.screen-reader-text{position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden;}


/* ===== Premium Player v1.1 ===== */
:root{
  --lb-player-bg: rgba(12, 16, 22, 0.86);
  --lb-player-border: rgba(255,255,255,0.10);
  --lb-player-text: rgba(255,255,255,0.92);
  --lb-player-muted: rgba(255,255,255,0.70);
  --lb-player-glow: 0 10px 30px rgba(0,0,0,0.55);
}

.lb-player{
  background: var(--lb-player-bg);
  color: var(--lb-player-text);
  border-top: 1px solid var(--lb-player-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -18px 32px rgba(0,0,0,0.45);
}

.lb-player .p-logo{
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.lb-player .p-title{
  color: var(--lb-player-text);
  letter-spacing: .2px;
}

.lb-player .p-sub{
  color: var(--lb-player-muted);
}

.lb-play{
  background: radial-gradient(120% 120% at 30% 20%, rgba(255,209,0,0.95), rgba(255,209,0,0.70) 45%, rgba(255,209,0,0.35));
  color: #111;
  border: 1px solid rgba(255,209,0,0.50);
  box-shadow: var(--lb-player-glow);
  position: relative;
  overflow: hidden;
}
.lb-play:hover{filter: brightness(1.03)}
.lb-play::after{
  content:"";
  position:absolute; inset:-40%;
  background: conic-gradient(from 180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.22), rgba(255,255,255,0.0));
  transform: rotate(0deg);
  opacity: .0;
}
.lb-play.is-playing{
  box-shadow: 0 14px 34px rgba(255,209,0,0.22), 0 18px 44px rgba(0,0,0,0.55);
}
.lb-play.is-playing::after{
  opacity: .35;
  animation: lbSpin 2.8s linear infinite;
}
@keyframes lbSpin{to{transform: rotate(360deg)}}

.lb-play svg{width: 22px; height: 22px}

.lb-vol{
  accent-color: var(--lb-accent);
  width: 150px;
  opacity: .95;
}

/* Equalizer */
.lb-eq{
  display:inline-flex;
  align-items:flex-end;
  gap: 3px;
  height: 14px;
  margin-left: 10px;
  transform: translateY(1px);
}
.lb-eq span{
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,209,0,0.95);
  opacity: .85;
}
.lb-player.is-playing .lb-eq span{
  animation: lbEQ 900ms ease-in-out infinite;
}
.lb-player.is-playing .lb-eq span:nth-child(2){animation-delay: 120ms}
.lb-player.is-playing .lb-eq span:nth-child(3){animation-delay: 240ms}
.lb-player.is-playing .lb-eq span:nth-child(4){animation-delay: 360ms}
@keyframes lbEQ{
  0%,100%{height: 5px; opacity:.65}
  50%{height: 14px; opacity:1}
}

/* Make hero panels a bit more premium */
.lb-brand{
  background: rgba(10, 14, 20, 0.62);
  border: 1px solid rgba(255,255,255,0.10);
}
.lb-cta{
  background: rgba(0,0,0,0.45);
}
.lb-logoCard{
  background: rgba(0,0,0,0.35);
}


/* ===== Contact bar (Hero) ===== */
.lb-contact{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.lb-contact .item{
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 10px 12px;
  display:flex;
  align-items:center;
  gap: 10px;
}
.lb-contact .item svg{width:18px;height:18px;opacity:.9}
.lb-contact .item span{
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  word-break: break-all;
}


/* ===== FINAL FIX HERO LAYOUT v1.3.3 ===== */

.lb-wrap {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 24px;
  align-items: center;
}

.lb-brand {
  position: relative;
  z-index: 5;
}

.lb-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.lb-right {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lb-logoCard {
  max-width: 320px;
  width: 100%;
}

/* Prevent overlap */
.lb-brand,
.lb-right {
  overflow: visible;
}

/* Mobile */
@media (max-width: 980px) {
  .lb-wrap {
    grid-template-columns: 1fr;
  }

  .lb-right {
    margin-top: 24px;
  }

  .lb-logoCard {
    max-width: 260px;
  }
}
/* ===== OCULTAR BOTON / AVISO DE COOKIES QUE TAPA EL PLAYER ===== */
.cc-window,
.cc-floating,
.cc-revoke,
.cookie-notice,
.cookie-consent,
.cookie-law-info-bar,
.cookie-law-info-again,
#cookie-notice,
#cookie-law-info-bar,
#cc-main,
[class*="cookie"],
[class*="Cookie"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}