/* style.css - VERSION COMPLÈTE ET CORRECTE */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #f8f7f2;
    color: #5a5a5a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #e8f4f1;
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #d1e0db;
    background-image: linear-gradient(to bottom, #e8f4f1, #ddeae6);
}

header h1 {
    font-family: 'Garamond', 'Palatino', serif;
    color: #7a9d96;
    margin: 0 0 0.5rem 0;
    font-size: 2.8rem;
    letter-spacing: 1px;
}

.subtitle {
    color: #a8b6b1;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
}

nav a {
    color: #8a7f7a;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #7a9d96;
    text-decoration: underline wavy #7a9d96;
}

.blog-post {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 2rem auto;
    padding: 2.5rem;
    max-width: 700px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #f0ede5;
    border-radius: 8px;
}

.blog-post h2 {
    color: #8a7f7a;
    font-family: 'Garamond', serif;
    border-bottom: 2px dotted #d1e0db;
    padding-bottom: 0.5rem;
}

.main-image {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 1rem auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #e8f4f1;
    color: #7a9d96;
    font-size: 0.9rem;
    border-top: 2px solid #d1e0db;
}

/* === STYLES ABOUT PAGE === */
.about-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-sidebar {
    flex: 1;
    min-width: 250px;
}

.sidebar-box {
    background-color: rgba(248, 247, 242, 0.7);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #7a9d96;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-box h4 {
    color: #7a9d96;
    margin-top: 0;
    font-family: 'Garamond', serif;
    border-bottom: 1px dotted #d1e0db;
    padding-bottom: 0.5rem;
}

.sidebar-box ul {
    padding-left: 1rem;
}

.sidebar-box li {
    margin-bottom: 0.3rem;
}

.signature {
    font-style: italic;
    color: #8a7f7a;
    border-top: 1px dashed #d1e0db;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.about-text h3 {
    color: #7a9d96;
    font-family: 'Garamond', serif;
    margin-top: 1.5rem;
    border-bottom: 1px dotted #d1e0db;
    padding-bottom: 0.3rem;
}

.note-box {
    background-color: #f0f7f4;
    border: 1px solid #d1e0db;
    border-radius: 6px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #7a9d96;
}

.note-box p {
    margin: 0;
    color: #5a5a5a;
}

.header-decoration {
    text-align: center;
    margin: 2rem 0;
}

.vintage-border {
    border-top: 2px double #d1e0db;
    border-bottom: 2px double #d1e0db;
    padding: 1rem 0;
    margin: 2rem 0;
    font-style: italic;
    color: #8a7f7a;
}

.flourish {
    font-size: 1.5rem;
    color: #7a9d96;
    margin: 0 1rem;
}

.fancy-box {
    background: #fff;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #f0ede5;
    border-radius: 15px 0 15px 0;
    box-shadow: 5px 5px 0px rgba(122, 157, 150, 0.1);
    position: relative;
}

.fancy-box::before {
    content: "❦";
    position: absolute;
    top: -10px;
    left: -10px;
    background: #f8f7f2;
    padding: 0 10px;
    color: #7a9d96;
    font-size: 1.2rem;
}

.fancy-box h3 {
    margin-top: 0;
    color: #7a9d96;
}

.separator {
    text-align: center;
    margin: 2rem 0;
    color: #d1e0db;
}

.separator::before {
    content: "✨〜〜✨〜〜✨";
    letter-spacing: 3px;
}

.pretty-quote {
    font-style: italic;
    padding: 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f8f7f2 0%, #e8f4f1 100%);
    border-left: 4px solid #7a9d96;
    position: relative;
    border-radius: 0 8px 8px 0;
}

.pretty-quote::before {
    content: "“";
    font-size: 4rem;
    color: #d1e0db;
    position: absolute;
    left: 10px;
    top: -10px;
    font-family: serif;
    opacity: 0.7;
}

.badges-container {
    text-align: center;
    margin: 1rem 0;
}

.history-badge {
    display: inline-block;
    background: #e8f4f1;
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    border-radius: 20px;
    border: 1px solid #d1e0db;
    font-size: 0.9rem;
    color: #7a9d96;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.fancy-list {
    list-style: none;
    padding-left: 0;
}

.fancy-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.fancy-list li::before {
    content: "❧";
    color: #7a9d96;
    position: absolute;
    left: 0;
}

.elegant-list {
    list-style: none;
    padding: 0;
}

.elegant-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #d1e0db;
    position: relative;
    padding-left: 1.5rem;
}

.elegant-list li::before {
    content: "❖";
    color: #7a9d96;
    position: absolute;
    left: 0;
}

