/*
Theme Name: Alflight Child
Theme URI: https://alflight.fr
Description: Thème enfant pour le site Alflight.
Author: Votre Nom
Author URI: https://alflight.fr
Template: hello-elementor
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Roboto+Mono:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');


/* --------------------------------------------------------------
 Styles globaux du site
-------------------------------------------------------------- 
*/
body {
    font-family: 'Roboto Mono', monospace;
    background-color: #0a0a0a;
    color: #e5e5e5;
    overflow-x: hidden;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5em;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1em;
}

a {
    color: #800020; /* Accent bordeaux */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #D4AF37; /* Accent or */
}

/*
--------------------------------------------------------------
 Utilitaires et classes personnalisées
--------------------------------------------------------------
*/

.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.code-font {
    font-family: 'Roboto Mono', monospace;
}

.gradient-text {
    background: #800020;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

.bw-filter {
    filter: grayscale(100%);
}

.glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin: 20px auto;
    transition: transform 0.3s ease-in-out;
}

.glass-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/*
--------------------------------------------------------------
 Styles des sections de la page
-------------------------------------------------------------- 
*/

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 12px;
}

.hero-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.specifications {
    background: linear-gradient(to bottom, #121212, #0a0a0a);
}

.project-oxcart {
    background-color: #0a0a0a;
}

.titanium-section {
    background-color: #0a0a0a;
}

.engine-section {
    background: linear-gradient(to bottom, #121212, #0a0a0a);
}


/*
--------------------------------------------------------------
 Animations
--------------------------------------------------------------
*/
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}