/* Palette de Couleurs */
:root {
    --primary-blue: #0046ad;
    --secondary-blue: #002d72;
    --accent-red-light: rgba(255, 77, 77, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
.pulse-live {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero-slide {
    height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.carousel-caption {
    bottom: 25%;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Players */
.header-player {
    border-bottom: 4px solid var(--secondary-blue);
    z-index: 1060;
}

.player-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100%);
}

.player-sticky-bottom.show {
    transform: translateY(0);
}

/* Visualizer bars */
.wave-container {
    height: 25px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}
.wave-bar {
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    animation: wave 0.8s infinite alternate;
    animation-play-state: paused;
}
@keyframes wave {
    from { height: 4px; }
    to { height: 25px; }
}

/* Programmation Tabs */
.nav-pills .nav-link {
    color: var(--primary-blue);
    border: 1px solid #dee2e6;
    margin: 3px;
    transition: var(--transition);
}
.nav-pills .nav-link.active {
    background-color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0,70,173,0.3);
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: var(--accent-red-light);
}

/* Contact Hover */
#contact a i:hover {
    transform: translateY(-5px);
    transition: var(--transition);
}