/* --- FUSION DU CSS PRÉCÉDENT ET AJOUTS SPÉCIFIQUES --- */
:root {
    --ts-primary: #6366f1; /* Indigo principal du thème */
    --ts-secondary: #f59e0b; /* Amber accent du thème */
    --ts-background: #f8fafc; /* Fond secondaire du thème */
    --ts-text: #1f2937; /* Texte principal du thème */
    --ts-font-title: 'Poppins', sans-serif;
    --ts-font-body: 'Roboto', sans-serif;
}

/* Base et Section styles (réutilisés) */
.ts-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: var(--ts-font-body);
    color: var(--ts-text);
}
.ts-section {
    padding: 40px 0;
    margin-bottom: 30px;
}
.ts-section h2 {
    font-family: var(--ts-font-title);
    color: var(--ts-primary);
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--ts-secondary);
    display: inline-block;
    padding-bottom: 5px;
}

/* --- HERO SECTION --- */
.ts-hero {
    background: url('../images/hebergement_hero.webp') no-repeat center center / cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.ts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    z-index: 1;
}

.ts-hero h1 {
    font-size: 3.5em;
    font-family: var(--ts-font-title);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    color: white;
}

.ts-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: white;
}

/* --- HÉBERGEMENT PARTAGÉ - CARTE DE PRIX --- */
.ts-price-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.ts-price-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 350px;
    border-top: 5px solid var(--ts-primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ts-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ts-price-card h3 {
    color: var(--ts-secondary);
    font-family: var(--ts-font-title);
    font-size: 1.8em;
    margin-top: 0;
}

.ts-price {
    font-size: 3em;
    font-weight: bold;
    color: var(--ts-primary);
    line-height: 1;
}

.ts-price span {
    font-size: 0.5em;
    font-weight: normal;
    color: var(--ts-text);
}

.ts-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.ts-features-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.ts-features-list i { /* Icône Checkmark */
    color: #06b6d4; /* Cyan succès du thème */
    margin-right: 10px;
}

/* --- VPS HIGHLIGHT --- */
.ts-vps-highlight {
    background: var(--ts-background);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed var(--ts-secondary);
    margin-top: 40px;
}

.ts-vps-highlight h3 {
    color: var(--ts-primary);
    font-family: var(--ts-font-title);
    font-size: 2em;
}

/* Boutons (réutilisés) */
.ts-button {
    background-color: var(--ts-secondary);
    color: white !important;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: background-color 0.3s;
    position: relative;
    z-index: 2;
}

.ts-button:hover {
    background-color: #d97706; /* Amber plus foncé */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .ts-page-container {
        padding: 10px;
    }
    .ts-hero {
        padding: 40px 15px;
    }
    .ts-hero h1 {
        font-size: 2.5em;
    }
    .ts-hero p {
        font-size: 1.1em;
    }
    .ts-price-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .ts-price-card {
        max-width: 100%;
        padding: 20px;
    }
    .ts-price {
        font-size: 2.5em;
    }
    .ts-vps-highlight {
        padding: 20px;
    }
    .ts-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
