/**
 * Page Confirmation - Styles spécifiques
 * @package RoadHouse
 */

/* ===== PAGE LAYOUT ===== */
.page-confirmation {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}

/* ===== BACK BUTTON ===== */
.page-confirmation .back-button {
    position: fixed;
    top: 30px;
    left: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--color-white);
    background: transparent;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.page-confirmation .back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.page-confirmation .back-button svg {
    width: 24px;
    height: 24px;
}

/* ===== CONFIRMATION CONTAINER ===== */
.confirmation-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ===== CONFIRMATION CONTENT ===== */
.confirmation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.confirmation-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 5px;
}

.confirmation-message {
    font-size: 0.95rem;
    color: var(--color-white);
    line-height: 1.6;
    max-width: 450px;
}

/* ===== BUTTONS ===== */
.confirmation-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
}

.btn-accueil {
    display: block;
    background: var(--color-white);
    color: var(--color-bg-dark);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-accueil:hover {
    background: var(--color-gray-light);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.btn-avis {
    display: block;
    background: transparent;
    color: var(--color-bg-dark);
    padding: 15px 40px;
    border: 1px solid var(--color-white);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    background: var(--color-white);
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-avis:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-confirmation {
        padding: 100px 15px 60px;
    }
    
    .page-confirmation .back-button {
        top: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .confirmation-title {
        font-size: 1rem;
    }
    
    .confirmation-message {
        font-size: 0.9rem;
    }
}
