/*
Theme Name: Ai_SkillBox-Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Ai SkillBox Team
Author URI: http://ai-skillbox.com/
Description: With Elementor
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1771594637
Updated: 2026-02-20 13:37:17

*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');
/* =========================
   Page Contact
========================= */
.sb-contact {
    background: #0E0E10;
    min-height: 100vh;
    padding: 4%;
    color: #ffffff;
    font-family: inherit;
}

.sb-contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.sb-title {
    font-size: 36px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: inherit;
}

.sb-divider {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 0 auto 60px auto;
}

.sb-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sb-form input,
.sb-form textarea,
.sb-form select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 12px 5px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    letter-spacing: 1px;
    transition: border-color 0.3s ease;
}

.sb-form select {
    appearance: none;
}

.sb-form input:focus,
.sb-form textarea:focus,
.sb-form select:focus {
    outline: none;
    border-bottom: 1px solid #0f5fff;
}

.sb-form select option {
    background: #0E0E10;
}

.sb-form button {
    margin-top: 40px;
    background: transparent;
    border: 1px solid #0f5fff;
    color: #ffffff;
    padding: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sb-form button:hover {
    background: #0f5fff;
}

.sb-success {
    color: #4cffb0;
    margin-bottom: 30px;
}

.sb-error {
    color: #ff4c4c;
    margin-bottom: 30px;
}
.sb-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}
/* =========================
   THANK YOU + INDEX - SKILLBOX
========================= */

/* =========================
   TITRE / TYPEWRITER
========================= */
#description {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.7;
    min-height: 60px;
    color: var(--text-main);
}

/* Curseur clignotant */
#description::after {
    content: "|";
    animation: blink 1s infinite;
    margin-left: 4px;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* =========================
   SERVICES / CTA DOUX
========================= */
.services {
    margin-top: 55px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--text-soft);

    display: flex;
    justify-content: center;
    align-items: center;
}

.services a {
    position: relative;
    text-decoration: none;
    color: var(--text-soft);
    padding: 6px 10px;

    transition:
        color 0.3s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

/* underline luxe desktop */
.services a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(.19,1,.22,1);
}

.services a:hover {
    color: var(--accent);
}

.services a:hover::after {
    width: 100%;
}

/* feedback tactile mobile */
.services a:active {
    color: var(--accent);
    transform: scale(0.96);
    opacity: 0.85;
}

/* séparateur desktop */
.separator {
    color: var(--accent);
    opacity: 0.6;
    padding: 0 18px;
}