@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Iceland&family=Oswald:wght@200..700&family=Protest+Strike&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
* {
  scrollbar-width: none;
  -ms-overflow-style: none; 
}


body {
  padding-bottom: 120px; 
}
@media (max-width: 768px) {
  body {
    padding-bottom: 160px;
  }
}
@media (min-width: 769px) {
  body {
    padding-bottom: 100px;
  }
}


html, body {
    height: auto ;
    overflow: visible ;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
      height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
[data-scroll-container] {
    min-height: 100vh;
    height: auto ;
    
} 



/* Contenu qui pousse le footer vers le bas */
.content {
  flex: 1 0 auto; /* Prend tout l'espace possible */
}

body {
    background-color: #111111;
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
    /* Do not set overflow-y: hidden here, allow scrolling */
    overscroll-behavior: contain; /* Contenir le comportement de scroll */
}


/* Lock scroll only when popup is open */
.body-lock-scroll {
    overflow: hidden !important;
}

.body-lock-scroll {
    overflow-x: hidden !important;
    /* overflow-y: auto !important;  // Optionnel, selon besoin */
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #725251, #a67c7c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}





/*  écrand de chargement */
.chargementPage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 50%, #0f0f0f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.chargementPage.masquer {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
}

.spinnerChargement {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(114, 82, 81, 0.2);
    border-radius: 50%;
    border-top: 4px solid #725251;
    animation: rotation 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 30px;
    position: relative;
}

.spinnerChargement::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(166, 124, 124, 0.3);
    border-radius: 50%;
    border-left: 3px solid #a67c7c;
    transform: translate(-50%, -50%);
    animation: rotation 0.8s linear infinite reverse;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #725251;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.loading-text span {
    display: inline-block;
    animation: letterFloat 2s ease-in-out infinite;
}

.loading-text span:nth-child(1) { animation-delay: 0s; }
.loading-text span:nth-child(2) { animation-delay: 0.1s; }
.loading-text span:nth-child(3) { animation-delay: 0.2s; }
.loading-text span:nth-child(4) { animation-delay: 0.3s; }
.loading-text span:nth-child(5) { animation-delay: 0.4s; }

@keyframes letterFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.loading-subtitle {
    font-size: 1rem;
    color: #999;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}





/* Hero */

.Hero {
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%), url("img/mascote/mascote-entrer.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
    padding: 10vh;
}

.container {
    position: relative;
    width: 50%;
    max-width: 600px;
    height: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-left: 1%;
    border-radius: 15px;
    text-align: right;
}

.text {
    font-size: 20px;
    color: white;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

@media screen and (max-width: 768px) {
    .text {
        opacity: 0;
      }
    .container {
        opacity: 0;
    }
  }

.border-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #8c8c8c, #5d5d5d);
    mix-blend-mode: screen;
    animation: slideOverlay 4s infinite;
    z-index: 2;
    border-radius: 15px;
}

@keyframes slideOverlay {
    0% { left: -97%; }
    50% { left: 97%; }
    100% { left: -97%; }
}

.praincipal {
    font-size: 4rem;
    margin-top: 10vh;
    margin-bottom: 1rem;
    color: #dbdbdb;
    text-align: left;
}

.sous-titre {
    font-size: 2rem;
    margin-top: 5vh;
    background: linear-gradient(90deg, #006100, #20c000);
    background-clip: text;
    color: transparent;
    text-decoration: underline;
    text-align: center;
}


@media (max-width: 768px) {
    .Hero {
        min-height: auto;
        padding: 5vh;
    }

    .praincipal {
        font-size: 2.5rem;
        margin-top: 5vh;
    }

    .sous-titre {
        font-size: 1.5rem;
        margin-top: 2vh;
    }


}

#content {
  flex: 1;
}

html, body {
  height: 100%;
  margin: 0;
}

#page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content-wrap {
  flex: 1;
}


/* arkan Section */
.banner-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #111111;
}

#main {
    position: relative;
    overflow: hidden;
    height: 100%;
    flex: 1;
}

#page {
    position: relative;
    height: 100%;
    width: 100%;
    background: #111111;
    color: #725251;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loop {
    width: 100%;
    font-size: clamp(3rem, 8vw, 8rem);
    white-space: nowrap;
    font-family: 'Big Shoulders', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
}

#loop h1 {
    font-weight: 900;
    animation: scrollText 20s linear infinite;
    background: linear-gradient(90deg, #725251, #a67c7c, #725251);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

#loop h1 > span {
    -webkit-text-stroke: 2px #333;
    color: transparent;
    font-weight: 900;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}




/* Interactive Map */
.mind-map-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 4rem auto;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(114, 82, 81, 0.4);
    z-index: 10;
}

.central-node .node-content {
    text-align: center;
    color: white;
}

.central-node i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.central-node span {
    font-weight: 700;
    font-size: 1rem;
    display: block;
}

.central-node small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.service-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(114, 82, 81, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle)));
}

.service-node:hover {
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-color: #725251;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle))) scale(1.1);
    box-shadow: 0 10px 25px rgba(114, 82, 81, 0.4);
}

.service-node .node-content {
    text-align: center;
    color: #e0e0e0;
}

.service-node:hover .node-content {
    color: white;
}

.service-node i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    display: block;
}

.service-node span {
    font-size: 0.7rem;
    font-weight: 600;
}


















