@charset "UTF-8";
/* CSS Document */

html, body {
			background-color: #ffffff;
			overflow: hidden;
			cursor: pointer;
}
* {
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
    margin: 0;
  padding: 0;
  position: relative;
}
		
body {
	opacity: 0;
	margin: 0px;
	overflow: hidden;
	height: 100vh;
	width: 100vw;
}

@font-face {
    font-family: 'Beckenham';
    src: url('fonts/beckenham/Beckenham-Bold.eot');
    src: local('Beckenham Bold'), local('Beckenham-Bold'),
        url('fonts/beckenham/Beckenham-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/beckenham/Beckenham-Bold.woff2') format('woff2'),
        url('fonts/beckenham/Beckenham-Bold.woff') format('woff'),
        url('fonts/beckenham/Beckenham-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
.hidden {
	visibility:hidden;
}
/*------------------------------- header ------------------------------*/
header {
	top: -70px;
	display: flex;
	justify-content:space-between;
	position: fixed;
	height: 70px;
	width: 100%;
	background: #fff;
	z-index: 9;
	box-shadow: 0px 0px 5px rgba(0,0,0,.2);
}
header div {
	width: 60%;
}
header div:nth-of-type(1) {
	display: flex;
	align-items:flex-end;
}
header div:nth-of-type(2) {
	width: 40%;
	text-align: right;
}

header h1 {
	font-family: 'Beckenham',serif;
	position: relative;
	line-height: 66px;
	font-size: 80px;
	padding:0 20px;
	display: inline-block;
}
header h2 {
	position: relative;
	line-height: 70px;
	font-size: 60px;
	padding: 0 20px;
	font-weight: 300;
	display: inline-block;
}

header h3 {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 13px;
	padding: 12px 30px;
	font-weight: 300;
	display: inline-block;
	text-align: right;
}
header h3 span {
	white-space:nowrap;
}
header h3 a {
	text-decoration: none;
	color: #000;
	font-weight:600;
}
@media (min-width:1700px) {
	header h3 {
		font-size: 15px;
	}
}
@media (max-width:1500px) {
	header div:nth-of-type(1) {
		width: 75%;
	}
	header div:nth-of-type(2) {
		width: 25%;
	}
	header h3 {
		width: auto;
		position: relative;
		font-size: 13px;
	}
}

@media (max-width:1200px) {
	header div:nth-of-type(1) {
		width: 50%;
	}
	header div:nth-of-type(2) {
		width: 50%;
	}
	header span {
		display: block;
	}
	header h1 {
		position: absolute;
		top: 7px;
		line-height: 30px;
		font-size: 30px;
	}
	header h2 {
		line-height: 30px;
		font-size: 3.5vw;
		position: absolute;
		bottom: 7px;
	}
	header h3 {
		position: absolute;
	}
}
@media (max-width:640px) {
	header {
		display: block;
		top: -80px;
		height: 80px;
	}
	header div:nth-of-type(1), header div:nth-of-type(2) {
		width: 100%;
		position: relative;
		bottom: default;
		padding: 0 20px;
		text-align: left;
	}
	
	header h1, header h2, header h3 {
		position: relative;
		display: inline-block;
		bottom: auto;
		top: auto;
		padding: 0;
		line-height:100%;
	}
	header h1, header h2 {
		font-size: 6vw;
		padding-top: 7px;
	} 
	header h1 {
		padding-right: 20px;
	}
	header span {
		display: inline-block;
	}
	header h3 {
		font-size: 2.15vw;
		text-align: left;
		transform: translateY(-5px);
		padding: 5px 0;
	}
}
@media (max-width:460px) {
	header h1 {
		font-size: 10vw;
	}
	header h2 {
		line-height: 7vw;
		font-size: 5vw;
		transform: translateY(-1vw);
	}
	header h3 {
		font-size: 2.85vw;
	}
	footer span {
		display: none;
	}
}

/*------------------------------- main ------------------------------*/
main {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #000;
	color: #fff;
}
/*------------------------------- containers ------------------------------*/
#viewport {
  width: 100vw;
  overflow: hidden;
  cursor: grab;
}

#viewport:active {
  cursor: grabbing;
}


