/* --------------------
   BASE
-------------------- */

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #2e2e2e;
    background-color: #ffffff;
}

h1, h2, h5 {
    color: #4f7c82;
}

p {
    line-height: 1.6;
}


/* --------------------
   NAVBAR
-------------------- */

.navbar {
    background-color: #ffffff;
}

.navbar-brand {
    color: #4f7c82 !important;
}

.nav-link {
    color: #2e2e2e !important;
}

.nav-link:hover {
    color: #c97c5d !important;
}

/* --------------------
   ACCUEIL
-------------------- */

.hero {
    background-color: #f6f1ee;
    padding: 4rem 2rem;
    border-radius: 20px;
}

.hero img {
    border: 4px solid #4f7c82;
}

/* --------------------
   CARTES
-------------------- */

.card {
    border: none;
    border-radius: 20px;
    background-color: #ffffff;
}

.card-title {
    color: #4f7c82;
}

.shadow-sm {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

/* --------------------
   CARTES EXPÉRIENCES
-------------------- */

.experience-card {
    background: linear-gradient(135deg, #4f7c82, #6fa3a8);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card .card-title,
.experience-card .card-text {
    color: white;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}  

     
/* --------------------
   SECTIONS
-------------------- */

section h2 {
    margin-bottom: 2rem;
    position: relative;
}

section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #c97c5d;
    display: block;
    margin-top: 10px;
    border-radius: 2px;
}

/* --------------------
   FOOTER
-------------------- */

footer {
    background-color: #f6f1ee;
    color: #4f7c82;
}
