/* File: assets/css/landing.css */
/* ***** VARIABLEN ***** */
:root {
	--primary-color: aquamarine;
	--secondary-color: #a2bb23;
	--accent-color: #66CDAA;
	--dark-bg: #1a1a1a;
	--card-bg: #ffffff;
	--navbar-text-color: #033e77;
	--enymaxx-blue: #033e77;
	--enymaxx-green: #a2bb23;
}

/* ***** GLOBALE STYLES ***** */
* { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; }
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	background-color: #ffffff;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}
#content-wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* ***** PRELOADER ***** */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 1s ease;
}

.preloader-logo {
	width: 250px;
	height: 250px;
	transform: rotateY(90deg);
	animation: spinY 4s ease-in-out 1;
	animation-fill-mode: forwards;
}

@keyframes spinY {
	0% {
		transform: rotateY(90deg);
	}
	100% {
		transform: rotateY(720deg);
	}
}

/* ***** HERO SECTION ***** */
.hero {
	background: white;
	color: var(--enymaxx-blue);
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.hero-logo {
	width: 150px;
	height: 150px;
	margin-bottom: 20px;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.hero .lead {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.maintenance-hint {
	margin: 24px auto 0 auto;
	max-width: 500px;
	background: #fffbe6;
	color: #856404;
	border: 1px solid #ffe58f;
	border-radius: 6px;
	padding: 16px 20px;
	font-size: 1.1em;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}


.cta-button {
	background-color: var(--enymaxx-green);
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 3rem;
}

.cta-button:hover {
	background-color: #8ca41f;
}

/* ***** FOOTER ***** */
footer {
	margin-top: auto;
	padding: 20px 0;
	background-color: #f8f9fa;
}
.footerlinkscontainer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.footer-links {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--enymaxx-blue);
	text-decoration: none;
	margin: 0 10px;
}

.footer-divider {
	color: #ccc;
}

/* ***** MODAL STYLES ***** */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	overflow: auto;
}

.modal.show {
	display: block;
}

.modal-content {
	background-color: #fff;
	margin: 10% auto;
	width: 80%;
	max-width: 600px;
	border-radius: 5px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
	from { opacity: 0; transform: translateY(-50px); }
	to { opacity: 1; transform: translateY(0); }
}

.modal-header {
	padding: 15px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h3 {
	margin: 0;
	color: var(--enymaxx-blue);
}

.close-btn {
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
}

.modal-body {
	padding: 20px;
	max-height: 60vh;
	overflow-y: auto;
}

.modal-footer {
	padding: 15px;
	border-top: 1px solid #eee;
	text-align: right;
}

.btn {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn-ok {
	background-color: var(--enymaxx-green);
	color: white;
}

/* ***** RESPONSIVE DESIGN ***** */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}
	
	.hero .lead {
		font-size: 1rem;
	}
	
	.modal-content {
		width: 95%;
		margin: 5% auto;
	}
}