@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2026 2A Digital <info@2adigital.site>
 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.
*/
/* SECTION */
.payment-section.light {
    background: #fff;
    color: #1a1a1a;
    padding: 70px 20px;
    text-align: center;
}

.payment-section.light .subtitle {
    color: #b8965a;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.payment-section.light h2 {
    font-size: 30px;
    margin-bottom: 50px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* CARDS */
.payment-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-card {
    background: #ffffff;
    border: 1px solid #e6e8ec;
    border-radius: 14px;
    padding: 25px;
    width: 280px;
    transition: all 0.3s ease;
}

/* HOVER */
.payment-card:hover {
    transform: translateY(-6px);
    border-color: #b8965a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */
.payment-card .icon {
    font-size: 35px;
    margin-bottom: 15px;
}

/* TEXT */
.payment-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.payment-card p {
    font-size: 14px;
    color: #666;
}

/* SECURITY BLOCK */
.security {
    margin-top: 40px;
    font-size: 14px;
    color: #b8965a;
    padding-top: 20px;
}

.participants-card {
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #b3b2b200;
}

.participants-card h2 {
    margin-bottom: 20px;
    color: #022d1c;
}

.count {
    color: #999;
    font-weight: 400;
}

/* LISTE */

.participants-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.participants-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #3a3a3a32;
    transition: 0.25s;
}

.participants-list li:hover {
    background: #fafafa;
    padding-left: 6px;
}

/* INFO */

.participant-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    width: 100%;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #022d1c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

/* DELETE BUTTON HIDDEN */

.delete-btn {
    border: none;
    background: none;
    font-size: 13px;
    color: #bbb;
    cursor: pointer;

    opacity: 0;
    transform: translateX(8px);

    transition: 0.25s;
}

.participants-list li:hover .delete-btn {
    opacity: 1;
    transform: translateX(0);
}

.delete-btn:hover {
    color: #d11a2a;
}

/* TOTAL */

.participants-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #25252541;
    font-size: 14px;
    color: #666;
}

/* MODAL BACKDROP */
.delete-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 1000;
}

.delete-modal.show {
    opacity: 1;
    visibility: visible;
}

.delete-modal-content {
    background: white;
    padding: 28px;
    border-radius: 12px;
    width: 380px;
    max-width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    transform: scale(.9);
    transition: .25s;
}

.delete-modal.show .delete-modal-content {
    transform: scale(1);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-cancel {
    background: #f3f3f3;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
}

.btn-delete {
    background: #e54848;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
}


/* SECTION */
.how-section {
    background: var(--secondary-dark);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.how-section .subtitle {
    color: #c9a96e;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.how-section h2 {
    font-size: 32px;
    margin-bottom: 60px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* STEPS */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

/* Ligne entre les étapes */
.steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(201, 169, 110, 0.3);
    z-index: 0;
}

/* STEP */
.step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    width: 100%;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-8px);
    border-color: #c9a96e;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
}

/* NUMERO */
.circle {
    width: 60px;
    height: 60px;
    background: #0b0f1a;
    border: 2px solid #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: bold;
    color: #c9a96e;
}

/* TEXT */
.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
    }

    .steps::before {
        display: none;
    }
}