/* 
* KarlGoods.com Article Page CSS
* Ce fichier contient les styles spécifiques aux pages d'articles
*/

:root {
    --primary-blue: #0A3B5C;    /* Bleu marine profond du logo */
    --secondary-color: #FF8C00; /* Orange vif du logo */
    --tertiary-color: #40BFA0;  /* Vert turquoise/menthe du logo */
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --article-accent: #4F46E5;  /* Couleur d'accent spécifique pour les articles */
}

.article-hero {
    background: linear-gradient(135deg, #6366F1, var(--article-accent));
    color: #fff;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.article-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.article-hero-title {
    font-size: 4.2rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
}

.article-content h2 {
    font-size: 3rem;
    color: var(--article-accent);
    margin: 4rem 0 2rem;
}

.article-content h3 {
    font-size: 2.4rem;
    color: var(--article-accent);
    margin: 3rem 0 1.5rem;
}

.event-info {
    background-color: #EEF2FF;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.event-info h3 {
    color: var(--article-accent);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.event-detail {
    display: flex;
    align-items: flex-start;
}

.event-detail i {
    color: var(--article-accent);
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.event-detail-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
    color: #4B5563;
}

.event-detail-content p {
    margin: 0;
    font-size: 1.6rem;
    color: #1F2937;
}

.artist-highlight {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.artist-image {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-content {
    flex: 1;
    min-width: 300px;
}

.artist-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.artist-content p {
    margin-bottom: 1.5rem;
}

.artwork-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.artwork-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.artwork-image {
    height: 200px;
    overflow: hidden;
}

.artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artwork-item:hover .artwork-image img {
    transform: scale(1.05);
}

.artwork-caption {
    padding: 1.5rem;
    background-color: #fff;
}

.artwork-caption h4 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    color: #1F2937;
}

.artwork-caption p {
    margin: 0;
    font-size: 1.4rem;
    color: #6B7280;
}

.cta-box {
    background: linear-gradient(135deg, #6366F1, var(--article-accent));
    border-radius: 12px;
    padding: 3rem;
    margin: 4rem 0;
    color: #fff;
    text-align: center;
}

.cta-box h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: var(--article-accent);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #EEF2FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .article-hero-title {
        font-size: 3.2rem;
    }
    
    .article-content h2 {
        font-size: 2.6rem;
    }
    
    .article-content h3 {
        font-size: 2.2rem;
    }
    
    .artist-image {
        flex: 0 0 100%;
        height: 200px;
    }
}