/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
body {
  font-family: 'Georgia', serif;
  background: radial-gradient(circle at 20% 30%, rgba(60, 100, 60, 0.1) 0%, transparent 70%),
  linear-gradient(120deg, #f9f6ef 0%, #f2e8da 100%);
  background-blend-mode: multiply;
  color: #2f402f;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background:
    radial-gradient(circle at 50% 50%, rgba(180, 60, 90, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 30% 30%, rgba(30, 60, 30, 0.25) 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}



/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    radial-gradient(circle at 20% 40%, rgba(90, 120, 90, 0.75) 0%, transparent 60%),
    radial-gradient(circle at 60% 50%, rgba(210, 160, 180, 0.6) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(120, 150, 120, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(230, 180, 200, 0.4) 0%, transparent 65%);

  color: #2f402f; /* Texte vert olive foncé */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px); /* Pour un effet légèrement vaporeux */

  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* NOM / LOGO */
.logo a {
  text-decoration: none;
  color: #2f402f; /* Vert foncé */
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  transition: color 0.3s ease;
}



/* NAVIGATION */
.nav a {
  margin-left: 2.5rem;
  text-decoration: none;
  color: #2f402f;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* SURVOL — halo vert + texte blanc */
.nav a:hover {
  background: rgba(30, 60, 30, 0.85); /* vert très foncé et dense */
  color: white;
  box-shadow: 0 0 25px rgba(30, 60, 30, 0.6); /* halo plus intense */
}

a.btn-cv{
  background-image: url("images/kraft.jpg");
}
/* MAIN STYLE */
main {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* TYPO GÉNÉRALE */
h1, h2 {
  color: #2f402f;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
}
/* === FORMULAIRE DE CONTACT === */
.contact-form {
  background: rgba(240, 240, 230, 0.5);
  border: 2px solid rgba(30, 60, 30, 0.2);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 0 30px rgba(60, 100, 60, 0.15),
  0 0 15px rgba(180, 60, 90, 0.08);
  max-width: 600px;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.contact-form h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #2f402f;
}

.contact-form p.intro-contact {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #3b3b3b;
}

/* Champs */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #2f402f;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fdfdfc;
  color: #333;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid rgba(180, 60, 90, 0.4);
  outline: none;
}

/* Bouton envoyer */
.contact-form button {
  margin-top: 2rem;
  background-color: #2f402f;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  background-color:  rgba(180, 60, 90, 0.3);
  color: #1f2a1f;
}

/* === INFOS CONTACT SUPPLÉMENTAIRES === */
.contact-extra {
  margin-top: 3rem;
  text-align: center;
  color: #2f402f;
  font-size: 1.1rem;
}

.contact-extra a {
  color: #b43c5a;
  margin: 0 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-extra a:hover {
  color: #2f402f;
}

/* Icônes sociales */
.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
}




.photo-placeholder img {
  width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 0;        /* Pas de coins arrondis */
  box-shadow: none;        /* Supprime l’ombre */
  border: none;            /* Aucune bordure */
}

footer {
  background-color: rgba(30, 60, 30, 0.85);
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 250px;
  width: 100%;

  font-size: 0.9rem;
}
