/* --- Styles Page Tarifs --- */

.principe-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 1. Intro (Zig Zag style) */
.intro-tarifs {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.intro-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
}

.intro-text {
    flex: 1;
}

/* 2. Grille des Prix (Cards) */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 5px solid #4C989C; /* Vert pour Individuel */
    transition: transform 0.3s ease;
}

.price-card.highlight {
    border-top: 5px solid #D85939; /* Orange pour Collectif */
    background: #fffaf9; /* Fond très légèrement teinté */
}

.price-card:hover {
    transform: translateY(-5px);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    font-family: 'Lora', serif;
    color: #333;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.link-pdf {
    display: inline-block;
    margin-top: 0.5rem;
    color: #D85939;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
}

/* Lignes de prix */
.price-category {
    margin-bottom: 2rem;
}

.price-category h4 {
    color: #4C989C; /* Vert */
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.highlight .price-category h4 {
    color: #D85939; /* Orange pour la colonne de droite */
}

.desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.price-row {
    display: flex;
    align-items: flex-end; /* Aligne sur la ligne de base */
    margin-bottom: 0.6rem;
}

.price-row .label {
    font-weight: 500;
    color: #444;
}

.price-row .dots {
    flex: 1; /* Prend tout l'espace disponible */
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
    position: relative;
    bottom: 5px; /* Remonte un peu les pointillés */
}

.price-row .value {
    font-weight: 700;
    color: #333;
    min-width: 50px; /* Aligne les prix à droite */
    text-align: right;
}

/* 3. Section Bon Cadeau */
.gift-section {
    background-color: #f4f8f8;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 4rem;
    border: 1px solid #e0eaea;
}

.gift-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.gift-img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gift-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.btn-download {
    display: inline-block;
    background: #ba5a87;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: 0.3s;
}
.btn-download:hover {
    background: #a04870;
    text-decoration: none;
    color: #fff;
}

/* 4. Infos Pratiques (Contact & Lieux) */
.infos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    border: 3px solid #eee;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-card {
    border-color: #4C989C;
}
.location-card {
    border-color: #D85939;
}

.info-card h4 {
    font-family: 'Lora', serif;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-item, .location-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-card a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}
.info-card a:hover {
    color: #000;
}

.icone, .iconemap {
    width: 24px;
    height: auto;
}

.visio-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* --- RESPONSIVE ORDI --- */
@media (min-width: 992px) {
    .intro-tarifs {
        flex-direction: row;
        gap: 4rem;
    }
    .intro-img {
        flex: 1;
    }
    .intro-text {
        flex: 2;
    }

    /* Grille 2 colonnes pour les prix */
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start; /* Empêche d'étirer la hauteur si une carte est plus courte */
    }

    /* Cadeau à l'horizontale */
    .gift-content {
        flex-direction: row;
        text-align: left;
    }
    .gift-text {
        flex: 1;
    }

    /* Infos pratiques sur 2 colonnes */
    .infos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Styles communs copiés (Titre, icones) */
.section-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: #4C989C;
    margin: 0;
}
.title-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}
.pissenlit-icon {
    width: 35px;
}