* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

/* hero section */

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.hero-image {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-text {
	text-align: center;
}

.hero-title {
	font-size: clamp(3rem, 8vw, 6rem);
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    margin-top: 0.5rem;
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}
