body {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  /*background: linear-gradient(to right, #f4c01a, #f47e1a);*/
  
	/*background-image: url("../img/bgbleu.jpg");*/
	/*background-image: url("../img/bghalloween.jpg");*/
	background-image: url("../../christmas5.jpg");
    height: 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}
.flag-wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 2px black;
  overflow: hidden;
  margin-bottom: 20px;
}
.flag-wrapper:after {
  padding-top: 75%;
  /* ratio */
  display: block;
  content: '';
}
.flag-wrapper .flag {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.no-wrap {
  white-space: nowrap;
  margin-bottom: 8px;
  overflow: hidden;
}
.all-flags .flag-icon-background {
  cursor: pointer;
}
.jumbotron {
  position: relative;
  font-size: 16px;
  color: #fff;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  border-radius: 0;
  padding-bottom: 80px;
  background: linear-gradient(to right, #0d6632, #f4c01a);
}
.jumbotron h1 {
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: -1px;
  color: #fff;
}
.jumbotron iframe {
  width: 100px!important;
  height: 20px!important;
  border: none;
  overflow: hidden;
  margin: 2px;
}
.jumbotron p a,
.jumbotron .jumbotron-links a {
  font-weight: 500;
  color: #fff;
}
.jumbotron .jumbotron-links {
  margin-top: 15px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
}
.jumbotron .jumbotron-links li {
  display: inline;
}
.jumbotron .jumbotron-links li + li {
  margin-left: 20px;
}
.jumbotron .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background-color: rgba(0, 0, 0, 0.2);
}
.btn-outline {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 18px 24px;
  font-size: inherit;
  font-weight: 500;
  color: #fff;
  /* redeclare to override the `.jumbotron a` */
  background-color: transparent;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  transition: all 0.1s ease-in-out;
}
.btn-outline:hover,
.btn-outline:active {
  color: #0d6632;
  background-color: #fff;
  border-color: #fff;
}
.how-to {
  padding: 20px;
}
.how-to h2 {
  text-align: center;
}
.how-to li {
  font-size: 21px;
  line-height: 1.7;
  margin-top: 20px;
}
.how-to li p {
  font-size: 16px;
  color: #555;
}
.how-to code {
  font-size: 85%;
  word-wrap: break-word;
  white-space: normal;
}
footer {
  text-align: center;
  opacity: 0.8;
  padding: 50px;
  background: linear-gradient(to right, #f4c01a, #0d6632);
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
}
.links {
  margin: 0;
  list-style: none;
  padding-left: 0;
}
.links li {
  display: inline;
  padding: 0 10px;
}

/* Easter */
  /* pixel cliquable (invisible mais accessible) */
  #rc-easter-pixel {
    position: fixed;
    right: 8px;           /* changer la position si tu veux (gauche/droite, top/bottom) */
    bottom: 125px;
    width: 10px;         /* 1px fonctionne mais on laisse 10px pour test; reviens à 1px pour ultra-caché */
    height: 10px;
    background: transparent;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;          /* invisible visuellement */
    /* garder pointer-events actif */
  }

  /* conteneur du cadeau */
  #rc-gift {
    position: fixed;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 10000;
    display: none; /* caché au départ */
    pointer-events: none; /* laisse cliquer page si besoin */
  }

  /* apparence + animation du cadeau */
  #rc-gift.show {
    display: block;
    animation: pop 420ms cubic-bezier(.2,.8,.4,1);
    pointer-events: auto;
  }
  @keyframes pop {
    0%   { transform: translate(-50%, -50%) scale(0.2) rotate(-10deg); opacity: 0; }
    60%  { transform: translate(-50%, -50%) scale(1.07) rotate(6deg); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 1; }
  }

  /* petite animation pour le ruban */
  .rc-ribbon {
    transform-origin: center;
    animation: ribbonWiggle 1200ms ease-in-out infinite;
  }
  @keyframes ribbonWiggle {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(6deg); }
    100% { transform: rotate(0deg); }
  }

  /* bouton pour fermer (optionnel) */
  #rc-gift-close {
    position: absolute;
    right: -10px;
    top: -10px;
    background: rgba(0,0,0,0.6);
    color: white;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    z-index: 10100;
  }

  /* confettis simples */
  .rc-confetti {
    position: fixed;
    left: 50%;
    top: 25%;
    width: 6px;
    height: 12px;
    opacity: 0.95;
    transform-origin: center;
    animation: confettiFall 1100ms linear forwards;
    z-index: 9998;
  }
  @keyframes confettiFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(260px) rotate(360deg); opacity: 0; }
  }
#rc-secret-word {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 700;
  color: #ffd166;
  text-align: center;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 450ms ease, transform 450ms ease;
}

#rc-secret-word.show {
  opacity: 1;
  transform: scale(1);
}