div#container, div.forest, div#central, div.birch  { 
	display: inline-block;
	height: 100vh;
}
div#container, div.panel {
	width: auto;
	height: 100vh;
	display: flex;
}

div.central {
	width: 200vh;
	height: 100vh;
}
div.central, div.panel, div.forest {
	flex-shrink: 0;
}
div.birches, div.ground  { 
	pointer-events: none;
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
}



/*------------------------------- sky ------------------------------*/
#sky, #snow {
	position: fixed;
	top:0;left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
#sky.night {
	background: #15212B;
	background: linear-gradient(180deg, rgba(21, 33, 43, 1) 23%, rgba(61, 96, 128, 1) 57%, rgba(214, 169, 186, 1) 100%);
}
#sky.day {
	background: #91BCCC;
	background: linear-gradient(180deg, rgba(145, 188, 204, 1) 34%, rgba(255, 222, 212, 1) 100%);
}
/*------------------------------- ground ------------------------------*/
div.ground2 {
	background: url(../img/ground_2.png)repeat-x left bottom;
}
div.ground1 {
	background: url(../img/ground_1.png)repeat-x left bottom;
	
}
div.ground {
	pointer-events: none;
	position: absolute;
	left: 0;
	bottom: 0px;
	height: 15vh;
	width: 100%;
	background-size: 100vh auto;
}

/*------------------------------- birches ------------------------------*/
div.birches {
	height: 105vh;
}

div.birches img { 
	position: absolute;
	top: -2.5vh;
	height: 105vh;
	 -webkit-filter: drop-shadow( 0px 0px 1vh rgba(0, 0, 0, .1));
	 filter: drop-shadow( 0px 0px 1vh rgba(0, 0, 0, .1));
}


/*------------------------------- medaillon ------------------------------*/

div.medaillon {
	position: absolute;
	top: calc(50% - 15vh);
	left: calc(50% - 15vh);
	display: inline-block;
	height: 30vh;
	width: 30vh;
	aspect-ratio:1/1;
	border-radius:  50%;
	overflow: hidden;
	justify-content:center;
	align-content:center;
	flex-wrap: wrap;
    pointer-events: auto !important;
    cursor: pointer;
	z-index: 100;
}


