:root {
    --color-orange: rgb(239, 191, 4);
    --color-orange-rgb: 239, 191, 4;
}

.prestations-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 2rem;
    background: #000000;
    overflow: hidden;
}

.prestations-title {
    text-align: center;
    color: white;
    font-family: 'Tallica', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 2rem 0;
}

.prestations-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    margin-bottom: 1rem;
}

.prestations-description {
    flex: 0 0 45%;
    color: white;
    font-family: 'Sintony', sans-serif;
    padding-right: 2rem;
}

.prestations-description p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
}

.prestations-details {
    flex: 0 0 45%;
    color: white;
    font-family: 'Sintony', sans-serif;
}

.prestations-details p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-family: 'Tallica', sans-serif;
}

.prestations-details ul {
    list-style: none;
    padding-left: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
}

.prestations-details li {
    margin: 0.8rem 0;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    position: relative;
    padding-left: 1.5rem;
}

.prestations-details li:before {
    content: "•";
    color: var(--color-orange);
    position: absolute;
    left: 0;
}

.prestations-scroll-container {
    flex: 1;
    position: relative;
    margin-top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    transform: translateX(50%);
}

.prestations-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
    height: auto;
}

.prestation-item {
    position: relative;
    width: clamp(280px, 40vw, 400px);
    height: clamp(180px, 25vh, 220px);
    opacity: 0;
    overflow: hidden;
}

.prestation-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.prestation-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: 'Tallica', sans-serif;
    text-align: center;
    font-size: 1.2rem;
}

.scroll-arrow {
    display: none;
    position: absolute;
    top: calc(50% - 1rem);
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    padding: 0;
}

.scroll-arrow.left {
    left: 5%;
}

.scroll-arrow.right {
    right: 5%;
}

.scroll-arrow i {
    width: 24px;
    height: 24px;
    color: var(--color-orange);
}

.scroll-arrow:hover {
    background-color: var(--color-orange);
}

@media (max-width: 1024px) {
    .prestations-content {
        padding: 0 2rem;
    }

    .prestations-description,
    .prestations-details {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .prestations-page {
        padding: 1rem;
    }

    .prestations-content {
        flex-direction: column;
        padding: 0 1rem;
        gap: 2rem;
    }

    .prestations-description,
    .prestations-details {
        flex: none;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .prestations-details ul {
        text-align: left;
    }

    .scroll-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prestations-container {
        left: 0;
        transform: none;
        transition: transform 0.3s ease;
    }

    .prestation-item {
        width: calc(100vw - 4rem);
        height: 250px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .prestations-title {
        margin: 1rem 0;
    }

    .prestation-item {
        height: 200px;
    }

    .prestations-content {
        gap: 1rem;
    }
} 
