/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Dancing+Script:wght@400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.dancing-script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.baskervville {
  font-family: "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: bold;
}

.h1 {
  font-size: clamp(32px, 24px + 2.2vw, 60px);
  letter-spacing: calc(1px + 0.12vw);
}

.h2 {
  font-size: clamp(23px, 20px + 1.65vw, 40px);
  letter-spacing: calc(1px + 0.04vw);
}

.h3 {
  font-size: clamp(20px, 20px + 1vw, 29px);
  letter-spacing: calc(1px + 0.02vw);
}

.h4 {
  font-size: clamp(18px, 14px + 0.7vw, 22px);
  letter-spacing: calc(1px + 0.01vw);
}

.h5 {
  font-size: clamp(16px, 14px + 0.4vw, 20px);
  letter-spacing: calc(0.8px + 0.01vw);
}

.p {
  font-size: clamp(16px, 14px + 0.4vw, 20px);
  letter-spacing: calc(0.4px + 0.01vw);
}

.flexMid,
.midFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tac {
  text-align: center;
}

.error {
  color: #fb0606;
  font-size: 1em;
}

.active {
  color: var(--border);
  font-weight: bold;
}

.titre {
  font-size: 5em;
  color: var(--border);
  text-align: center;
}

:root {
  --bg-primary: #333;
  --bg-secondary: #555;
  --bg-footer: #979797;
  --text: #f1f1f1;
  --border: #8ce715;
  --overlay: #11111180;
}

body {
  width: 100%;
  max-width: 1500px;
  min-height: 100svh;
  background-color: var(--bg-primary);
  color: var(--text);
  margin: 0 auto;
  font-family: "baskervville";
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--bg-footer);
  padding: 20px 20px;
  margin-top: 50px;
  font-size: 1.3em;
  letter-spacing: 0.05em;
  border-top: 2px solid var(--border);
}
footer .droite {
  display: flex;
  flex-direction: column;
}
footer p,
footer a {
  text-shadow: 1px 1px 5px #1b1b1b;
}
footer a {
  text-decoration-line: underline;
}
footer a span {
  padding: 0 10px;
}
footer a:hover {
  color: var(--border);
  transition: 0.3s;
}
footer img {
  position: relative;
  width: 30px;
  height: 30px;
  right: 10px;
  top: 10px;
}
@media screen and (max-width: 1020px) {
  footer {
    flex-direction: column;
    align-items: start;
    font-size: 1em;
  }
  footer .gauche {
    margin-left: 50%;
    transform: translate(-50%, 0);
    margin-bottom: 20px;
  }
  footer .droite {
    margin-left: 43%;
    transform: translate(-50%, 0);
  }
}

header {
  background-color: var(--bg-secondary);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 3px 5px var(--border);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  font-family: "times-new-roman", serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .h1 {
  font-family: "dancing-script", sans-serif;
}
header .container-header img {
  width: 150px;
  height: 50px;
  box-shadow: 1px 1px 10px var(--border);
  border-radius: 5px;
}
header .burger-menu img {
  display: none;
  visibility: hidden;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease-in-out;
}
header nav a {
  margin: 0 30px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  gap: 20px;
  transition: all 0.25s ease-in-out;
}
header nav a::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: var(--text);
  bottom: 0;
  left: 0;
  transform: translateX(-105%);
  transition: all 0.25s ease-in-out;
}
header nav a:hover::before {
  transform: translate(0);
}

@media screen and (max-width: 1020px) {
  header .burger-menu img {
    display: block;
    visibility: visible;
  }
  header nav {
    position: absolute;
    flex-direction: column;
    width: 100%;
    left: 0;
    top: -540px;
    background-color: rgba(85, 85, 85, 0.4588235294);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    transition: all 0.33s;
    z-index: 10;
  }
  header nav a {
    padding: 15px 0;
  }
  .burger-menu:hover ~ nav,
  nav:hover {
    top: 0;
  }
}
body {
  position: relative;
  min-height: 100svh;
  color: var(--text);
}

main {
  width: 100%;
  height: auto;
}

