/* === Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2a2a2a;
    background: #f9f7f4;
    line-height: 1.7;
}

/* === Button Reset === */
button.landCfg {
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

/* === Top Navigation === */
.top-nav {
    background: #2a2a2a;
    border-bottom: 3px solid #c41e3a;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.top-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.site-title {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c41e3a;
    font-style: italic;
}

.nav-ctas {
    display: flex;
    gap: 1rem;
}

.nav-cta {
    background: #c41e3a;
    color: white;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-cta:hover {
    background: #a01828;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-ctas {
        display: none;
    }
}

/* === Hero Magazine === */
.hero-magazine {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-magazine h1 {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-style: italic;
    letter-spacing: -0.02em;
}

.hero-magazine .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #c41e3a;
    display: block;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Arial', sans-serif;
}

/* === Highlight N°1 === */
.highlight-n1 {
    background: linear-gradient(135deg, #c41e3a 0%, #a01828 100%);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    position: relative;
    top: -2px;
}

/* === Bottom Bar === */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #c41e3a;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.bottom-bar.visible {
    transform: translateY(0);
}

.bottom-bar-cta {
    background: white;
    color: #c41e3a;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.bottom-bar-cta:hover {
    transform: scale(1.05);
}

/* === Masonry Layout === */
.masonry-container {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.masonry-grid {
    column-count: 3;
    column-gap: 2rem;
}

@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .masonry-grid {
        column-count: 1;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
}

.masonry-item.featured {
    border: 3px solid #c41e3a;
}

.item-image {
    width: 100%;
    height: auto;
    display: block;
}

.item-content {
    padding: 2rem;
}

.item-category {
    display: inline-block;
    background: #c41e3a;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.item-title {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a2a2a;
    line-height: 1.3;
}

.item-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.item-list {
    list-style: none;
    margin: 1.5rem 0;
}

.item-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

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

.item-list li::before {
    content: '→';
    color: #c41e3a;
    font-weight: 700;
    margin-right: 0.8rem;
}

/* === Quote Block === */
.quote-block {
    background: #2a2a2a;
    color: white;
    padding: 3rem;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    border-left: 5px solid #c41e3a;
}

.quote-author {
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.8;
    font-family: 'Arial', sans-serif;
}

/* === Pricing Cards === */
.pricing-section {
    background: #2a2a2a;
    color: white;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.pricing-section h2 {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background: white;
    color: #2a2a2a;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.price-card.highlight {
    background: #c41e3a;
    color: white;
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.price-label {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-card.highlight .price-features li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.price-features li::before {
    content: '✓';
    color: #c41e3a;
    font-weight: 700;
    margin-right: 0.8rem;
}

.price-card.highlight .price-features li::before {
    color: white;
}

/* === Testimonial Grid === */
.testimonial-grid {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #c41e3a;
}

.testimonial-stars {
    color: #c41e3a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
}

/* === FAQ Section === */
.faq-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    color: #2a2a2a;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #c41e3a;
}

.faq-question {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* === Final CTA === */
.final-cta {
    background: #c41e3a;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.cta-button {
    background: white;
    color: #c41e3a;
    padding: 1.5rem 4rem;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* === Footer === */
footer {
    background: #2a2a2a;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-magazine h1 {
        font-size: 2.5rem;
    }
    
    .hero-magazine .tagline {
        font-size: 1.2rem;
    }
    
    .item-title {
        font-size: 1.5rem;
    }
    
    .pricing-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
}

/* === Prelinker Form === */
.ptprelinker-register-form {
    /****** En tête gold / iron / silver ******/
    --ptprelinker-css-bg-primary-register-gold: #f5e8f0 !important;
    --ptprelinker-css-ft-primary-register-gold: #c41e3a !important;

    /****** Bouton ******/
    --ptprelinker-css-bg-success: #c41e3a !important;
    --ptprelinker-css-border-success: #c41e3a !important;
    --ptprelinker-css-border-hover-success: #c41e3a !important;
    --ptprelinker-css-hover-success: #c41e3a !important;
    --ptprelinker-css-ft-success: #fff !important;

    /****** Content ******/
    --ptprelinker-css-bg-body: #ffffff !important;
    --ptprelinker-css-middle: #3a3a3a;

    /****** Icon ******/
    --ptprelinker-css-bg-icon-register-gold: #f5e8f0 !important;
    --ptprelinker-css-color-icon-register-gold: #c41e3a !important;

    /****** Input ******/
    --ptprelinker-css-bg-input: #f5f5f5 !important;
    --ptprelinker-css-ft-placeholder: #999 !important;
}
