/** @format */

@import url("/assets/css/main.css");

.container {
	max-width: var(--max-width);
	width: 95%;
	margin: auto;
}

/* Hero */
.hero {
	background: var(--main-col);
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-content h1 {
	font-size: clamp(2rem, 5vw, 4rem);
	margin-bottom: 1rem;
	color: var(--white);
	font-weight: bold;
}
.hero-content p {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	color: var(--white);
}

/* Sections */
section {
	padding: 4rem 0;
}
section h2 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-dark);
	font-weight: bold;
}

.videos {
	background: var(--main-col);
}

.videos h2 {
	color: var(--white);
}
/* Video Grid */
.videos .grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.video-box {
	background: var(--white);
	border-radius: 1rem;
	overflow: hidden;
	padding-bottom: 0.5rem;
	box-shadow: var(--shadow-extra);
}
.video-box iframe,
.video-box img,
.video-box video {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

.video-box iframe:hover,
.video-box img:hover,
.video-box video:hover {
	transform: scale(1.01);
}

.video-box h5 {
	color: var(--main-col);
	font-weight: bold;
	margin: 0.75rem 1rem 0.25rem;
}
.video-box p {
	color: var(--text-gray);
	margin: 0 1rem 1rem;
}

/* Testimonials */
.testimonials .testimonial-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial-grid blockquote {
	border-left: 5px solid var(--main-col);
	padding: 1.5rem;
	font-weight: bold;
	border-radius: 0.3rem;
	background: var(--white);
	box-shadow: var(--shadow);
}
.testimonial-grid footer {
	margin-top: 1rem;
	font-style: italic;
	color: var(--black);
}

/* CTA Section */
.cta {
	padding: 50px 15px 50px 15px;
	font-weight: bold;
	text-align: center;
	color: var(--black);
}
.cta .container{
	background: var(--main-col);
	box-shadow: var(--shadow);
	padding: 20px;
	border-radius: 10px;
}
.cta h3 {
	color: var(--white);
}
.cta .btns{
	display: flex;
	align-items: center;
	justify-content: center;
}
.cta .btn-primary {
	box-shadow: var(--shadow-extra);
	background-color: var(--main-col);
	transition: background-color 0.3s ease;
	color: var(--white);
	font-weight: bold;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	border-radius: 0.3rem;
	cursor: pointer;
	display: inline-block;
	margin: 1rem;
}