/*
FICHIER CSS POUR STRATEGIE ADMIN --- v0.6s
Regroupement des styles :
	1. Paramètres Généraux
	2. Paramètres de la page "Accueil"
	3. Paramètres de la page "Prestations"
	4. Paramètres de la page "À Propos"
	5. Paramètres de la page "Contact"
	6. Paramètres des pages "Mentions Légales" et "Politiques de Confidentialité"
*/


	/* ------- 1. PARAMÈTRES GÉNÉRAUX------- */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #ffffff;
}

/* Code Couleur Stratégie Admin */
:root {
    --bleu-fonce: #002147;
    --or: #C8AA64;
    --or-leger: #E6D5AC;
    --shadow-soft: 0 10px 20px rgba(0,0,0,0.2);
}

.texte-or {
    color: var(--or);
}

.texte-blanc {
    color: #ffffff;
}

/* Barre de Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;  
}   

.logo-banner {
    height: 40px;
    object-fit: contain;
	filter: drop-shadow(0px 4px 8px rgb(255, 255, 255));
    transition: filter 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    background-color: transparent;
}

nav a:hover { 
    color: var(--or-leger);
    background-color: transparent !important;
}

nav a.active {
    background-color: transparent !important;
    color: var(--or) !important;
    cursor: default;
    pointer-events: none;
}

/* Section d'accueil */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(Images/fond-ecran-accueil.png) no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 33, 71, 0.6); 
    z-index: 1;
}

.content-box {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 20px;
    margin-top: 60px;
}

.hero-title {
    text-transform: none !important;
    margin-bottom: 40px;
	color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: white !important;
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: none;
}

.hero-description {
	color: white;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Boutons */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn {
    padding: 16px 35px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    text-decoration: none;
    font-family: inherit;
}

.btn:hover { 
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--bleu-fonce);
    border: 1px solid var(--or);
}

.btn-secondary {
    background-color: var(--or);
    color: #00152e;
}

/* Pied de Page */
footer {
    background-color: #00152e;
    color: #8a9bb0;
    padding: 15px 0;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #1c3652;
}

.footer-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-lines a {
    color: inherit; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-lines a:hover {
    color: var(--or);
    text-decoration: underline;
}

	/* -------2. PAGE D'ACCUEIL------- */

/* Section 1 */
.intro-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-container h2 {
    font-size: 2.2rem;
    color: var(--bleu-fonce);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Section 2 */
.home-services-section {
    background-color: #f5f5f5;
    padding: 100px 20px;
}

.home-services-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto 60px;
}

.home-service-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 15px;
}

.hs-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

.icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.home-service-item h3 {
    color: var(--bleu-fonce);
    margin: 0 0 15px;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: none;
}

.home-service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-center {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.btn-text {
    color: var(--or);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.btn-text:hover {
    opacity: 0.8;
}

/* Section 3 */
.home-about-section {
    padding: 80px 20px;
    background-color: white;
    overflow: hidden;
}

.home-about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.ha-content {
    flex: 1;
    text-align: left;
}

.ha-content h2 {
    font-size: 2.2rem;
    color: var(--bleu-fonce);
    margin-bottom: 20px;
}

.ha-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
}

.ha-content .btn {
    margin-top: 30px;
    display: inline-block;
}

.ha-visual {
    flex: 1;
    position: relative;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-square {
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: var(--bleu-fonce);
    z-index: 1;
    top: 0; 
    left: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ha-image {
    width: 25%;
    height: 25%;
    object-fit: contain; 
    object-position: center; 
    
    display: block;
}

.visual-border {
    position: absolute;
    width: 75%;
    height: 85%;
    border: 5px solid var(--or);
    z-index: 1;
    bottom: 0; 
    right: 10%;
}

	/* -------3. PAGE DES PRESTATIONS------- */

/* Section 1 */
.services-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--bleu-fonce);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--or);
    border-top: none;
    border-radius: 8px;
    padding: 30px;
    flex: 1 1 600px;
    max-width: 850px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--or);
    flex-shrink: 0;
}

.icon-img-card {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.service-card h3 {
    color: var(--bleu-fonce);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0;
    flex-grow: 1;
}

.service-list {
	list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px 30px;
}

.service-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px;
    color: var(--text-medium);
}

