/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light grey background */
    color: #333;
}

/* Header and Navigation */
header {
    background: #ffffff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

nav .logo img {
    height: 60px; /* Increased size */
    background-color: transparent; /* Ensure no background */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 10px;
}

.header-extra .user-icon {
    display: inline-block;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.header-extra .user-icon svg {
    width: 28px;  /* Adjust size as needed */
    height: 28px;
    stroke: #333; /* Initial color */
    transition: stroke 0.3s ease;
}

.header-extra .user-icon:hover svg {
    stroke: #0056b3; /* Color on hover */
}

nav ul li a:hover {
    color: #0056b3; /* Darker blue on hover */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    background-image: url('../images/relation-client.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #ffffff;
    color: #007bff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.service-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}

.service-item h3 {
    color: #007bff;
    margin-top: 0;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 1rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-link:hover .service-item {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition to the item itself */
}

/* Roadmap Section */
.roadmap {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.roadmap h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.roadmap > p {
    text-align: center;
    margin-bottom: 4rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.roadmap-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
}

.roadmap-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.roadmap-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.roadmap-arrow {
    font-size: 2.5rem;
    color: #007bff;
    align-self: center;
    margin: 0 1rem;
}

/* Footer */
footer {
    background: #343a40; /* Dark grey/black */
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #adb5bd;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.social-links a svg {
    width: 24px;
    height: 24px;
    stroke: #adb5bd;
    transition: stroke 0.3s ease;
}

.social-links a:hover svg {
    stroke: #ffffff;
}

.social-links-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #333;
    font-weight: normal;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.social-links-contact a:hover {
    color: #0056b3;
}
.social-links-contact a svg {
    width: 28px;
    height: 28px;
    stroke: #0056b3;
}


/* Pricing Section - New Design */
.pricing-section {
    padding: 5rem 2rem;
    background-color: #f4f7fc;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-basis: 340px;
    max-width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card__header {
    margin-bottom: 1.5rem;
}

.pricing-card__title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
}

.pricing-card__subtitle {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-card__price {
    margin-bottom: 1.5rem;
}

.pricing-card__price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.pricing-card__price-period {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.pricing-card__description {
    color: #7f8c8d;
    margin-bottom: 2rem;
    min-height: 60px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-card__features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
}

.pricing-card__features .fa-check-circle {
    color: #2ecc71;
}

.pricing-card .cta-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: auto;
}

.pricing-card .cta-button:hover {
    background-color: #2980b9;
}

/* Featured Card Styles */
.pricing-card--featured {
    transform: scale(1.05);
    border: 2px solid #e74c3c;
}

.pricing-card--featured .cta-button--featured {
    background-color: #e74c3c;
}

.pricing-card--featured .cta-button--featured:hover {
    background-color: #c0392b;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    color: #666;
    font-style: italic;
}

/* Quote Form Section */
.quote-form-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.quote-form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.quote-form-section p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.quote-form fieldset {
    border: 1px solid #ddd;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.quote-form legend {
    padding: 0 1rem;
    font-weight: bold;
    color: #007bff;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; /* Important for padding and width */
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.form-group label[for="consent"] {
    display: inline;
    font-weight: normal;
}

.quote-form .cta-button {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-section p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info h3 {
    color: #007bff;
    margin-top: 0;
}

.contact-info p {
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-form .cta-button {
     display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

@media (max-width: 992px) { /* Adjusted breakpoint for better responsiveness */
    nav ul {
        display: none;
        flex-direction: column;
        width: 90%;
        max-width: 300px;
        background-color: #ffffff;
        position: absolute;
        top: 80px; /* Position below the header */
        right: 5%;
        padding: 1rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        border-radius: 8px;
        z-index: 1000; /* High z-index to appear on top */
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        text-align: left;
        border-radius: 5px;
        transition: background-color 0.2s ease;
    }

    nav ul li a:hover {
        background-color: #f4f4f4;
        color: #0056b3;
    }

    .menu-toggle {
        display: flex;
        order: 3; /* Ensure it comes after the logo and extra button */
        margin-left: 1rem;
    }

    .header-extra {
        order: 2;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        flex-basis: 100%;
        max-width: 450px;
    }
    .pricing-card--featured {
        transform: scale(1); /* Disable scale on smaller screens for better layout */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .services {
        width: auto;
        padding: 2rem 1rem;
    }

    .service-link {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }

    .roadmap-timeline {
        flex-direction: column;
        align-items: center;
    }

    .roadmap-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 90%;
        max-width: 300px;
        background-color: #ffffff;
        position: absolute;
        top: 70px; /* Position below the header */
        right: 5%;
        padding: 1rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        border-radius: 8px;
        z-index: 1000; /* High z-index to appear on top */
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        text-align: left;
        border-radius: 5px;
        transition: background-color 0.2s ease;
    }

    nav ul li a:hover {
        background-color: #f4f4f4;
        color: #0056b3;
    }

    .menu-toggle {
        display: flex;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        max-width: 400px; /* Limit width for better readability */
    }

    .article-card {
        margin: 0 auto; /* Center individual cards */
    }
}

/* CGV Page Styles */
.cgv-section {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin: 2rem auto;
    max-width: 900px;
}

.cgv-section h1, .cgv-section h2 {
    color: #0056b3;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.cgv-section h1 {
    font-size: 2.2rem;
    text-align: center;
}

.cgv-section h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.cgv-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.cgv-section p strong {
    color: #333;
}

/* Article Page Design Improvements */
.article-full-section {
    font-family: 'Georgia', serif; /* More readable font for long texts */
}

.article-header h1 {
    font-family: 'Segoe UI', sans-serif; /* Keep titles modern */
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem; /* Reduced margin to bring author info closer */
}

.article-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
}

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

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    display: block;
}

.article-meta {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.article-meta-bar {
    display: flex;
    justify-content: center; /* Center the stats/share bar */
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 1.5rem; /* Increased gap for better spacing */
}

.article-content {
    font-size: 1.15rem; /* Slightly larger font size */
    color: #333;
    line-height: 1.8;
}

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

.article-content a {
    color: #0056b3;
    text-decoration: none;
    border-bottom: 2px solid #a2cffe;
    transition: background-color 0.3s;
}

.article-content a:hover {
    background-color: #e7f1ff;
}

.article-content h4 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    color: #0056b3;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-content ul li {
    margin-bottom: 0.75rem;
}

.article-highlight {
    background: #e7f1ff;
    border-left: 4px solid #0056b3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.article-highlight h4 {
    margin-top: 0;
    color: #004a99;
}

.article-conclusion {
    background: #f4f4f4;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 8px;
}

.article-conclusion h4 {
    margin-top: 0;
}

.article-main-image { /* New class for the main image within content */
    max-width: 100%;
    height: auto;
    max-height: 300px; /* Further reduced max height for better flow */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: block; /* Ensure it takes its own line */
    margin-left: auto;
    margin-right: auto;
}

.article-image { /* For images within the content HTML */
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.article-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.article-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.article-image figcaption {
    font-family: 'Segoe UI', sans-serif;
}

.share-button {
    background: #25D366; /* WhatsApp green, good for sharing */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.share-button svg {
    width: 18px;
    height: 18px;
}


/* Article Interaction Styles */
.article-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #555;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

#like-btn {
    background: #f4f4f4;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #333;
}

#like-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

#like-btn.liked {
    background-color: #e83e8c; /* A pinkish color for likes */
    color: white;
    border-color: #e83e8c;
}

#like-btn.liked svg {
    stroke: white;
    fill: white;
}

#like-btn svg {
    width: 18px;
    height: 18px;
    stroke: #555;
    transition: all 0.3s ease;
}

.comments-section {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.comments-section h2 {
    margin-bottom: 2rem;
    color: #333;
}

.comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}
.comment:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0056b3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.comment-content {
    width: 100%;
}

.comment-author {
    font-weight: bold;
    color: #0056b3;
}
.comment-date {
    font-size: 0.85rem;
    color: #888;
    margin-left: 0.5rem;
}
.comment-body {
    margin-top: 0.5rem;
    line-height: 1.7;
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.

<environment_details>
# VSCode Visible Files
css/style.css

# VSCode Open Tabs
devis.php
cgv.php
database.sql
.env
espace-client.php
confirm-delete-account.php
delete_account.php
header.php
database_update_v2.sql
database_update_v3.sql
footer.php
contact.php
database_update_v4.sql
article.php
css/style.css
add_comment.php
like_article.php
forgot-password.php
request-reset.php
reset-password.php
login.php
send_email.php
db_connect.php
config.php
logout.php
contenu-exclusif.php
images_off.bmp
../../Users/etien/Documents/etudes/Python Scripts/projets perso/pj/jeu_pj.py
../../Users/etien/Documents/etudes/Python Scripts/projets perso/pj/untitled.py

# Current Time
7/26/2025, 2:45:09 PM (Europe/Paris, UTC+2:00)

# Context Window Usage
334,479 / 1,048.576K tokens used (32%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.

<environment_details>
# VSCode Visible Files
css/style.css

# VSCode Open Tabs
devis.php
cgv.php
database.sql
.env
espace-client.php
confirm-delete-account.php
delete_account.php
header.php
database_update_v2.sql
database_update_v3.sql
footer.php
contact.php
database_update_v4.sql
article.php
request-reset.php
login.php
css/style.css
add_comment.php
like_article.php
forgot-password.php
reset-password.php
send_email.php
db_connect.php
config.php
logout.php
contenu-exclusif.php
images_off.bmp
../../Users/etien/Documents/etudes/Python Scripts/projets perso/pj/jeu_pj.py
../../Users/etien/Documents/etudes/Python Scripts/projets perso/pj/untitled.py

# Current Time
7/26/2025, 2:55:18 PM (Europe/Paris, UTC+2:00)

# Context Window Usage
556,902 / 1,048.576K tokens used (53%)

# Current Mode
ACT MODE
</environment_details>
