/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Thème enfant pour GeneratePress avec personnalisations SocialFlow
Author: SocialFlow
Author URI: https://votresite.com
Template: generatepress
Version: 1.0.0
Text Domain: generatepress-child
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f5f5f5;
            overflow-x: hidden;
        }

        .landing-container {
            display: flex;
            min-height: 100vh;
            width: 100%;
        }

        /* Left Section */
        .left-section {
            flex: 1;
            background-image: url('http://localhost/directory/wp-content/uploads/2025/12/login_bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .left-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(45, 59, 95, 0.3);
            z-index: 0;
        }

        .logo-section {
            position: relative;
            z-index: 1;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
        }

        .logo-image {
            height: 60px;
            width: auto;
        }

        .left-section h1 {
            font-size: 56px;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 50px;
            max-width: 600px;
        }

        .features {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
            color: white;
            font-size: 18px;
        }

        .feature-icon {
            width: 28px;
            height: 28px;
            background: rgba(94, 234, 212, 0.2);
            border: 2px solid #5EEAD4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon::after {
            content: '✓';
            color: #5EEAD4;
            font-size: 16px;
            font-weight: bold;
        }

        .coherence {
            position: absolute;
            bottom: 40px;
            left: 80px;
            color: rgba(255, 255, 255, 0.3);
            font-size: 14px;
            z-index: 1;
        }

        /* Right Section */
        .right-section {
            flex: 1;
            padding: 80px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            background: white;
        }

        .content-container {
            width: 100%;
            max-width: 500px;
        }

        .right-section h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .subtitle {
            color: #666;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 50px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 48px;
            background: #5b7cff;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(91, 124, 255, 0.2);
        }

        .cta-button:hover {
            background: #4a6bef;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(91, 124, 255, 0.3);
        }

        .cta-button::after {
            content: '→';
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover::after {
            transform: translateX(4px);
        }

        .additional-info {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid #e5e5e5;
        }

        .info-text {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #5b7cff;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .landing-container {
                flex-direction: column;
            }

            .left-section {
                padding: 60px 40px;
                min-height: 50vh;
            }

            .left-section h1 {
                font-size: 42px;
            }

            .right-section {
                padding: 60px 40px;
            }

            .right-section h2 {
                font-size: 36px;
            }

            .coherence {
                left: 40px;
                bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .left-section {
                padding: 40px 30px;
            }

            .left-section h1 {
                font-size: 36px;
            }

            .description {
                font-size: 16px;
            }

            .feature-item {
                font-size: 16px;
            }

            .right-section {
                padding: 40px 30px;
            }

            .right-section h2 {
                font-size: 32px;
            }

            .subtitle {
                font-size: 16px;
            }

            .cta-button {
                width: 100%;
                padding: 16px 32px;
            }

            .stats {
                flex-direction: column;
                gap: 24px;
            }

            .coherence {
                left: 30px;
            }
        }

        @media (max-width: 480px) {
            .left-section {
                padding: 30px 20px;
            }

            .left-section h1 {
                font-size: 28px;
            }

            .logo-image {
                height: 45px;
            }

            .right-section {
                padding: 30px 20px;
            }

            .right-section h2 {
                font-size: 28px;
            }

            .stat-number {
                font-size: 28px;
            }
        }
    </style>