@import "fonts.css";

/* styles.css */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	width: 100%;
	height: 100%;
	font-family: 'Urbanist', sans-serif;
}

.background {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	color: white;
	text-align: center;
}

.background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('background.jpg') no-repeat center center/cover;
	filter: brightness(50%);
	z-index: -1;
}

header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.logo img {
	width: 220px;
	height: auto;
	margin: 15px 30px
}

.line {
	margin: 0; /* Kein Abstand */
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.2); /* Halbtransparentes Weiß */
	border: none;
}

main {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	position: relative; /* Damit der Inhalt über dem Hintergrund bleibt */
	z-index: 1;
}

h1 {
	font-size: 13px;
	margin-bottom: 30px;
	font-weight: 600;
	letter-spacing: 5px;
	text-transform: uppercase;
}

p {
	font-size: max(4vw, 30px);
	line-height: max(5.5vw, 46px);
	letter-spacing: 0.1vw;
	margin-bottom: 30px;
	margin-left: max(15%, 10px);
	margin-right: max(15%, 10px);
}


.cta-button {
	display: inline-block;
	padding: 14px 30px;
	font-size: 11px;
	color: #000;
	background-color: #ebc576;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 30px;
	transition: background-color 0.3s;
}

.cta-button:hover {
	background-color: #ac925c;
}
