/* ------------------------- */
/* RESET DE BASE            */
/* ------------------------- */

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    padding-top: 70px; /* pour compenser la navbar fixe */
    overflow-x: hidden;
}

a {
    color: #39c0ed;
}

a:hover {
    color: #1ea2cf;
    text-decoration: none;
}


/* ------------------------- */
/* NAVBAR                    */
/* ------------------------- */

.nike-navbar {
    background-color: #0d0d0d;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.05);
}

.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: #39c0ed !important;
}

.navbar-nav > li > a {
    color: white !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-nav > li > a:hover {
    color: #39c0ed !important;
}

/* centrage du menu */
.navbar-nav {
    float: none !important;
    margin: 0 auto !important;
    display: table;
}


/* ------------------------- */
/* HERO SECTION (bannière)   */
/* ------------------------- */

.hero-section {
    position: relative;
    height: 90vh;
    /*background: url("../img/hero.jpg") center/cover no-repeat;*/
    display: flex;
    align-items: center;
    justify-content: start;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.9)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-subtitle {
    letter-spacing: 3px;
    font-size: 14px;
    color: #39c0ed;
    font-weight: bold;
}

.hero-title {
    margin-top: 15px;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-text {
    margin-top: 15px;
    font-size: 18px;
    color: #e3e3e3;
    line-height: 1.6;
}

/* Boutons style "Nike" */
.btn-nike,
.btn-nike-outline {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    margin-top: 20px;
}

/* bouton principal */
.btn-nike {
    background-color: #39c0ed;
    border: none;
    color: #000;
}

.btn-nike:hover {
    background-color: #1ea2cf;
    color: #fff;
}

/* bouton outline */
.btn-nike-outline {
    background-color: transparent;
    border: 2px solid white;
    color: #fff;
}

.btn-nike-outline:hover {
    background-color: white;
    color: #000;
}


/* ------------------------- */
/* SECTIONS "CARDS"          */
/* ------------------------- */

.section-cards {
    margin-top: 15px;
    margin-bottom: 60px;
}

.section-card {
    margin-bottom: 40px;
}

.section-card-inner {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: 0.3s ease;
}

.section-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(57, 192, 237, 0.15);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #39c0ed;
}

/* Vignette "mise en avant" */
.section-card-highlight {
    background: linear-gradient(135deg, #39c0ed, #004a63);
    color: #ffffff;
}

.section-card-highlight .section-label {
    color: #c6f4ff;
}

/* liste des compétences */
.skills-list {
    margin-top: 20px;
    padding-left: 20px;
}

.skills-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

.section-row {
    margin-top: 40px;
}


/* ------------------------- */
/* RESPONSIVE DESIGN         */
/* ------------------------- */

@media (max-width: 768px) {
    body {
        padding-top: 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-section {
        height: 70vh;
    }

    .navbar-nav {
        display: block;
        text-align: center;
    }
}
