:root {
	--primary: #FF6D1F;
	--secondary: #0A0123;
	--text-primary: #F1E3E4;
	--red: #FF312E;
	--green: #68A357;
}

html {
	font-size: 62.5%;
}

body {
	background-color: var(--secondary);
	color: var(--text-primary);
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

header {
	background:	linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 100;
}
footer {
	display: grid;
	justify-content: center;
	row-gap: 1rem;
}


nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 1rem;
}
nav #right button{
	margin-right: 0.5rem;
}
nav #right a{
	margin-left: 0.5rem;
}
			
form {
	display: grid;
	row-gap: 1.5rem;
}

a {
	color: var(--text-primary);
	text-decoration: none;
	font-size: 1rem;
}
a:hover {
	color: var(--primary);
}

button {
	font-size: 1rem;
}
					  
input {
	font-size: 1rem;
}

h1 {
	font-size: 4rem;
}
h2 {
	font-size: 2.5rem;
}
p {
	font-size: 1rem;
}
label {
	font-size: 1rem;
}



/* Elements */
.btn {
	background-color: transparent;
	color: var(--text-primary);
	border: solid var(--text-primary) 0.1rem;
	border-radius: 1rem;
	padding: 0.5rem;
}
.btn:hover {
	cursor: pointer;
	background-color: var(--text-primary);
	color: var(--secondary);
}


/* Home */
#home-slideshow {
	position: relative;
	height: 100vh;
	width: 100vw;
}
.slide {
	opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    position: absolute;
}
.slide.active {
	opacity: 1;
    z-index: 2;
}
.slide img{
	height: 100vh;
	width: 100vw;
	object-fit: cover;
}
.slide-content-bg {
	position: absolute;
	width: 100vw;
	bottom: 0;
	background:	linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.slide-content {
	text-align: center;
	margin-bottom: 3rem;
}
.slide-content h1 {
	text-transform: uppercase;
}
.slide-content a {
	margin-bottom: 2rem;
}

#legal-container {
	display: flex;
	align-items: center;
	padding: 10rem;
}

/* Galerie */
#galerie-show {
	height: 100vh;
	width: 100vw;
}
#galerie-show img {
	position: absolute;
	z-index: -1;
	top: 0;
	width: 100%; 
	height: 100%; 
	object-fit: cover;
}
#galerie-show h1 {
	position: absolute;
	bottom: 0;
	text-align: center;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	margin: 0;
	text-transform: uppercase;
	width: 100%;
}

.photo-wrapper {
    background-color: var(--secondary);
    min-height: 250px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.photo-img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
}
.photo-img.loaded {
    opacity: 1;
}

/* Responsive */
@media (min-width: 700px){
	a {
		font-size: 2rem;
	}
	button {
		font-size: 2rem;
	}
					  
	input {
		font-size: 2rem;
	}
	
	h1 {
		font-size: 7.5rem;
	}
	h2 {
		font-size: 4rem;
	}
	p {
		font-size: 1.75rem;
	}
	label {
		font-size: 2rem;
	}

	footer {
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
}


/* Intro */

/*#intro-slideshow {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3000;
    background: var(--secondary);
    display: flex; justify-content: center; align-items: center;
}
#intro-img {
    max-width: 50%; max-height: 50%;
    object-fit: contain;
}

#black-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    
    background: transparent;
    box-sizing: border-box;
    
    border: 50vmax solid var(--secondary); 
    
    transition: border-width 1.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    
    pointer-events: none;
}

#black-frame.open {
    border-width: 0;
}
										  
#intro-slideshow {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: var(--secondary);
    z-index: 3000;
    display: flex; justify-content: center; align-items: center;
}

.intro-slide {
    position: absolute;
    top: 50%; left: 50%;
	transform: translate(-50%, -50%);
    max-width: 50%; max-height: 50%;
    object-fit: contain;
    opacity: 0; 
}

.intro-slide.active {
    opacity: 1;
    z-index: 2;
}

#loader-text {
    color: white;
    font-family: monospace;
    z-index: 10;
}

#black-frame {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100dvh; height: 100vh;
    z-index: 2000;
    border: 50vmax solid var(--secondary);
    box-sizing: border-box;
    background: transparent;
    pointer-events: none;
    transition: border-width 1.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#black-frame.open { border-width: 0; }*/