@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperBlkBT-Regular.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperBlkBT-Italic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperLtBT-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperLtBT-Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperLtBT-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperMdBT-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperMdBT-Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Adam Script';
    src: url('Fonts/AdamScript.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* RESET ET GESTION DU SCROLL */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: auto;
  font-family: 'CooperBT', sans-serif;
  color: white;
  overflow-x: hidden;
  background: transparent;
}

.page-container {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

/* BACKGROUND ANIMÉ FIXE */
#animation-doodle {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  z-index: 0;
}

#animation-doodle css-doodle {
  width: 100%;
  height: 100%;
  display: block;
}

/* CONTAINER DU FORMULAIRE */
.contact-container {
  width: 100%;
  max-width: 600px;
}

/* FORMULAIRE EN EFFET VERRE */
.glass-form {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.glass-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.glass-form input,
.glass-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
  font-size: 14px;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* BOUTON ENVOYER */
.glass-form button {
  width: 100%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.glass-form button:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
