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

/* ===== PAGE LAYOUT ===== */
.page-privatisation {
    min-height: 100vh;
    padding: 120px 20px 80px;
}

/* ===== BACK BUTTON ===== */
.page-privatisation .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 15px rgba(255, 255, 255, 0.2);
}

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

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

/* ===== PAGE TITLE ===== */
.privatisation-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    font-style: normal;
    color: var(--color-white);
    margin-bottom: 60px;
}

/* ===== SALLES LIST ===== */
.salles-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

/* ===== SALLE CARD ===== */
.salle-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(140, 140, 140, 0.5);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    align-items: center;
}

.salle-card--right {
    direction: rtl;
}

.salle-card--right > * {
    direction: ltr;
}

.salle-card--right .salle-content {
    text-align: right;
    align-items: flex-end;
}

/* ===== SALLE IMAGE ===== */
.salle-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.salle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* ===== SALLE CONTENT ===== */
.salle-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.salle-capacite {
    font-size: 0.95rem;
    color: var(--color-white);
    font-weight: 500;
}

.salle-description {
    font-size: 0.9rem;
    color: var(--color-white);
    line-height: 1.6;
}

.btn-salle {
    display: inline-block;
    width: fit-content;
    background: transparent;
    color: var(--color-white);
    padding: 12px 25px;
    border: 1px solid var(--color-white);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-salle:hover {
    background: var(--color-white);
    color: var(--color-bg-dark);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* ===== INFO SECTIONS ===== */
.privatisation-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-title {
    font-size: 1.9rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-white);
}

.info-text {
    font-size: 1.4rem;
    color: var(--color-white);
    line-height: 1.7;
}

.info-text strong {
    color: var(--color-white);
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .salle-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .salle-card--right {
        direction: ltr;
    }
    
    .salle-content,
    .salle-card--right .salle-content {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-privatisation {
        padding: 100px 15px 60px;
    }
    
    .page-privatisation .back-button {
        top: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .privatisation-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    .salle-card {
        padding: 25px;
    }
    
    .info-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .salle-image {
        aspect-ratio: 16/10;
    }
}

/* ===== SCROLL TO TOP ===== */
.page-privatisation .scroll-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 60px auto 0;
    background: var(--color-white);
    color: var(--color-bg-dark);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.page-privatisation .scroll-to-top:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.page-privatisation .scroll-to-top svg {
    width: 28px;
    height: 28px;
}
