/* ==========================================================================
   THÈME VINTAGE - Styles pour les pages avec thématique rétro/vintage
   Fichier: 06-themes/vintage.css
   ========================================================================== */

/* ==========================================================================
   HERO SECTION VINTAGE
   ========================================================================== */
.vintage-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f5f5dc;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    height: 25vh;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
}

.vintage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(245, 245, 220, 0.03) 10px,
            rgba(245, 245, 220, 0.03) 20px
        );
    z-index: 1;
}

.vintage-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, rgba(160, 82, 45, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
    z-index: 1;
}

.vintage-hero > * {
    position: relative;
    z-index: 2;
}

.vintage-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    font-weight: 700;
    color: #f5f5dc;
}

.vintage-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 0.95;
    line-height: 1.6;
}

/* ==========================================================================
   ÉLÉMENTS VINTAGE
   ========================================================================== */

/* Boutons vintage */
.btn-vintage {
    background: #8b4513;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #8b4513;
}

.btn-vintage:hover {
    background: #a0522d;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Cartes vintage */
.vintage-card {
    background: linear-gradient(145deg, #f5f5dc, #ddbf8f);
    border: 2px solid #8b4513;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    position: relative;
}

.vintage-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 8px;
    pointer-events: none;
}

.vintage-card h3 {
    color: #8b4513;
    margin-bottom: 15px;
    font-family: serif;
    font-weight: bold;
}

.vintage-card p {
    color: #5d4037;
    line-height: 1.6;
}

/* Mise en évidence vintage */
.vintage-highlight {
    background: #fff8dc;
    border-left: 4px solid #daa520;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 3px 10px rgba(218, 165, 32, 0.2);
}

.vintage-highlight h4 {
    color: #b8860b;
    margin-bottom: 10px;
    font-family: serif;
}

/* Section de contenu vintage */
.vintage-section {
    background: linear-gradient(145deg, #faf0e6, #f5deb3);
    padding: 60px 0;
    position: relative;
}

.vintage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(139, 69, 19, 0.02) 50px,
            rgba(139, 69, 19, 0.02) 52px
        );
    pointer-events: none;
}

/* Badges et étiquettes vintage */
.vintage-badge {
    background: linear-gradient(45deg, #daa520, #b8860b);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Titre vintage avec ornements */
.vintage-title {
    font-family: serif;
    color: #8b4513;
    text-align: center;
    position: relative;
    margin: 40px 0;
    font-size: 2.2rem;
    font-weight: bold;
}

.vintage-title::before,
.vintage-title::after {
    content: '❦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #daa520;
    font-size: 1.5rem;
}

.vintage-title::before {
    left: -50px;
}

.vintage-title::after {
    right: -50px;
}

/* Bordure ornementale vintage */
.vintage-border {
    border: 3px solid #8b4513;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    background: #faf0e6;
}

.vintage-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid #daa520;
    border-radius: 17px;
    pointer-events: none;
}

/* Liste vintage */
.vintage-list {
    list-style: none;
    padding: 0;
}

.vintage-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px dotted #8b4513;
}

.vintage-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #daa520;
    font-weight: bold;
}

.vintage-list li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   RESPONSIVE VINTAGE
   ========================================================================== */
@media (max-width: 768px) {
    .vintage-hero {
        height: 50vh;
        min-height: 400px;
        padding: 20px 15px;
    }
    
    .vintage-hero h1 {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .vintage-hero p {
        font-size: 1.1rem;
        max-width: 90%;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .vintage-title::before,
    .vintage-title::after {
        display: none;
    }
    
    .vintage-card {
        padding: 20px;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .vintage-hero h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .vintage-hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .vintage-title {
        font-size: 1.8rem;
    }
    
    .vintage-card {
        padding: 15px;
    }
}