/* Service Details truc */
.service-details-panel {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    backdrop-filter: blur(15px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-details-panel.active {
    transform: translateY(0);
    opacity: 1;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(114, 82, 81, 0.3);
    padding-bottom: 1rem;
}

.panel-header h3 {
    color: #725251;
    font-size: 1.5rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #725251;
}


/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
}



.stat-item {
    text-align: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem; /* Ajout pour bien espacer les items */
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #725251;
    box-shadow: 0 10px 25px rgba(114, 82, 81, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #725251;
    margin-bottom: 1rem; /* Plus d'espace sous le nombre */
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem; /* Ajout pour l'alignement */
}

/* Process Section */
.process-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.container-process {
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    margin-top: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #725251, #a67c7c);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(114, 82, 81, 0.3);
}

.timeline-marker span {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-content {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #725251;
    box-shadow: 0 15px 30px rgba(114, 82, 81, 0.2);
}

.timeline-content h3 {
    color: #725251;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.details-btn {
    background: linear-gradient(135deg, #725251, #a67c7c);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.details-btn:hover {
    background: linear-gradient(135deg, #8c6b6b, #b89494);
    transform: translateY(-2px);
}

.step-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(114, 82, 81, 0.1);
    border-radius: 10px;
    border-left: 3px solid #725251;
}

.step-details ul {
    margin: 0;
    padding-left: 1.5rem;
}

.step-details li {
    color: #999;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {

    .process-section {
        padding: 2rem 0.5rem;
    }

    .container-process {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .process-timeline {
        margin-top: 2rem;
    }

    .process-timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 2rem;
        padding-left: 40px;
    }

    .timeline-marker {
        position: static;
        margin-bottom: 1rem;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        transform: none;
    }

    .timeline-marker span {
        font-size: 0.9rem;
    }

    .timeline-content {
        width: 100%;
        padding: 1rem;
        font-size: 0.95em;
    }

    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .timeline-content p {
        font-size: 0.95em;
        margin-bottom: 1rem;
    }

    .details-btn {
        font-size: 0.95em;
        padding: 0.4rem 0.8rem;
    }

    .step-details {
        padding: 0.5rem;
        font-size: 0.95em;
    }

    .step-details li {
        font-size: 0.9em;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        margin-bottom: 0.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
        max-width: 95vw;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #725251, #a67c7c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

.Wiki {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.Wiki::-webkit-scrollbar {
    height: 8px;
}

.Wiki::-webkit-scrollbar-track {
    background: rgba(114, 82, 81, 0.1);
    border-radius: 10px;
}

.Wiki::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #725251, #a67c7c);
    border-radius: 10px;
}

.Wiki::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #8c6b6b, #b89494);
}

.service-hexagon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 240px;
    background: linear-gradient(135deg, #725251, #8c6b6b);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.service-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    transition: opacity 0.3s ease;
}

.service-hexagon:hover::before {
    opacity: 0;
}

.service-hexagon.a {
    background: linear-gradient(135deg, #1f3b73, #2e5aa3);
}

.service-hexagon.b {
    background: linear-gradient(135deg, #32cd32, #228B22);
}

.service-hexagon.c {
    background: linear-gradient(135deg, #725251, #a67c7c);
}

.service-hexagon:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 20px 50px rgba(114, 82, 81, 0.4);
}

.service-hexagon i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-hexagon span {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 1rem;
}














/* Skills Section */
.skills-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.container-skills {
    max-width: 1200px;
    margin: 0 auto;
}

.skills-interactive {
    margin-top: 3rem;
}

.skills-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid rgba(114, 82, 81, 0.3);
    color: #999;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-color: #725251;
    color: white;
    transform: translateY(-2px);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.skill-item {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #725251;
    box-shadow: 0 10px 30px rgba(114, 82, 81, 0.3);
}

.skill-item.active {
    background: linear-gradient(135deg, rgba(114, 82, 81, 0.2), rgba(20, 20, 20, 0.9));
    border-color: #725251;
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #725251;
}

.skill-item h4 {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
}

.skill-details {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
}
.skillName{

    z-index: 999999;
    color: #ffffff;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: rgba(114, 82, 81, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.level-progress {
    height: 100%;
    background: linear-gradient(90deg, #725251, #a67c7c);
    border-radius: 10px;
    transition: width 0.8s ease;
    width: 0%;
}






/* Code Playground Section */
.playground-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.container-playground {
    max-width: 1400px;
    margin: 0 auto;
}

.playground-interface {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    margin-top: 3rem;
}

.code-tabs {
    display: flex;
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(114, 82, 81, 0.3);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active,
.tab-btn:hover {
    color: #725251;
    border-bottom-color: #725251;
    background: rgba(114, 82, 81, 0.1);
}

.code-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
}

.code-editor {
    border-right: 1px solid rgba(114, 82, 81, 0.3);
}

.code-editor textarea {
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    border: none;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    padding: 1rem;
    resize: none;
    outline: none;
}

.code-result {
    background: white;
}

.code-result iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.playground-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid rgba(114, 82, 81, 0.3);
}

.playground-controls button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.run-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.run-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
}

.clear-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.clear-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
}

.share-btn {
    background: linear-gradient(135deg, #725251, #a67c7c);
    color: white;
}

.share-btn:hover {
    background: linear-gradient(135deg, #8c6b6b, #b89494);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .playground-section {
        display: none !important;
    }
}






/*  animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


button:focus,
input:focus,
a:focus {
    outline: 2px solid #725251;
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .text,
    .service-card p,
    .footer-left p {
        color: #ffffff;
    }
    
    .border-overlay {
        display: none;
    }
}
#force-scroll-gap {
  min-height: 20vh;
}
.phantom-margin {
    width: 100%;
    height: 60px; /* Ajustez la hauteur selon le besoin */
    pointer-events: none;
    background: transparent;
    /* Optionnel : pour visualiser temporairement la marge fantôme, décommentez la ligne suivante */
    /* background: rgba(114,82,81,0.08); */
}