div.medaillon div.home , div.medaillon div.help {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	aspect-ratio:1/1;
	border-radius:  50%;
	padding: 3vh;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
div.medaillon div.home {
	background: #fff;
	flex-direction: column;
}
div.medaillon.active div.home {
	opacity: 0;
}
div.medaillon div.help {
	opacity: 0;
	background: #2d2d2d;
}
div.medaillon.active div.help {
	opacity: 1;
}
div.medaillon div.help p {
	display: block;
	color: #fff;
	text-align: center;
	font-size: 1.35vh;
	line-height: 2vh;
}
div.medaillon h2, div.medaillon h3 {
	display: block;
	text-align: center;
	color: #2d2d2d;
}
div.medaillon h2 {
	font-family: "Beckenham",arial;
	font-size: 6vh;
	line-height: .75em;
	padding: 0 1vh;
}
div.medaillon h3 {
	font-size: 2.5vh;
	padding: 0 4vh;
	font-weight: 400;
}

.foreground-wrapper {
  position: absolute;
  top: 0;        
  left: 0;      
  width: 100%;   
  height: 100%; 
  z-index: 9999;
  pointer-events: none; 
}

.foreground {
  	pointer-events: none;

  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}

/*------------------------------- wishes ------------------------------*/

div.central div.wish:first-of-type {
	left: 23%;
}
div.central div.wish:last-of-type {
	left: 67%;
}
div.wishes {
	display: inline-block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
div.wish {
	position: absolute;
	transform-origin: center;
	display: inline-flex;
	justify-content: center;
	align-content:center;
	align-items: center;
	top: 50%;
	left: 30%;
	height: 8vh;
	width: 8vh;
	border-radius: 50%;
	background: #2d2d2d;
	color: #fff;
	overflow: hidden;
	cursor: pointer;
}

div.wish div.container {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	width: 45vh;
}

div.wish h4 {
	font-family: 'Beckenham',serif;
	font-size: 5vh;
	text-align: center;
	width: 100%;
}
div.wish div.content {
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 0;
	text-align: center;
}
div.wish div.content p, div.wish div.content p.message {
	display: block;
	font-size: 1.75vh;
	line-height: 1.5em;
	text-align: center;
	padding-top: 2vh;
}
div.wish div.content p.name {
	display: block;
	font-size: 1.75vh;
	line-height: 2.vh;
	line-height: 1.5em;
	padding-top: 2vh;
	font-style: italic;
}
div.wish div.content a {
	color: inherit;
}
@media (orientation: portrait) {
	div.wish div.container {
		width: 75%;
	}
	div.wish h4 {
		transition: all .5s ease-in-out 0s;
	}
	div.wish.active h4 {
		font-size: 7vw;
	}
	div.wish div.content {
		font-size: 3.25vw;
		line-height: 4.5vw;	
	}
	div.wish div.content p, div.wish div.content p.message {
		font-size: 3.25vw;
		line-height: 4.5vw;
		padding-top: 1vw;
	}

}

@keyframes wishflow {
  from {
    transform: translateY(-1vh);
  }
  to {
    transform: translateY(+1vh);
  }
}

/*------------------------------- footer ------------------------------*/
footer {
	position: fixed;
	bottom: -60px;
	width: 100vw;
	height: 60px;
	background: #fff;
	z-index: 9;
	box-shadow: 0px 0px -5px rgba(0,0,0,.2);
	display: flex;
	justify-content:center;
	align-content:center;
	cursor: default;
}
footer span {
	display: inline-block;
	position: relative;
	padding: 0px 1vw;
}
footer span::before {
	display: inline-block;
	font-family: 'Material Symbols Outlined';
	content: '\e8d5';
	font-size: 24px;
	font-weight: 300;
	transform: translateY(5px);
	padding-right: 5px;
}

footer span.helpscroll {
}
footer span.helpdrag {
}
footer span.helpdrag::before {
	content: '\e9ec';
}
footer span.helpclick::before {
	content: '\f718';
}

footer span.archive {
	position: absolute;
	right: 30px;
	bottom: 0;
	top: 0;
	background: #fff;
	transition: top 5s ease-in-out;
	padding-left: 40px;
		-webkit-user-select: none; /* Safari */
		-ms-user-select: none; /* IE 10 and IE 11 */
		user-select: none; /* Standard syntax */
}
footer span.archive.active {
	top: auto;
}
footer span.archive::before {
	content: '\e316';
	position: absolute;
	left: 0;
}
footer span.archive.active::before {
	transform: rotate(180deg) translateY(-5px);
}


footer button.write {
	display: inline-block;
	background: #2d2d2d;
	color: #fff;
	border: 0 none;
	line-height: 30px;
	padding: 0 20px;
	height: 40px;
	border-radius: 20px;
	font-size: 1rem;
	font-weight: 500;
	margin: 0 20px;
	cursor:pointer;
	transition: all .75s ease-in-out 0s;
}
footer button.write:active {
	transform: translateY(20px);
}

ul.select {
	display: inline-block;
	list-style: none;
	margin: 5px;
	bottom: 0;
}
ul.select li {
	padding: 5px 0;
}
ul.select li:first-of-type {
	padding-left: 25px;
	margin-left: -40px;
}
ul.select li:not(:first-of-type) a {
	color: #fff;
	text-decoration: none;
}
footer span.archive.active ul.select li:not(:first-of-type) a{
	color: #000;
}


@media (max-width:600px) {

	footer span {
		display: none;
	}
	footer span:last-of-type {
		display: block;
	}
}
@media (max-width:460px) {
	footer {
		justify-content:flex-start;
	}
}

/*---------------------- BIRD --------------------*/
.birds {
  position: absolute;
  top: 70px;left: 0;
  width: 100%;
  height: 20%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.bird {
  background-image: url(../img/bird.svg);
  background-size: auto 100%;
  width: 88px;
  height: 125px;
  transform: scale(2);
   
  will-change: background-position;
  -webkit-animation-name: fly-cycle;
          animation-name: fly-cycle;
  -webkit-animation-timing-function: steps(10);
          animation-timing-function: steps(10);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}


.bird--one {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.bird--two {
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-delay: -0.75s;
          animation-delay: -0.75s;
}
.bird-container {
  position: absolute;
  top: 0;
  left: 0%;
  transform: scale(0) translateX(-10vw);
  will-change: transform;
  -webkit-animation-name: fly-right-one;
          animation-name: fly-right-one;
  -webkit-animation-timing-function: linear;
          an
		  
		  imation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.glass .bird-container {
  -webkit-animation-name: fly-right-one-glass;
          animation-name: fly-right-one-glass;
}
.bird-container--one {
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.bird-container--two {
  -webkit-animation-duration: 26s;
          animation-duration: 26s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
@keyframes fly-cycle {
  100% {
    background-position: -900px 0;
  }
}
@keyframes fly-cycle-glass {
  100% {
    background-position: calc(-1800px * var(--zoom)) 0;
  }
}

@keyframes fly-right-one {
  0% {
    transform: scale(0.3) translateX(-10vw);
  }
  10% {
    transform: translateY(2vh) translateX(10vw) scale(0.4);
  }
  20% {
    transform: translateY(0vh) translateX(30vw) scale(0.5);
  }
  30% {
    transform: translateY(4vh) translateX(50vw) scale(0.6);
  }
  40% {
    transform: translateY(2vh) translateX(70vw) scale(0.6);
  }
  50% {
    transform: translateY(0vh) translateX(90vw) scale(0.6);
  }
  60% {
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
  100% {
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
}


@keyframes fly-right-two {
  0% {
    transform: translateY(-2vh) translateX(-10vw) scale(0.5);
  }
  10% {
    transform: translateY(0vh) translateX(10vw) scale(0.4);
  }
  20% {
    transform: translateY(-4vh) translateX(30vw) scale(0.6);
  }
  30% {
    transform: translateY(1vh) translateX(50vw) scale(0.45);
  }
  40% {
    transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
  }
  50% {
    transform: translateY(0vh) translateX(90vw) scale(0.45);
  }
  51% {
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
  100% {
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
}

/*------------------------- flipping ---------------------*/
.flipping img {
	position: absolute;
	display: none;
	max-width: 100%;
	max-height: 100%;
	top: 0;
	left: 0;
}
.flipping img:nth-child(1) {
	display: block;
}

/*---------------------- DEER --------------------*/
figure.deer {
	position: absolute;
	bottom: 11vh;
	width: 16vh;
	height: 16vh;
}

/*---------------------- FOX --------------------*/
figure.fox {
	position: absolute;
	bottom: 7vh;
	width: 10vh;
	height: 10vh;
}




/*------------------------------- FORMULAIRE ------------------------------*/
div#wish-write {
	display: inline-block;
	border-radius: 50%;
	position: fixed;
	top: 100vh;
	left: calc(50vw - 30vh);
	width: 60vh;
	height: 60vh;
	background: #2d2d2d;
	justify-content:center;
	align-items: center;
	z-index: 8;
	transition: all 1s ease-in-out 0s;
}

div#wish-write.active {
	top: calc(50% - 30vh);
}

div#wish-write * {
	font-size: 2vh;
}
div#wish-write form {
	height: 100%;
	top: 0%;
	padding-top: 10vh;
	text-align: center;
}
div#wish-write form p {
	display: inline-block;
	width: 80%;
	margin: auto;
	text-align: center;
	margin-bottom: 5vh;
}
div#wish-write form fieldset {
	border: none;
	margin: 2vh 0;
	width: 60%;
	margin: auto;
}
div#wish-write form label {
	display: block;
	font-size: 1.25vh;
	margin: 2vh 0 .5vh 0;
	text-align: left;
}
div#wish-write form input,  div#wish-write form textarea {
	display: block;
	width: 100%;
	font-size: 1.25vh;
	padding: 1vh;
	border-radius: 3vh;
	border: 2px solid black;
	resize: none;
	outline: none;
}
div#wish-write form input:focus, div#wish-write form textarea:focus {
}
div#wish-write form .error {
	border: 2px solid red;
}

div#wish-write form div.buttons {
	position: absolute;
	bottom: 3vh;
	width: 100%;
	text-align: center;
} 
div#wish-write form div.buttons button {
	margin: 0 1vh;
	border-radius: 50%;
	background: #fff;
	color: #000;
	height: 5vh;
	width: 5vh;
	text-align: center;
	border: 0;
	cursor: pointer;
} 
div#wish-write form div.buttons button.cancel {
	background: rgba(255,255,255,.3);
}
