:root {
	--font-body: "Jost", Arial, sans-serif;
}

html {
	font-size: 20px;
}

body {
	margin: 0;
}

h1 {
	font-family: var(--font-body);
	font-size: 2.3rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.2;
	color: white;
	text-align: center;

	@media (min-width: 1200px) {
		font-size: 5rem;
	}
}

h2,
p,
a {
	font-family: var(--font-body);
	margin: 0;
}

h2 {
	font-weight: 500;
	font-size: 1rem;
	text-transform: uppercase;
	margin: 0;
	color: rgb(93, 106, 139);
	@media (min-width: 1200px) {
		font-size: 2rem;
	}
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.hero {
	padding-top: 18rem;
	padding-bottom: 2.5rem;
	position: relative;
	@media (min-width: 1200px) {
		padding-top: 40rem;
		padding-bottom: 5rem;
	}
    max-height: 100vh;
}

.falling-title {
    position: relative;
    top: -30px;
    opacity: 0;
    transition: all 1s ease-out;
}

.falling-title.show {
    top: 0;
    opacity: 1;
}

.hero::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(76, 98, 127, 0.2) 25%,
		rgba(76, 98, 127, 0.2) 50%,
		rgba(0, 0, 0, 0)
	);
}

img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 2 / 3;
	z-index: -1;
}

.intro {
	z-index: 2;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.text-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 3rem 2rem;
	gap: 3rem;

	@media (min-width: 1200px) {
		padding: 5rem 0rem;
		gap: 3rem;
	}

	p,
	a {
		text-align: center;
		font-size: 1.1rem;
		font-weight: 400;
		line-height: 1.5;

		@media (min-width: 1200px) {
			font-size: 1.7rem;
		}
	}

    .strong {
        font-weight: 600;
        line-height: 1.5;
    }

    .titolo{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}



.prenotazioni {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;

	a {
		color: black;
		text-decoration: none;
	}

	a:hover {
		color: rgb(93, 106, 139);
		text-decoration: underline;
	}

    .info{
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
}

.title {
	text-transform: uppercase;
	font-weight: 600 !important;
	color: rgb(93, 106, 139);
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}
