/**
 * STYLES SPÉCIFIQUES - PAGE OFFRES (offres.php)
 * Jagg.Site - Liste des offres
 */

/* ===================================
   CONTAINER PRINCIPAL
   =================================== */
.offres-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ===================================
   HEADER OFFRES
   =================================== */
.offres-header {
    text-align: center;
    margin-bottom: 60px;
}

.offres-header h1 {
    color: #0d5a73;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offres-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   GRILLE OFFRES
   =================================== */
.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* ===================================
   CARTE OFFRE
   =================================== */
.offre-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.offre-header {
    background: linear-gradient(135deg, #0d5a73 0%, #0a4456 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.offre-header h2 {
    margin: 0 0 15px 0;
    font-size: 1.8rem;
}

.offre-prix {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

/* ===================================
   PROMO PRICING
   =================================== */
.offre-prix-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.offre-prix-barre {
    text-decoration: line-through;
    font-size: 1.3rem;
    opacity: 0.7;
}

.offre-prix-actuel {
    color: #ffc107;
    font-size: 2.8rem;
    font-weight: bold;
}

.offre-badge-promo {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

/* ===================================
   BODY OFFRE
   =================================== */
.offre-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offre-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.offre-validite {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.offre-btn {
    display: block;
    background: #0d5a73;
    color: white;
    text-align: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.offre-btn:hover {
    background: #094456;
    transform: scale(1.02);
}

/* ===================================
   NO OFFRES STATE
   =================================== */
.no-offres {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-offres h2 {
    color: #666;
    margin-bottom: 15px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .offres-grid {
        grid-template-columns: 1fr;
    }

    .offres-header h1 {
        font-size: 2rem;
    }

    .offres-header p {
        font-size: 1rem;
    }
}