main .container img {
  min-height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

main .container {
  flex-direction: column;
}
main .container h1 {
  font-size: 3em;
  text-align: center;
  text-shadow: 1px 1px 5px #979797;
}
main .container h2,
main .container .sous-titre {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
  background-color: rgba(85, 85, 85, 0.5);
  border-radius: 20px;
  text-shadow: 1px 1px 4px #635e5e;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}
main .container p {
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px 20px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 1.5em;
  text-shadow: 1px 1px 5px #979797;
}
main .container .titre {
  font-size: 3em;
  color: var(--border);
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1020px) {
  main .container h2 {
    top: 25%;
  }
}

@media screen and (max-width: 750px) {
  h2 {
    top: 50%;
    width: 100%;
  }
  main .container {
    font-size: 10px;
  }
}
.don {
  line-height: 200%;
  transition: 0.5s;
}
.don h1 {
  margin: 80px 0;
  color: #8ce715;
}
.don hr {
  width: 20%;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.don .coeur {
  position: relative;
  width: 18%;
  height: 35%;
  margin-bottom: 20px;
}
.don a:hover {
  color: #8ce715;
}
.don .bulletin {
  -webkit-text-decoration: double underline;
          text-decoration: double underline;
  text-decoration-color: var(--border);
}
.don .bulletin #bulletin-don {
  margin-top: 10px;
}

.adhesion {
  position: relative;
  width: 100%;
  height: 100svh;
  margin-top: 50px;
}
.adhesion #bulletin-adhesion {
  margin-top: 10px;
}

.temoinages-presse {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 50px;
}
.temoinages-presse h1,
.temoinages-presse h2,
.temoinages-presse h3,
.temoinages-presse h4,
.temoinages-presse h5 {
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px #979797;
  font-weight: 400;
}
.temoinages-presse h1 {
  color: var(--border);
}
.temoinages-presse hr {
  width: 20%;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.temoinages-presse .container-temoinage-presse {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  min-height: 100svh;
}
.temoinages-presse .container-temoinage-presse p {
  font-size: 1.2em;
  color: #fff;
}

main .jeanEtLucette {
  width: 100%;
  height: auto;
  background-image: url(../../images/montjoie1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
main .jeanEtLucette img {
  border: 3px solid #8ce715;
  border-radius: 5px;
  margin: 0 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
main .jeanEtLucette .paragraph {
  background-color: rgba(0, 0, 0, 0.5019607843);
  border-radius: 10px;
  border: 2px solid #8ce715;
  margin-right: 20px;
  padding: 20px;
}
main .jeanEtLucette p:nth-child(1) {
  color: #8ce715;
  font-weight: 900;
  font-size: 1.5em;
}
main .jeanEtLucette p {
  font-weight: 500;
  text-indent: 1em;
  font-size: 1.2em;
  padding: 10px;
  color: var(--text);
  line-height: 1.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1020px) {
  main .jeanEtLucette {
    flex-direction: column;
  }
  main .jeanEtLucette p {
    text-align: center;
    margin: 0.5em 0;
  }
}

.bulletin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 20px;
}
.bulletin h1 {
  font-size: 2em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px #979797;
  color: #8ce715;
}
.bulletin h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px #635e5e;
  color: #fff;
}
.bulletin h3 a:hover {
  color: var(--border);
}

.bulletin a {
  line-height: 1.8em;
}

.temoinages-presse .container-temoinage-presse {
  flex-direction: column;
  align-items: start;
  justify-content: start;
  text-align: center;
  padding: 20px;
}
.temoinages-presse .container-temoinage-presse h3 a {
  font-weight: 200;
  font-size: 1em;
  margin-bottom: 10px;
}

main h1 {
  color: var(--border);
}

section {
  width: 100%;
  min-height: 100%;
  text-align: center;
  background-image: url(../images/MontjoieVue2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  text-shadow: 5px 2px 2px var(--overlay);
}
section .container {
  background-color: rgba(0, 0, 0, 0.2705882353);
  width: 60%;
  border: 2px solid var(--border);
  border-radius: 20px;
  font-weight: 900;
}
section .container h1 {
  margin-top: 20px;
  color: var(--border);
}
section .container p {
  margin-top: 10px;
}
section .container p span img {
  width: 30px;
}
section .container p .error {
  color: red;
  font-size: 1em;
}
section .container form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
section .container form input {
  border-radius: 5px;
  width: 250px;
  height: 30px;
}
section .container form textarea {
  border-radius: 5px;
  height: 80px;
  width: 250px;
}
section .container form p:hover label,
section .container form textarea:hover label {
  visibility: hidden;
}
section .container form button {
  margin: 20px 0;
  padding: 20px 15px;
  border-radius: 10px;
  background-color: var(--bg-primary);
  color: var(--text);
  transition: all 0.33s;
  cursor: pointer;
}
section .container form button:hover {
  background-color: var(--text);
  color: var(--bg-primary);
}

article {
  margin: 0 auto;
  padding: 20px;
  max-width: 800px;
  line-height: 1.8;
}
article h1 {
  color: var(--border);
}
article .form-don-adhesion {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
article .form-don-adhesion img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
article .form-don-adhesion .checkbox input {
  padding: 10px 5px;
  background-color: #222;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
}
article .form-don-adhesion .checkbox label {
  margin-right: 15px;
}
article .form-don-adhesion fieldset {
  border: 1px solid var(--border);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
}
article .form-don-adhesion fieldset legend {
  font-weight: bold;
  color: var(--border);
}
article .form-don-adhesion fieldset span {
  margin-right: 10px;
}
article .form-don-adhesion .form-a-remplir {
  position: relative;
}
article .form-don-adhesion .form-a-remplir fieldset {
  border: 1px solid var(--border);
  padding: 0 50px;
  margin-bottom: 10px;
  border-radius: 10px;
}
article .form-don-adhesion .form-a-remplir fieldset legend {
  font-weight: bold;
  color: var(--border);
}
article .form-don-adhesion .form-a-remplir fieldset #genre {
  flex-direction: row;
}
article .form-don-adhesion .form-a-remplir fieldset input,
article .form-don-adhesion .form-a-remplir fieldset textarea,
article .form-don-adhesion .form-a-remplir fieldset button {
  width: 100%;
  padding: 10px 5px;
  background-color: #222;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
}
article .form-don-adhesion .form-a-remplir fieldset input[type=radio] {
  width: auto;
  margin-right: 10px;
}
article .form-don-adhesion .form-a-remplir fieldset label {
  position: relative;
  bottom: -1px;
}
article .form-don-adhesion .form-a-remplir fieldset textarea {
  height: 100px;
  resize: vertical;
}
article .form-don-adhesion .form-a-remplir fieldset button {
  background-color: var(--border);
  color: var(--text);
  font-weight: bold;
  margin: 20px 0;
  transition: 0.3s;
}
article .form-don-adhesion .form-a-remplir fieldset button:hover {
  background-color: var(--text);
  color: var(--border);
}
article .retour a {
  color: var(--border);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
article .retour a:hover {
  color: var(--text);
  text-decoration: underline;
}/*# sourceMappingURL=globale.css.map */