/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Hero Section avec effet de données */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(90deg, 
            rgba(32, 196, 255, 0.1) 1px, 
            transparent 1px
        ),
        linear-gradient(0deg, 
            rgba(32, 196, 255, 0.1) 1px, 
            transparent 1px
        );
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #20c4ff, #00ff9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 20px rgba(32, 196, 255, 0.3); }
    50% { text-shadow: 0 0 40px rgba(32, 196, 255, 0.6); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #888;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #20c4ff;
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #20c4ff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(32, 196, 255, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.back-btn:hover {
    color: #20c4ff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #20c4ff;
}

/* Sections communes */
.section {
    padding: 6rem 0;
}

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, #20c4ff, #00ff9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Infrastructure Grid */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.infra-card {
    background: rgba(32, 196, 255, 0.05);
    border: 1px solid rgba(32, 196, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 196, 255, 0.3);
    box-shadow: 0 10px 30px rgba(32, 196, 255, 0.1);
}

.infra-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.infra-card h3 {
    color: #20c4ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.infra-card ul {
    list-style: none;
}

.infra-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.infra-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #20c4ff;
}

/* Tools Section */
.tools-list {
    max-width: 800px;
    margin: 0 auto;
}

.tool-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(32, 196, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(32, 196, 255, 0.1);
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateX(10px);
    border-color: rgba(32, 196, 255, 0.3);
    box-shadow: 0 5px 15px rgba(32, 196, 255, 0.1);
}

.tool-icon {
    font-size: 2.5rem;
    color: #20c4ff;
}

.tool-content h3 {
    color: #20c4ff;
    margin-bottom: 0.5rem;
}

/* Implementation Steps */
.implementation-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background: rgba(32, 196, 255, 0.05);
    border: 1px solid rgba(32, 196, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    border-color: rgba(32, 196, 255, 0.3);
    box-shadow: 0 5px 15px rgba(32, 196, 255, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #20c4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-details {
    list-style: none;
    margin-left: 3rem;
}

.step-details li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #20c4ff;
}

/* Documentation Card */
.documentation-card {
    background: rgba(32, 196, 255, 0.05);
    border: 1px solid rgba(32, 196, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.documentation-card:hover {
    border-color: rgba(32, 196, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(32, 196, 255, 0.1);
}

.doc-icon {
    font-size: 3rem;
}

.doc-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.doc-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-btn {
    background: rgba(32, 196, 255, 0.1);
    border: 1px solid rgba(32, 196, 255, 0.2);
}

.view-btn:hover {
    background: rgba(32, 196, 255, 0.2);
    border-color: rgba(32, 196, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 196, 255, 0.1);
}

.download-btn {
    background: #20c4ff;
    border: 1px solid #20c4ff;
}

.download-btn:hover {
    background: #1ba8e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 196, 255, 0.3);
}

.button-icon {
    font-size: 1.2em;
}

/* Footer */
.site-footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(32, 196, 255, 0.1);
}

.footer-text a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.footer-text a:hover {
    color: #20c4ff;
}

/* Dark Sections */
.section.dark {
    background: linear-gradient(to bottom, #050505, #0a0a0a);
    position: relative;
}

.section.dark::before,
.section.dark::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(32, 196, 255, 0.3), 
        transparent
    );
}

.section.dark::before { top: 0; }
.section.dark::after { bottom: 0; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .tool-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .documentation-card {
        flex-direction: column;
        text-align: center;
    }

    .doc-buttons {
        flex-direction: column;
    }

    .doc-button {
        width: 100%;
    }

    .step-details {
        margin-left: 1rem;
    }
} 