/*
Theme Name: Liga MD
Theme URI: https://liga.md
Description: Tema oficială Liga Studenților din Basarabia — child theme bazat pe Twenty Twenty-Five.
Author: Liga MD
Author URI: https://liga.md
Template: twentytwentyfive
Version: 1.0.0
Text Domain: liga-md
*/

/* ── General ─────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Navigație ───────────────────────────────────────────────────────────── */
.liga-nav-link { transition: color 0.2s, background-color 0.2s; border-radius: 0.375rem; }
.liga-nav-link:hover,
.liga-nav-link.activ,
.current-menu-item > a > .liga-nav-link,
.current-menu-item > a .liga-nav-link { background-color: #fbbf24; color: #1e3a8a; }
.current-menu-item > a > span.liga-nav-link,
.current-menu-item > a span.liga-nav-link { background-color: #fbbf24; color: #1e3a8a; }

#meniu-mobil { display: none; }
#meniu-mobil.deschis { display: block; }

/* ── Header sticky sub bara de admin WordPress ───────────────────────────── */
body.admin-bar #header-principal { top: 32px; }
body.admin-bar .sticky-sub-header { top: calc(32px + 4rem + 1rem); }
@media screen and (max-width: 782px) {
    body.admin-bar #header-principal { top: 46px; }
    body.admin-bar .sticky-sub-header { top: calc(46px + 4rem + 1rem); }
}

/* ── Animații elemente decorative ────────────────────────────────────────── */
@keyframes liga-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes liga-float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}
@keyframes liga-spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes liga-bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes liga-pulse-slow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}
.animate-float         { animation: liga-float 6s ease-in-out infinite; }
.animate-float-delayed { animation: liga-float-delayed 8s ease-in-out infinite; animation-delay: 1s; }
.animate-spin-slow     { animation: liga-spin-slow 20s linear infinite; }
.animate-bounce-slow   { animation: liga-bounce-slow 4s ease-in-out infinite; }
.animate-pulse-slow    { animation: liga-pulse-slow 4s ease-in-out infinite; }

/* ── Blockquote din wysiwyg → highlight box ─────────────────────────────── */
.wysiwyg-content blockquote {
    background: #1e40af10;
    border-left: 4px solid #1e40af;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin: 1rem 0;
    font-style: normal;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.625;
}
.wysiwyg-content blockquote p { margin: 0; }
