/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    color: #22c55e;
    font-weight: 600;
}

.nav-links a {
    margin-left: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #22c55e;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 70px;
    background: linear-gradient(to bottom, #000, #111);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero h2 {
    font-size: 2rem;
    color: #22c55e;
    margin-bottom: 2rem;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #9ca3af;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #22c55e;
}

/* Sections communes */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: #111;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

/* À propos */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 2rem;
    color: #9ca3af;
}


/* Style du bouton CV */
.cv-button-container {
    text-align: center;
    margin: 2rem 0;
}

.cv-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cv-button:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.cv-button i {
    font-size: 1.1rem;
}


.skills-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
}

.skills-box h3 {
    color: #22c55e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.skills-box ul {
    list-style: none;
}

.skills-box li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.skills-box li i {
    color: #22c55e;
    margin-right: 1rem;
    width: 20px;
}

/* Parcours */
.parcours-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.parcours-item {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: transform 0.3s;
}

.parcours-item:hover {
    transform: translateY(-5px);
}

.parcours-item h3 {
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.parcours-item p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.parcours-item span {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Compétences */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
}

.skill-card h3 {
    color: #22c55e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.skill-card ul {
    list-style: none;
}

.skill-card li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

/* Projets */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.project-content p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-form {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: #000;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.375rem;
    color: #fff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
}

button {
    width: 100%;
    padding: 0.75rem;
    background: #22c55e;
    color: #000;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background: #16a34a;
}

.contact-info {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #22c55e;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.info-item span {
    color: #9ca3af;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

footer p {
    color: #9ca3af;
    margin-top: 1.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
    }

    .nav-links.active a {
        margin: 0.5rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
}








/* Veille technologique */

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tech Watch Section */
.tech-watch {
    padding: 5rem 0;
    background-color: #111;
}

.tech-watch h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.tech-watch-content {
    max-width: 1000px;
    margin: 0 auto;
}

.main-topic {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: transform 0.3s;
}

.main-topic:hover {
    transform: translateY(-5px);
}

.topic-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.topic-header i {
    color: #22c55e;
    font-size: 1.5rem;
}

.topic-header h3 {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 600;
}

.main-topic > p {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.topic-grid, .analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-card, .analysis-card {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.topic-card:hover, .analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-header i {
    color: #22c55e;
    font-size: 1.25rem;
}

.card-header h4 {
    color: #22c55e;
    font-size: 1.25rem;
    font-weight: 500;
}

.topic-card ul, .analysis-card ul {
    list-style: none;
}

.topic-card li, .tools-list li {
    color: #9ca3af;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.topic-card li::before, .tools-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: #22c55e;
    border-radius: 50%;
}

.analysis-item {
    border-left: 3px solid #22c55e;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.analysis-item:last-child {
    margin-bottom: 0;
}

.date {
    font-size: 0.875rem;
    color: #22c55e;
    margin-bottom: 0.25rem;
    display: block;
}

.analysis-item p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-watch {
        padding: 3rem 0;
    }

    .tech-watch h2 {
        font-size: 2rem;
    }

    .topic-grid, .analysis-grid {
        grid-template-columns: 1fr;
    }

    .main-topic {
        padding: 1.5rem;
    }

    .topic-card, .analysis-card {
        padding: 1.25rem;
    }
}