/* Hero */

.hero {
	background-color: #0f1728;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 0 1rem;
	background-image: linear-gradient(
			/* Dark blue overlay */ rgba(15, 23, 40, 0.5),
			rgba(15, 23, 40, 0.5)
		),
		url("/images/cvn-hero.webp");
	background-size: cover;
	background-position: center;
	min-height: 50vh;
}

.hero__title {
	font-size: 3rem;
	margin-top: 3rem;
	color: white;
	text-shadow: var(--shadow);
	text-align: center;
}

.hero__subtitle {
	color: white;
	letter-spacing: 1px;
	font-size: 0.8rem;
	text-shadow: var(--shadow);
	text-align: center;
	font-weight: bold;
}

/* Link Buttons */

.link-button--inverted {
	background-color: var(--foreground);
	color: var(--primary);
}

/* Testimonials */

.testimonials__carousel {
	width: 100%;
	max-width: 45rem;
	height: 15rem;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.testimonials__slide-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.testimonials__slide {
	display: flex;
	flex-direction: column;
	background-color: var(--foreground);
	border-radius: var(--border);
	padding: 1rem;
	height: 100%;
	gap: 0.5rem;

	position: absolute;
	top: 0;
	left: 0;

	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.testimonials__slide--active {
	opacity: 1;
}

.testimonials__dot-container {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translate(-50%);
	gap: 0.5rem;
	display: flex;
	width: 100%;
	justify-content: center;
}

.testimonials__dot {
	height: 1rem;
	width: 1rem;
	background-color: var(--primary);
	border-radius: 50%;
	display: inline-block;
	opacity: 25%;
	cursor: pointer;
}

.testimonials__dot--active {
	opacity: 100%;
}

.arrow-button {
	background-color: var(--primary);
	padding: 1rem;
	border: none;
	height: 3rem;
	width: 3rem;
	border-radius: 50%;
	cursor: pointer;
	position: static;
	top: 2rem;
}

.arrow-button--left {
	left: 0;
}

.arrow-button--right {
	right: 0;
}

.arrow {
	border: solid white;
	border-width: 0 0.25rem 0.25rem 0;
	display: inline-block;
	padding: 0.25rem;
}

.arrow--right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	margin-right: 0.25rem;
}

.arrow--left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	margin-left: 0.25rem;
}

@media (max-width: 810px) {
	.arrow-button {
		display: none;
	}

	.card--testimonial {
		height: 23rem;
	}
}

@media (max-width: 480px) {
	.link-button {
		width: 100%;
		text-align: center;
	}

	.hero__title {
		font-size: 2rem;
	}

	.testimonials__carousel {
		height: 20rem;
	}

	.card__title {
		font-size: 1.5rem;
	}
}
