/*
Theme Name: DigitalCap Finance
Theme URI: https://digitalcapfinance.com
Author: DigitalCap Team
Author URI: https://digitalcapfinance.com
Description: Thème WordPress personnalisé pour DigitalCap Finance - Page Coming Soon
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digitalcap-finance
*/

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff, #8aa0f4, #4964ff);
    color: rgb(13, 2, 107);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(to right, #372dfd, #4744ff, #7366ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(253, 187, 45, 0.3);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #a0a8cc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2d49fd;
    text-shadow: 0 2px 8px rgba(253, 187, 45, 0.4);
}

p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #020515;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
}

.video-container {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.info-section {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
    font-size: 2.2em;
    padding: 20px;
}

.features {
    list-style: none;
    margin: 25px 0;
}

.features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4c2dfd;
    font-weight: bold;
    font-size: 1.2rem;
}

.progress-container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    height: 12px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #000208, #1c19a4, #4447ff);
    width: 72%;
    border-radius: 10px;
    animation: progress-animation 2.5s ease-in-out infinite alternate;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes progress-animation {
    0% {
        width: 72%;
    }
    100% {
        width: 78%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.contact-info {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(253, 187, 45, 0.1), rgba(26, 42, 108, 0.2));
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(253, 187, 45, 0.2);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(253, 187, 45, 0.2);
}

.contact-info a {
    color: #5a2dfd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.2rem;
}

.contact-info a:hover {
    color: #ffcc44;
    text-decoration: underline;
}

.countdown {
    margin-top: 40px;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
    backdrop-filter: blur(5px);
}

.countdown-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fdbb2d;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: #a0a8cc;
    margin-top: 5px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.3rem;
    color: #010410;
}

.social-icon:hover {
    background: #fdbb2d;
    color: #0f1b3a;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(253, 187, 45, 0.4);
}

.notification {
    margin-top: 30px;
    padding: 15px;
    background: rgba(253, 187, 45, 0.1);
    border-radius: 10px;
    border-left: 4px solid #fdbb2d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }

    .progress-container {
        margin-top: 0;
        margin-bottom: 1px;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: rgba(253, 187, 45, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}
      
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 400px;
    height: auto;
}

.logo-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: #1a027c;
}

.tagline {
    margin-top: 5px;
    font-size: 1rem;
    color: #09021a;
    font-style: italic;
}

@media (max-width: 600px) {
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .logo-img {
        width: 220px;
    }

    .info-section{
        font-size: 1em;
        margin-bottom: 0;
        padding-bottom: 0;
        margin-top: 0;
    }

    .contact-info {
        margin-top: 10px;
        padding: 5px;
        width: 100%;
        border-radius: 5px;
        display: flex;
        font-size: 1rem;
    }

    .contact-info a {
        font-weight: 500;
        font-size: 1rem;
    }
}