/* ============================================================================
   NOS MÉDIAS - Styles Complets et Optimisés
   ============================================================================ */

/* ========================================
   VARIABLES SPÉCIFIQUES
   ======================================== */
:root {
    --radio-color: #ff6b35;
    --social-color: #e74c3c;
    --webtv-color: #3498db;
    --forum-color: #9b59b6;
}

/* ========================================
   NAVIGATION - Menu aligné à droite
   ======================================== */
.nav-menu {
    margin-left: auto;
    margin-right: 0;
}

/* ========================================
   HERO SECTION - PLEINE PAGE
   ======================================== */
.hero-media {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at center, #2d0a0a 0%, #1a0000 50%, #0f0000 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.2) 0%, rgba(45, 10, 10, 0.5) 40%, transparent 70%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, var(--orange-fire), transparent),
        radial-gradient(2px 2px at 60px 70px, var(--gold-primary), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--orange-bright), transparent),
        radial-gradient(2px 2px at 130px 90px, var(--orange-fire), transparent);
    background-size: 200px 200px;
    animation: particles 25s linear infinite;
    opacity: 0.15;
}

@keyframes particles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -200px); }
}

.hero-media .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--orange-fire);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-tag i {
    font-size: 1.2rem;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 0.85;
    margin-bottom: 2.5rem;
}

.hero-title .title-line {
    display: block;
    font-size: 4rem;
    color: var(--white-pure);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.hero-title .title-line.main {
    font-size: 8rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
    letter-spacing: 12px;
    text-shadow: none;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange-fire);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.75rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite, fadeIn 0.8s ease 0.6s both;
    z-index: 10;
    cursor: pointer;
}

.scroll-indicator i {
    color: var(--orange-fire);
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   SECTION INTRO
   ======================================== */
.intro-section {
    padding: 6rem 0;
    background: var(--soft-black);
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--orange-fire);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ========================================
   MEDIA SECTIONS
   ======================================== */
.media-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.radio-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, var(--primary-black) 100%);
}

.radio-section::before {
    background: radial-gradient(circle at 20% 50%, var(--radio-color) 0%, transparent 60%);
}

.social-section {
    background: linear-gradient(135deg, var(--soft-black) 0%, rgba(231, 76, 60, 0.08) 100%);
}

.social-section::before {
    background: radial-gradient(circle at 80% 50%, var(--social-color) 0%, transparent 60%);
}

.webtv-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, var(--primary-black) 100%);
}

.webtv-section::before {
    background: radial-gradient(circle at 20% 50%, var(--webtv-color) 0%, transparent 60%);
}

.forum-section {
    background: linear-gradient(135deg, var(--soft-black) 0%, rgba(155, 89, 182, 0.08) 100%);
}

.forum-section::before {
    background: radial-gradient(circle at 80% 50%, var(--forum-color) 0%, transparent 60%);
}

/* ========================================
   MEDIA CONTENT LAYOUT
   ======================================== */
.media-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

.media-content.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.media-content.reverse .media-visual {
    order: 2;
}

.media-content.reverse .media-info {
    order: 1;
}

/* ========================================
   MEDIA VISUAL
   ======================================== */
.media-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.media-icon-large {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 0 60px rgba(255, 107, 53, 0.4),
        0 0 100px rgba(255, 107, 53, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.visual-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Sound Waves (Radio) */
.sound-wave {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--radio-color);
    border-radius: 50%;
    opacity: 0;
    animation: wave 3s ease-out infinite;
}

.wave-1 {
    width: 320px;
    height: 320px;
    animation-delay: 0s;
}

.wave-2 {
    width: 380px;
    height: 380px;
    animation-delay: 1s;
}

.wave-3 {
    width: 440px;
    height: 440px;
    animation-delay: 2s;
}

@keyframes wave {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Social Bubbles */
.social-bubble {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--social-color), #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    animation: floatBubble 4s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.bubble-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* TV pour WebTV - Simplement un cercle orange/or comme les autres sections */
.webtv-section .media-icon-large {
    display: flex !important;
}

/* Supprimer le fond bleu - pas de tv-screen */
.tv-screen {
    display: none;
}

.tv-glow {
    display: none;
}

@keyframes tvGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(52, 152, 219, 0.4),
            inset 0 0 50px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 20px 80px rgba(52, 152, 219, 0.6),
            inset 0 0 70px rgba(255, 255, 255, 0.2);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Chat Bubbles (Forum) */
.chat-bubble {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--forum-color), #8e44ad);
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
    animation: floatChat 5s ease-in-out infinite;
}

.chat-bubble.bubble-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.chat-bubble.bubble-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.chat-bubble.bubble-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes floatChat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* ========================================
   MEDIA INFO
   ======================================== */
.media-info {
    position: relative;
    z-index: 2;
}

.media-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    color: var(--orange-fire);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.media-badge i {
    font-size: 1.1rem;
}

.media-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.media-tagline {
    font-size: 1.5rem;
    color: var(--orange-fire);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.media-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.media-description strong {
    color: var(--white-pure);
    font-weight: 600;
}

.media-features {
    list-style: none;
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.media-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.media-features i {
    color: var(--gold-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.media-features strong {
    color: var(--orange-fire);
}

.media-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffd700 100%);
    color: var(--white-pure);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   ECOSYSTEM SECTION
   ======================================== */
.ecosystem-section {
    padding: 8rem 0;
    background: var(--soft-black);
    position: relative;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.ecosystem-card {
    background: rgba(255, 107, 53, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-fire);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.ecosystem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ecosystem-card:hover .ecosystem-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.ecosystem-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.ecosystem-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%),
        var(--primary-black);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.4);
    animation: float 3s ease-in-out infinite;
}

.cta-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.cta-stat i {
    color: var(--orange-fire);
    font-size: 1.5rem;
}


/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* ========================================
   ANIMATIONS GLOBALES
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .media-content,
    .media-content.reverse {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .media-content.reverse .media-visual,
    .media-content.reverse .media-info {
        order: initial;
    }
    
    .media-icon-large {
        width: 240px;
        height: 240px;
        font-size: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title .title-line {
        font-size: 3rem;
    }
    
    .hero-title .title-line.main {
        font-size: 5.5rem;
        letter-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .media-section {
        padding: 5rem 0;
    }
    
    .media-visual {
        min-height: 350px;
    }
    
    .media-icon-large {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
    
    .media-title {
        font-size: 3rem;
    }
    
    .media-tagline {
        font-size: 1.2rem;
    }
    
    .media-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-stats {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title .title-line {
        font-size: 2.5rem;
    }
    
    .hero-title .title-line.main {
        font-size: 4.5rem;
        letter-spacing: 4px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .media-icon-large {
        width: 160px;
        height: 160px;
        font-size: 4rem;
    }
    
    .tv-screen {
        width: 280px;
        height: 200px;
    }
    
    .media-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   ACCESSIBILITÉ
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}