.service-list li::before {
    content: '✔';
    color: var(--or);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1rem;
}

/* Section 2 */
.methodology-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.methodology-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.methodology-container h3 {
    color: var(--bleu-fonce);
    margin-bottom: 40px;
    font-size: 2rem;
    text-transform: uppercase;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--or); 
    margin-bottom: 5px;
    opacity: 0.8;
}

.step h4 {
    color: var(--bleu-fonce);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.step-italic {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 5px;
    margin-top: -5px;
}

.step-separator {
    height: 2px;
    width: 50px;
    background-color: var(--or);
    display: none;
}

@media (min-width: 768px) {
    .step-separator { display: block; }
}

/* Section 3 */
.cta-section {
    background-color: var(--bleu-fonce);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    color: var(--or);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #dce6f1;
}

	/* -------4. PAGE A PROPOS------- */

/* Section 1 */
.bio-section {
    padding: 80px 20px;
    background-color: #fff;
}

.bio-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-center;
    gap: 60px;
}

.bio-text {
    flex: 1;
    text-align: left;
}

.bio-section-title {
    font-size: 1.15rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.bio-text p {
    text-align: left !important;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.bio-separator {
    border: none;
    margin: 15px 0;
    width: 100%;
}

.signature-block {
    margin-top: 40px;
    font-family: 'Segoe UI', sans-serif;
}

.signature-block p {
    margin-bottom: 5px !important;
}

.signature-name {
    font-weight: bold;
    color: var(--bleu-fonce);
    font-size: 1.2rem;
}

.signature-role {
    font-size: 0.9rem;
    color: var(--or);
    font-style: italic;
}

.bio-image-placeholder {
    flex: 0 0 400px;
    height: 400px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 20px 20px 0px var(--bleu-fonce); 
}

.bio-photo {
	height: 400px;
	width: 400px ;
}

@media (max-width: 900px) {
    .bio-container {
        flex-direction: column;
    }
    .bio-image-placeholder {
        flex: auto;
        width: 100%;
        height: 300px;
        box-shadow: 10px 10px 0px var(--bleu-fonce);
    }
}

/* Section 2 */
.values-section {
    background-color: var(--bleu-fonce);
    color: white;
    padding: 60px 20px 0px 20px;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.value-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.value-box h4 {
    color: var(--or);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-box p {
    color: #dce6f1;
    font-size: 1rem;
    line-height: 1.5;
}

	/* -------5. PAGE DE CONTACT------- */

.contact-section {
    padding: 100px 20px;
    background-color: #f2f2f2;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card-category {
    color: var(--or);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-card h3 {
    color: var(--bleu-fonce);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-list a {
    font-weight: 600;
}

.info-list a:hover {
    color: var(--or-leger);
}

.info-list, .engagement-list {
    list-style: none;
    padding: 0;
}

.info-list li, .engagement-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #555;
    line-height: 1.5;
}

.icone-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.icone-bleu {
    color: var(--bleu-fonce);
}

.icone-or {
    color: var(--or);
}

.info-list a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.info-list a:hover {
    color: var(--or);
}

.contact-form-container {
    flex: 1.5;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    border-top: 6px solid var(--bleu-fonce);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--bleu-fonce);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: none;
}

.form-intro {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--bleu-fonce);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 8px rgba(200, 170, 100, 0.2);
    background-color: #fff;
}

.submit-btn {
    display: block;
    width: 100%;
    margin-top: 5px;
    color: #00152e !important;
    font-size: 1.05rem;
}

.btn-subtext {
    text-align: center;
    font-style: italic;
    color: #666666;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 0;
}

.form-footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .contact-wrapper { flex-direction: column; }
    .contact-sidebar, .contact-form-container { width: 100%; }
}

	/* ------- 6.PAGES MENTIONS LÉGALES ET POLITIQUES DE CONFIDENTIALITE----- */

.hero-legal {
    height: 50vh !important;
    min-height: 400px;
}

.legal-section {
    padding: 60px 20px;
    background-color: #fff;
    min-height: 60vh;
}

.legal-container {
    max-width: 900px; 
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    color: #444;
}

.legal-container h2 {
    color: var(--bleu-fonce);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}

.legal-container p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-container li {
    margin-bottom: 8px;
    line-height: 1.5;
}
