/* RESET / BASE STYLES */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f1f6f4;
	color: #333;
	line-height: 1.6;
}

/* HEADER (Hero) */
.hero-fancy {
	position: relative;
	height: 100vh;
	max-height: 1000px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.hero-fancy img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.4),
		rgba(0, 0, 0, 0.8)
	);
	z-index: 2;
}

.hero-text {
	position: relative;
	z-index: 3;
	color: white;
	max-width: 700px;
	padding: 2rem;
	animation: fadeInUp 1s ease-out forwards;
	opacity: 0;
}

.hero-text h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-text p {
	font-size: 1.4rem;
	margin-bottom: 2rem;
	color: #ddd;
}

/* PITCH CARD */
.pitch-card {
	background: rgba(20, 20, 20, 0.75);
	color: #f0f0f0;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
	max-width: 500px;
	margin: 0 auto;
	animation: fadeInUp 1s ease-out 0.7s forwards;
	opacity: 0;
}

.pitch-card h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: #90e1c5;
	text-align: center;
}

.pitch-card .callout {
	margin-top: 1rem;
	font-style: italic;
	color: #ffdd8f;
	text-align: center;
}

.pitch-carousel {
	list-style: none;
	padding-left: 0;
	min-height: 1.5em;
	height: 2em;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.pitch-carousel li {
	position: absolute;
	width: 100%;
	opacity: 0;
	animation: fadeInOut 16s infinite;
}

.pitch-carousel li:nth-child(1) {
	animation-delay: 0s;
}
.pitch-carousel li:nth-child(2) {
	animation-delay: 4s;
}
.pitch-carousel li:nth-child(3) {
	animation-delay: 8s;
}
.pitch-carousel li:nth-child(4) {
	animation-delay: 12s;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInOut {
	0% {
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	20% {
		opacity: 1;
	}
	25% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* GUARANTEE SECTION */
.guarantee {
	padding: 3rem 1rem;
	text-align: center;
	background-color: #fff0e5;
}

.guarantee p {
	max-width: 700px;
	margin: 0 auto 1.5rem;
	font-size: 1.1rem;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: #ff7f50;
	color: white;
	font-weight: bold;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.cta-button:hover {
	background-color: #e36d3f;
}

/* PROFILES SECTION */
.profiles {
	padding: 3rem 1rem;
	background-color: #e1f9f5;
	text-align: center;
}

.profiles h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #2e7d64;
}

.profile-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.profile-card {
	background-color: white;
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
}

.profile-card:hover {
	transform: scale(1.03);
}

.profile-card img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	object-fit: cover;
}

.profile-card h4 {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
	color: #4caf91;
}

.profile-card p {
	font-size: 0.95rem;
	color: #444;
}

/* FOOTER */
footer {
	text-align: center;
	padding: 1.5rem;
	background-color: #4caf91;
	color: white;
}
