/*
Theme Name: IPTV4FRANCE
Theme URI: https://iptv4france.fr
Description: Thème WordPress Premium pour IPTV - IPTV4FRANCE - Meilleur Fournisseur IPTV en France avec +150 000 chaînes, films et séries en 4K/8K
Version: 2.0.0
Author: IPTV4FRANCE
Author URI: https://iptv4france.fr
Text Domain: IPTV4FRANCE
Tags: iptv, television, streaming, subscription, france, vod, 4k, hd, iptv france, abonnement iptv
*/

:root {
    /* Couleurs principales - Design Bleu/Cyan GalyTV */
    --accent-primary: #0066ff;
    --accent-secondary: #00c853;
    --accent-hover: #0052cc;
    --accent-light: #e6f0ff;
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00c853 100%);
    --gradient-hero: linear-gradient(180deg, #e8f4fc 0%, #d4e8f7 50%, #c5dff0 100%);
    
    /* Backgrounds */
    --bg-page: #e8f4fc;
    --bg-light: #f0f7fc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-dark: #1a1a2e;
    --bg-footer: #0f1629;
    
    /* Textes */
    --text-primary: #1a1a2e;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
    
    /* Effets */
    --border-color: rgba(0, 102, 255, 0.1);
    --shadow-sm: 0 4px 15px rgba(0, 102, 255, 0.1);
    --shadow-md: 0 10px 40px rgba(0, 102, 255, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 102, 255, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 102, 255, 0.3);
    
    /* Dimensions */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
}

/* ==========================================
   RESET & BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ==========================================
   BUTTONS - Mobile First
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: var(--text-white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-label {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 40px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* ==========================================
   RESPONSIVE - Tablet
   ========================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 18px 40px;
        font-size: 16px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* ==========================================
   RESPONSIVE - Desktop
   ========================================== */
@media (min-width: 1024px) {
    .section-label {
        font-size: 12px;
    }
}
