/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Tahoma, Geneva, Kalimati, sans-serif;
  background-color: #fdfaf6;
  color: #2e2e2e;
  line-height: 1.6;
  font-size: 1.2rem;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 1rem 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #a4907c;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #2e2e2e;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #a4907c;
}

.hero {
  text-align: center;
  padding: 6rem 2rem 3rem;
  background-color: #e7d8c9;
}

.hero h1 {
  font-size: 2.5rem;
}

#animated-text {
  color: #a4907c;
  font-weight: bold;
}

.about {
  padding: 3rem 2rem;
  background-color: #ffffff;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2e2e2e;
}

footer {
  text-align: center;
  padding: 1.5rem 2rem;
  background-color: #f1ece6;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .about {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger .bar {
  height: 3px;
  width: 100%;
  background-color: #2e2e2e;
  border-radius: 10px;
  transition: all 0.3s;
}

/* Responsive burger menu */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
    gap: 1.5rem;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}
/* Animation burger en croix */
.burger.open .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.burger.open .bar:nth-child(2) {
  opacity: 0;
}

.burger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.bar {
  transition: all 0.3s ease-in-out;
}
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f5f3f0; /* beige clair */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
  }

  .contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #3a2f2f; /* marron foncé */
    font-weight: 500;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    background-color: #fff;
    color: #000;
  }

  .contact-form button {
    background-color: #3a2f2f; /* marron foncé */
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-form button:hover {
    background-color: #000;
  }

  @media (max-width: 768px) {
    .contact-form {
      padding: 1rem;
    }
  }
/* PAGE DE REMERCIEMENT */
.page-merci {
  background-color: #f5f3f0;
  color: #3a2f2f;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  text-align: center;
  padding: 2rem;
}

.page-merci h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-merci p {
  font-size: 1.1rem;
  max-width: 600px;
}

.page-merci a {
  margin-top: 2rem;
  display: inline-block;
  background-color: #3a2f2f;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.page-merci a:hover {
  background-color: #000;
}
.retour{
  color: black;
  text-decoration :underline;
  font-weight: bold;
  font-size: 1rem;
}
.retour:hover {
  color: #a4907c;
}

.site-logo {
  height: 100px;
  width: auto;
  display: block;
}
/* --- Hero de la page À propos --- */
.about-hero {
  background-color: #f1ece6;
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.about-hero h1 {
  font-size: 3rem;
  color: #2e2e2e;
  margin-bottom: 1rem;
}

.about-hero .tagline {
  font-size: 1.3rem;
  color: #a4907c;
  font-weight: bold;
}

.about-hero .subtitle {
  font-size: 1.1rem;
  color: #4f4f4f;
  margin-top: 0.5rem;
}

/* --- Section Qui je suis / Ce que je fais --- */
.about-me,
.skills,
.tools,
.cta {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-me h2,
.skills h2,
.tools h2,
.cta h2 {
  font-size: 2rem;
  color: #2e2e2e;
  margin-bottom: 1rem;
}

.about-me p,
.cta p {
  font-size: 1rem;
  color: #3a3a3a;
  line-height: 1.6;
  text-align: center;
}
/* --- Call to Action (CTA) --- */
.cta {
  background-color: #e7d8c9;
  text-align: center;
  border-radius: 8px;
  margin-top: 2rem;
}

.cta .btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #a4907c;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.cta .btn:hover {
  background-color: #8c7861;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero .tagline,
  .about-hero .subtitle {
    font-size: 1rem;
  }

  .about-me,
  .skills,
  .tools,
  .cta {
    padding: 2rem 1rem;
  }
}
.btn-cv {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #a4907c;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.btn-cv:hover {
  background-color: #8a7661;
  transform: translateY(-2px);
}
.intro-text {
  font-size: 1.6rem;
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
  color: #2e2e2e;
  line-height: 1.6;
  font-family: 'Inter', sans-serif; /* à adapter selon ta police */
}

.intro-text a {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #a4907c;
  color: #a4907c;
  transition: all 0.3s ease;
}

.intro-text a:hover {
  color: #8a7661;
  border-bottom-color: #8a7661;
}
.intro-lien {
  text-align: center;
  font-size: 1.2rem;
  color: #2e2e2e;
  margin-top: 2rem;
}

.intro-lien a {
  color: #a4907c;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.intro-lien a:hover {
  color: #7b6754;
}
.soft-skills {
  background-color: #f9f6f2;
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 4rem 0;
}

.skills-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.tools, .qualities {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.tools:hover, .qualities:hover {
  transform: translateY(-4px);
}

.tools h2, .qualities h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2e2e2e;
  font-weight: 600;
}

.tools-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tools-list li {
  background-color: #f4f1ec;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  color: #2e2e2e;
  line-height: 1.5;
  transition: background 0.3s ease;
}

