/* GLOBAL */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 30px;
  color: #111;
  line-height: 1.35;
  background: #f0e7d8;
}

.page {
  border: 2px solid #b88917;
  background-color: #fff;
  border-radius: 22px;
  padding: 25px 35px;
  max-width: 700px;
  margin: 0 auto;
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 20px;
}

h1, h2, .field {
  font-weight: bold;
  font-size: 13px;
  color: #b88917;
}

h1 {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 3px;
}

.subtitle {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-radius: 999px;
  padding: 8px 15px;
  max-width: 700px;
  margin: 0 auto 25px auto;
  font-size: 13px;
  background-color: #f0e7d8;
  gap: 5px;
}

.icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

h2 {
  font-size: 17px;
  text-align: center;
  margin-bottom: 20px;
}

.profile {
  margin-bottom: 25px;
  line-height: 1.3;
  font-size: 13.5px;
}

/* FORMATION */
.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.education-box {
  border: 2px solid #b88917;
  border-radius: 14px;
  padding: 15px;
  max-width: 100%;
}

.education-box h3 {
  margin-top: 0;
  font-size: 14px;
}

/* PRINT */
@media print {
  body {
    margin: 15px;
  }
  .page {
    border: none;
    padding: 0;
  }
}

/* BOUTON TÉLÉCHARGER PDF */
.download-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff; /* ou transparent selon ton design */
  border-radius: 50%;
  border: 2px solid #b88917;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.download-btn:hover {
  background-color: #b88917;
  transform: scale(1.1);
}

.download-btn svg {
  fill: #b88917;
}

.download-btn:hover svg {
  fill: #fff;
}

.page {
  position: relative; /* <-- référence pour le bouton */
  border: 2px solid #b88917;
  border-radius: 22px;
  padding: 25px 35px;
  max-width: 900px;
  margin: 0 auto;
}