/* presenter-themes.css - Tous les thèmes et leurs styles complets */
/* Version 52 */

/* ==================== POLICES (Google Fonts) ==================== */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&family=Inter:wght@400;600;700&family=Lato:wght@400;700&family=Montserrat:wght@400;600;700;800&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;1,6..72,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Quicksand:wght@400;600;700&family=Space+Grotesk:wght@500;700&display=swap');

/* ==================== BASE DE LA SLIDE & IMAGES ==================== */

.slide {
    background: var(--bg-slide, #ffffff);
    background-size: cover;
    background-position: center;
    border-top: var(--slide-border-top, none);
    border-left: var(--slide-border-left, none);
    border-bottom: var(--slide-border-bottom, none);
    border-right: var(--slide-border-right, none);
    box-sizing: border-box;
    transition: background 0.3s ease, border 0.3s ease;
}

.slide img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border: var(--img-border, none);
    border-radius: var(--img-radius, 8px);
    box-shadow: var(--img-shadow, 0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slide img:hover {
    transform: translateY(-2px);
    box-shadow: var(--img-shadow-hover, 0 6px 18px rgba(0, 0, 0, 0.15));
}

.slide .img-top { order: -1; margin-bottom: 1.2rem; }
.slide .img-bottom { order: 1; margin-top: 1.2rem; }
.slide .img-left { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.slide .img-right { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }

/* ==================== 1. THÈME CORPORATE BLUE ==================== */

.theme-corporate-blue {
    --primary-color: #007bff;
    --title-color: #007bff;
    --subtitle-color: #0056b3;
    --text-color: #333333;
    --bg-columns: #f8f9fa;
    --bg-slide: #ffffff;
    --slide-border-left: 8px solid #007bff;
    --img-border: 1px solid #e3f2fd;
    --img-radius: 6px;
    --img-shadow: 0 4px 12px rgba(0, 123, 255, 0.12);
    --img-shadow-hover: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.theme-corporate-blue h1 {
    color: var(--title-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.theme-corporate-blue h2, .theme-corporate-blue h3 { color: var(--subtitle-color); }

.theme-corporate-blue ul { list-style: none; padding-left: 1.2rem; }
.theme-corporate-blue ul li::before {
    content: "■";
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.6rem;
}

.theme-corporate-blue blockquote {
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-columns);
    padding: 0.8rem 1.2rem;
    font-style: italic;
    border-radius: 0 6px 6px 0;
}

/* ==================== 2. THÈME TECH PURPLE ==================== */

.theme-tech-purple {
    --primary-color: #667eea;
    --title-color: #764ba2;
    --subtitle-color: #667eea;
    --text-color: #2d3748;
    --bg-columns: #f5f3ff;
    --bg-slide: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
    --slide-border-top: 4px solid #764ba2;
    --img-radius: 12px;
    --img-shadow: 0 10px 25px rgba(118, 75, 162, 0.15);
    --img-shadow-hover: 0 14px 30px rgba(118, 75, 162, 0.25);
}

.theme-tech-purple h1 {
    color: var(--title-color);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.theme-tech-purple h2, .theme-tech-purple h3 { color: var(--subtitle-color); }
.theme-tech-purple ul { list-style: none; padding-left: 1.2rem; }
.theme-tech-purple ul li::before { content: "◆"; color: var(--primary-color); margin-right: 0.6rem; }
.theme-tech-purple blockquote {
    border-left: 4px solid var(--title-color);
    background: var(--bg-columns);
    padding: 1rem;
    border-radius: 8px;
}

/* ==================== 3. THÈME NATURE GREEN ==================== */

.theme-nature-green {
    --primary-color: #11998e;
    --title-color: #11998e;
    --subtitle-color: #2e7d32;
    --text-color: #2d3748;
    --bg-columns: #f0fdf4;
    --bg-slide: #ffffff;
    --slide-border-bottom: 6px solid #11998e;
    --img-border: 2px solid #c8e6c9;
    --img-radius: 12px;
    --img-shadow: 0 6px 16px rgba(17, 153, 142, 0.1);
    --img-shadow-hover: 0 8px 22px rgba(17, 153, 142, 0.18);
}

.theme-nature-green h1 { color: var(--title-color); border-bottom: 2px dashed #a5d6a7; padding-bottom: 0.4rem; }
.theme-nature-green h2, .theme-nature-green h3 { color: var(--subtitle-color); }
.theme-nature-green ul { list-style: none; padding-left: 1.2rem; }
.theme-nature-green ul li::before { content: "●"; color: #38ef7d; margin-right: 0.6rem; }
.theme-nature-green blockquote {
    border-left: 4px solid var(--primary-color);
    background: var(--bg-columns);
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
}

/* ==================== 4. THÈME BOLD RED ==================== */

.theme-bold-red {
    --primary-color: #ee0979;
    --title-color: #ee0979;
    --subtitle-color: #d81b60;
    --text-color: #1a202c;
    --bg-columns: #fff5f5;
    --bg-slide: #ffffff;
    --slide-border-left: 10px solid #ee0979;
    --img-radius: 4px;
    --img-shadow: 6px 6px 0px #ffcdd2;
    --img-shadow-hover: 8px 8px 0px #ef9a9a;
}

.theme-bold-red h1 { color: var(--title-color); text-transform: uppercase; letter-spacing: 1px; }
.theme-bold-red h2, .theme-bold-red h3 { color: var(--subtitle-color); }
.theme-bold-red ul { list-style: none; padding-left: 1.2rem; }
.theme-bold-red ul li::before { content: "➔"; color: var(--primary-color); margin-right: 0.6rem; }
.theme-bold-red blockquote {
    background: #ffebee;
    border-left: 6px solid var(--primary-color);
    padding: 1rem;
    font-weight: 600;
}

/* ==================== 5. THÈME CREATIVE ORANGE ==================== */

.theme-creative-orange {
    --primary-color: #f79d00;
    --title-color: #f79d00;
    --subtitle-color: #e65100;
    --text-color: #1a202c;
    --bg-columns: #fffbeb;
    --bg-slide: #ffffff;
    --slide-border-top: 6px solid #f79d00;
    --img-radius: 16px;
    --img-shadow: 0 8px 20px rgba(247, 157, 0, 0.18);
    --img-shadow-hover: 0 12px 28px rgba(247, 157, 0, 0.28);
}

.theme-creative-orange h1 { color: var(--title-color); }
.theme-creative-orange h2, .theme-creative-orange h3 { color: var(--subtitle-color); }
.theme-creative-orange ul { list-style: none; padding-left: 1.2rem; }
.theme-creative-orange ul li::before { content: "★"; color: var(--primary-color); margin-right: 0.6rem; }
.theme-creative-orange blockquote {
    background: var(--bg-columns);
    border: 2px dashed #ffcc80;
    padding: 1rem;
    border-radius: 12px;
}

/* ==================== 6. THÈME DARK ELEGANT ==================== */

.theme-dark-elegant {
    --primary-color: #fbbf24;
    --title-color: #fbbf24;
    --subtitle-color: #fcd34d;
    --text-color: #e5e7eb;
    --bg-slide: #1f2937;
    --bg-columns: #111827;
    --slide-border-left: 4px solid #fbbf24;
    --img-border: 1px solid #374151;
    --img-radius: 8px;
    --img-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    --img-shadow-hover: 0 14px 35px rgba(0, 0, 0, 0.7);
    color: var(--text-color);
}

.theme-dark-elegant h1, .theme-dark-elegant h2, .theme-dark-elegant h3 { color: var(--title-color); }
.theme-dark-elegant p, .theme-dark-elegant li { color: var(--text-color); }
.theme-dark-elegant ul { list-style: none; padding-left: 1.2rem; }
.theme-dark-elegant ul li::before { content: "✦"; color: var(--primary-color); margin-right: 0.6rem; }
.theme-dark-elegant blockquote {
    border-left: 3px solid var(--primary-color);
    background: var(--bg-columns);
    padding: 1rem;
    color: #f3f4f6;
}

/* ==================== 7. THÈME DARK BLUE ==================== */

.theme-dark-blue {
    --primary-color: #60a5fa;
    --title-color: #60a5fa;
    --subtitle-color: #93c5fd;
    --text-color: #e5e7eb;
    --bg-slide: #0f172a;
    --bg-columns: #1e293b;
    --slide-border-left: 4px solid #60a5fa;
    --img-border: 1px solid #334155;
    --img-radius: 10px;
    --img-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    --img-shadow-hover: 0 12px 32px rgba(96, 165, 250, 0.2);
    color: var(--text-color);
}

.theme-dark-blue h1, .theme-dark-blue h2, .theme-dark-blue h3 { color: var(--title-color); }
.theme-dark-blue p, .theme-dark-blue li { color: var(--text-color); }
.theme-dark-blue ul { list-style: none; padding-left: 1.2rem; }
.theme-dark-blue ul li::before { content: "▲"; color: var(--primary-color); font-size: 0.7rem; margin-right: 0.6rem; }
.theme-dark-blue blockquote { border-left: 4px solid var(--primary-color); background: var(--bg-columns); padding: 0.8rem 1.2rem; }

/* ==================== 8. THÈME DARK PURPLE ==================== */

.theme-dark-purple {
    --primary-color: #a78bfa;
    --title-color: #c4b5fd;
    --subtitle-color: #a78bfa;
    --text-color: #e5e7eb;
    --bg-slide: #1e1b4b;
    --bg-columns: #312e81;
    --slide-border-top: 4px solid #a78bfa;
    --img-radius: 12px;
    --img-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    --img-shadow-hover: 0 12px 32px rgba(167, 139, 250, 0.25);
    color: var(--text-color);
}

.theme-dark-purple h1, .theme-dark-purple h2, .theme-dark-purple h3 { color: var(--title-color); }
.theme-dark-purple p, .theme-dark-purple li { color: var(--text-color); }
.theme-dark-purple ul { list-style: none; padding-left: 1.2rem; }
.theme-dark-purple ul li::before { content: "◈"; color: var(--primary-color); margin-right: 0.6rem; }
.theme-dark-purple blockquote { background: var(--bg-columns); border-left: 4px solid var(--title-color); padding: 1rem; }

/* ==================== 9. THÈME OCEAN BLUE ==================== */

.theme-ocean-blue {
    --primary-color: #00b4d8;
    --title-color: #03045e;
    --subtitle-color: #0077b6;
    --text-color: #1a202c;
    --bg-columns: #ecfeff;
    --bg-slide: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    --slide-border-bottom: 5px solid #00b4d8;
    --img-radius: 12px;
    --img-shadow: 0 6px 18px rgba(0, 180, 216, 0.15);
    --img-shadow-hover: 0 10px 24px rgba(0, 180, 216, 0.25);
}

.theme-ocean-blue h1 { color: var(--title-color); border-bottom: 2px solid #90e0ef; padding-bottom: 0.4rem; }
.theme-ocean-blue h2, .theme-ocean-blue h3 { color: var(--subtitle-color); }
.theme-ocean-blue ul { list-style: none; padding-left: 1.2rem; }
.theme-ocean-blue ul li::before { content: "≈"; color: var(--primary-color); font-weight: bold; margin-right: 0.6rem; }
.theme-ocean-blue blockquote { background: var(--bg-columns); border-left: 4px solid var(--primary-color); padding: 0.8rem 1.2rem; }

/* ==================== 10. THÈME WARM TERRACOTTA ==================== */

.theme-warm-terracotta {
    --primary-color: #c85a32;
    --title-color: #8c2d19;
    --subtitle-color: #c85a32;
    --text-color: #2b2625;
    --bg-columns: #f7f0e9;
    --bg-slide: #fcf9f5;
    --slide-border-top: 4px solid #c85a32;
    --slide-border-bottom: 1px solid #e2d5c7;
    --img-border: 1px solid #e2d5c7;
    --img-radius: 6px;
    --img-shadow: 0 6px 18px rgba(140, 45, 25, 0.08);
    --img-shadow-hover: 0 10px 24px rgba(140, 45, 25, 0.15);
    color: var(--text-color);
}

.theme-warm-terracotta h1 { color: var(--title-color); font-family: 'Newsreader', Georgia, serif; border-bottom: 1px solid #e2d5c7; padding-bottom: 0.5rem; }
.theme-warm-terracotta h2, .theme-warm-terracotta h3 { color: var(--subtitle-color); }
.theme-warm-terracotta ul { list-style: none; padding-left: 1.2rem; }
.theme-warm-terracotta ul li::before { content: "—"; color: var(--primary-color); font-weight: bold; margin-right: 0.6rem; }
.theme-warm-terracotta blockquote { background: var(--bg-columns); border-left: 3px solid var(--primary-color); padding: 1rem; font-family: 'Newsreader', Georgia, serif; font-size: 1.1em; }

/* ==================== 11. THÈME CYBER NEON ==================== */

.theme-cyber-neon {
    --primary-color: #00ffcc;
    --title-color: #00ffcc;
    --subtitle-color: #ff007f;
    --text-color: #e2e8f0;
    --bg-slide: radial-gradient(circle at center, #12151e 0%, #090a0f 100%);
    --bg-columns: #12151e;
    --slide-border-left: 3px solid #00ffcc;
    --slide-border-right: 3px solid #ff007f;
    --img-border: 1px solid #00ffcc;
    --img-radius: 4px;
    --img-shadow: 0 0 12px rgba(0, 255, 204, 0.25);
    --img-shadow-hover: 0 0 20px rgba(0, 255, 204, 0.5);
    color: var(--text-color);
}

.theme-cyber-neon h1 { color: var(--title-color); text-shadow: 0 0 8px rgba(0, 255, 204, 0.4); font-family: 'Space Grotesk', sans-serif; }
.theme-cyber-neon h2, .theme-cyber-neon h3 { color: var(--subtitle-color); text-shadow: 0 0 6px rgba(255, 0, 127, 0.3); }
.theme-cyber-neon p, .theme-cyber-neon li { color: var(--text-color); }
.theme-cyber-neon ul { list-style: none; padding-left: 1.2rem; }
.theme-cyber-neon ul li::before { content: ">"; color: var(--primary-color); font-family: 'Fira Code', monospace; font-weight: bold; margin-right: 0.6rem; }
.theme-cyber-neon blockquote { background: var(--bg-columns); border: 1px solid var(--subtitle-color); padding: 1rem; box-shadow: 0 0 10px rgba(255, 0, 127, 0.15); }

/* ==================== 12. THÈME MINIMAL ==================== */

.theme-minimal {
    --primary-color: #000000;
    --title-color: #000000;
    --subtitle-color: #666666;
    --text-color: #1a1a1a;
    --bg-columns: #f5f5f5;
    --bg-slide: #ffffff;
    --img-border: 1px solid #e5e5e5;
    --img-radius: 0px;
    --img-shadow: none;
    --img-shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.theme-minimal h1 { color: var(--title-color); font-weight: 700; letter-spacing: -0.5px; }
.theme-minimal h2, .theme-minimal h3 { color: var(--subtitle-color); }
.theme-minimal ul { list-style: disc; padding-left: 1.2rem; }
.theme-minimal blockquote { border-left: 2px solid #000000; padding-left: 1rem; font-style: italic; }

/* ==================== POLICES PAR STYLE ==================== */

.style-professional .slide { font-family: 'Inter', 'Segoe UI', sans-serif; }
.style-friendly .slide     { font-family: 'Quicksand', 'Nunito', sans-serif; }
.style-inspiring .slide    { font-family: 'Playfair Display', Georgia, serif; }
.style-editorial .slide    { font-family: 'Newsreader', Georgia, serif; }
.style-nature .slide       { font-family: 'Lato', 'Open Sans', sans-serif; }
.style-bold .slide         { font-family: 'Montserrat', 'Arial Black', sans-serif; }
.style-cyber .slide        { font-family: 'Space Grotesk', sans-serif; }
.style-dark .slide         { font-family: 'Inter', 'Segoe UI', sans-serif; }
