* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Merriweather', serif;
	line-height: 1.6;
}

.hero {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-content {
	position: relative;
	z-index: 3;
	color: white;
	width: 100%;
	max-width: 1200px;
	padding: 30px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.text-content {
	text-align: left;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	margin-bottom: 100px;
}

.full-width-text {
	position: absolute;
	bottom: 100px;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 0 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.text-section {
	flex: 1;
	text-align: left;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	max-width: 600px;
}

.logos-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.main-logo {
	max-width: 572px;
	height: auto;
	opacity: 0.9;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.small-logo {
	position: absolute;
	top: -30px;
	right: 0px;
	max-width: 70px;
	height: auto;
	opacity: 0.95;
	filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.6));
}

.main-title {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 2px;
	color: #ffffff;
}

.subtitle {
	font-size: 1rem;
	font-weight: 300;
	margin-bottom: 20px;
	color: #f0f0f0;
}

.description {
	font-size: 1.1rem;
	font-weight: 300;
	margin-bottom: 10px;
	line-height: 1.7;
	color: #e8e8e8;
	max-width: 600px;
}

.description:first-of-type {
	font-size: 1.4rem;
	font-weight: 400;
}

.address {
	font-size: 1rem;
	font-weight: 300;
}

.full-width-text {
	position: absolute;
	bottom: 95px;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 0 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.full-width-text .description {
	font-size: 1.1rem;
	font-weight: 300;
	text-align: left;
	color: #e8e8e8;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	max-width: none;
	margin-bottom: 0;
}

.register-btn {
	background: #FF007F;
	color: white;
	border: none;
	padding: 12px 30px;
	font-size: 1.2rem;
	font-weight: 600;
	font-family: 'Merriweather', serif;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	text-transform: none;
	letter-spacing: 0.5px;
}

.register-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
	background: #E6006F;
}

.register-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.author-credit {
	position: absolute;
	bottom: 10px;
	right: 15px;
	z-index: 4;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.8rem;
	font-weight: 300;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	background: rgba(0, 0, 0, 0.3);
	padding: 5px 10px;
	border-radius: 15px;
	backdrop-filter: blur(5px);
}

/* Responsive Design */
/* Medium */
@media (max-width: 768px) {
	.hero {
		height: 400px;
	}

	.hero-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 20px;
		gap: 20px;
	}

	.text-section {
		text-align: center;
		max-width: 100%;
	}

	.full-width-text {
		position: static;
		padding: 20px;
		margin-top: 20px;
	}

	.full-width-text .description {
		text-align: center;
	}

	.main-logo {
		max-width: 300px;
	}

	.small-logo {
		max-width: 50px;
		top: -10px;
		right: 0px;
	}

	.main-title {
		font-size: 1.8rem;
	}

	.subtitle {
		font-size: 1.4rem;
	}

	.description {
		font-size: 0.9rem;
	}

	.register-btn {
		padding: 12px 30px;
		font-size: 1rem;
	}

	.author-credit {
		font-size: 0.7rem;
		bottom: 8px;
		right: 10px;
	}
}

/* Extra small */
@media (max-width: 576px) {
	.hero {
		height: 350px;
	}

	.hero-content {
		padding: 15px;
		gap: 15px;
	}

	.full-width-text {
		padding: 15px;
	}

	.main-logo {
		max-width: 250px;
	}

	.small-logo {
		max-width: 45px;
		top: -36px;
		right: -7px;
	}

	.main-title {
		font-size: 1.5rem;
	}

	.subtitle {
		font-size: 1.2rem;
	}

	.description {
		font-size: 0.8rem;
		line-height: 1.6;
	}

	.register-btn {
		padding: 10px 25px;
		font-size: 0.9rem;
	}
}