.APDM-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    width: 80%;
    margin: auto;
}

.card header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.APDM-title-text {
    color: var(--color-gold);
    font-family: "Montserrat", "sans-serif";
    font-size: 48px;
}

.APDM-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.APDM-text-gold {
    color: var(--color-gold)
}

.APDM-frame-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%
}

.photo-me {
    width: 60%;
    border: 4px solid var(--color-gold);
    border-radius: 20px;
}


/* zone progress bar */
.APDM-frame-progress {
    width: 50%;
    border: var(--border);
    border-radius: 16px;
    background-color: #1A1A1A;

    padding: 30px;
    overflow: hidden;

    color: var(--text-color)
}

.APDM-frame-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFC700 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.APDM-frame-progress:hover::before {
    transform: scaleX(1);
}

.APDM-frame-progress:hover {
    transform: translateY(-4px);
    border-color: #FFD700;
    box-shadow: var(--card-shadow);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 1) 100%);
}


.APDM-progress-title {
    color: var(--color-gold);
    font-weight: 800;
    font-size: 32px;
}

.APDM-progress-row {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.APDM-progress-area {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px
}


progress {
    width: 100%;
    height: 12px;
    appearance: none;
}

progress::-webkit-progress-bar {
    background: #262626;
    border-radius: 6px;
}

progress::-webkit-progress-value {
    background: var(--color-gold);
    border-radius: 6px;
}

/* ---- Firefox ---- */
progress::-moz-progress-bar {
    background: var(--color-gold);
    border-radius: 6px;
}


/* box recherche */
.box-recherche {
    background-color: #262319;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgb(51, 51, 51);
    margin-top: 18px
}

.box-recherche h3 {
    color: var(--color-gold);
    font-size: 20px;
}

/* liens vers mon cv */
.btn-cv {
    padding: 10px;
    margin:auto;
    width: 40%;
    background-color: var(--color-gold);
    border-radius: 10px;
    color: black;
    text-align: center;
    font-weight: 700;
}


.btn-cv:hover{
    transform: scale(1.05);
    box-shadow: 2px 2px 10px 2px rgb(111, 102, 16);
}