/* === STYLES HISTORY PAGE === */
.page-header {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.page-header h1 {
    font-family: 'Garamond', serif;
    color: #7a9d96;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #8a7f7a;
    font-style: italic;
    font-size: 1.1rem;
}

.articles-grid {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-preview {
    background: white;
    border: 1px solid #e8e0d0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.article-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7a9d96, #d1e0db);
    border-radius: 12px 12px 0 0;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-date {
    color: #a8b6b1;
}

.article-category {
    color: #7a9d96;
    font-weight: 500;
}

.article-preview h2 {
    margin: 0 0 1rem 0;
    font-family: 'Garamond', serif;
    color: #5a5a5a;
}

.article-preview h2 a {
    color: inherit;
    text-decoration: none;
}

.article-preview h2 a:hover {
    color: #7a9d96;
}

.article-excerpt {
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview-footer {
    display: flex;
    justify-content: flex-end;
}

.read-more {
    color: #7a9d96;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #5a5a5a;
    text-decoration: underline;
}

.coming-soon {
    opacity: 0.7;
    background: linear-gradient(135deg, #f8f7f2, #eef7f4);
}

.coming-soon:hover {
    transform: none;
}

/* === STYLES ARTICLE CASSINI === */
.historical-article {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-header h1 {
    font-family: 'Garamond', serif;
    color: #7a9d96;
    font-size: 2.5rem;
    margin: 1rem 0;
    border-bottom: 3px double #d1e0db;
    padding-bottom: 1rem;
}

.article-category {
    font-style: italic;
    color: #8a7f7a;
    letter-spacing: 2px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    color: #a8b6b1;
    font-size: 0.9rem;
}

.intro-box {
    background: linear-gradient(135deg, #f8f7f2, #e8f4f1);
    border: 2px solid #d1e0db;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.intro-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f8f7f2;
    padding: 0 1rem;
    font-size: 1.5rem;
}

.content-section {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    align-items: flex-start;
}

.text-content {
    flex: 2;
}

.decoration-side {
    flex: 1;
    min-width: 200px;
}

.portrait-frame {
    border: 3px solid #8a7f7a;
    padding: 2rem;
    text-align: center;
    background: #f8f7f2;
    box-shadow: 5px 5px 0px rgba(122, 157, 150, 0.2);
    position: relative;
}

.portrait-frame::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid #d1e0db;
    z-index: -1;
}

.portrait-placeholder {
    height: 150px;
    background: #e8f4f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a9d96;
    font-style: italic;
    margin-bottom: 1rem;
}

.frame-caption {
    font-size: 0.8rem;
    color: #8a7f7a;
    border-top: 1px solid #d1e0db;
    padding-top: 0.5rem;
}

.callout-box {
    background: #7a9d96;
    color: white;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(122, 157, 150, 0.3);
}

.callout-box h3 {
    margin: 0;
    font-family: 'Garamond', serif;
}

.timeline-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(248, 247, 242, 0.5);
    border-radius: 12px;
}

.timeline {
    position: relative;
    margin-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d1e0db;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    background: #f8f7f2;
    color: #7a9d96;
    width: 2rem;
    height: 2rem;
    border: 2px solid #d1e0db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.timeline-content {
    margin-left: 1rem;
}

.timeline-content h4 {
    color: #7a9d96;
    margin-bottom: 0.5rem;
    font-family: 'Garamond', serif;
}

.achievements-section {
    margin: 3rem 0;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.achievement-card {
    background: white;
    border: 1px solid #e8e0d0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7a9d96, #d1e0db);
    border-radius: 8px 8px 0 0;
}

.card-header {
    font-family: 'Garamond', serif;
    color: #7a9d96;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.france-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f7f2, #eef7f4);
    border-radius: 12px;
    border: 2px solid #d1e0db;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-decoration h2 {
    margin: 0;
    color: #7a9d96;
    font-family: 'Garamond', serif;
}

.decoration-left, .decoration-right {
    font-size: 1.5rem;
}

.french-offer {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.offer-details {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #7a9d96;
}

.discoveries-section {
    margin: 3rem 0;
}

.discovery-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.discovery-item {
    background: rgba(232, 244, 241, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #d1e0db;
}

.discovery-item h4 {
    color: #7a9d96;
    margin-bottom: 0.5rem;
    font-family: 'Garamond', serif;
}

.legacy-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(248, 247, 242, 0.7);
    border-radius: 12px;
}

.legacy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legacy-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #7a9d96;
}

.point-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.article-footer {
    text-align: center;
    margin: 3rem 0;
}

.closing-note {
    background: linear-gradient(135deg, #f8f7f2, #e8f4f1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px double #d1e0db;
    font-style: italic;
    color: #5a5a5a;
}

/* === STYLES POUR LA SECTION PASSIONS === */
.passions-article {
    margin-top: 3rem;
}

.passions-section {
    margin: 2rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f7f2, #eef7f4);
    border-radius: 12px;
    border: 2px double #d1e0db;
    position: relative;
}

.passions-section h3 {
    text-align: center;
    color: #7a9d96;
    font-family: 'Garamond', serif;
    margin: 0;
    font-size: 1.8rem;
}

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

.passion-category {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e8e0d0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.passion-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.passion-category h4 {
    color: #7a9d96;
    font-family: 'Garamond', serif;
    margin-top: 0;
    border-bottom: 1px dotted #d1e0db;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Signature vintage */
.vintage-signature {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    position: relative;
}

.signature-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d1e0db, transparent);
    margin: 0 auto 1.5rem;
}

.companion-text {
    font-style: italic;
    color: #8a7f7a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.signature-name {
    font-family: 'Garamond', serif;
    color: #7a9d96;
    font-size: 1.3rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.signature-name::before,
.signature-name::after {
    content: "❦";
    color: #d1e0db;
    margin: 0 1rem;
}

/* Effet de parchemin pour toute la section */
.passions-section::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    pointer-events: none;
}

/* === STYLES RESPONSIVE === */
@media (max-width: 768px) {
    .content-section, .french-offer, .discovery-highlight, .achievement-cards {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .preview-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .passions-grid {
        grid-template-columns: 1fr;
    }
    
    .passions-section {
        padding: 1.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .articles-grid {
        padding: 0 0.5rem;
    }
    
    .blog-post {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    header {
        padding: 1.5rem;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
}