/*  Insert all your glorious CSS styles below! */
/* General Reset */
body {
	margin: 0;
	font-family: "Poppins", sans-serif;
	background-color: #fffafc;
	color: #555;
}

/* Navigation */
nav {
	background-color: #ffe6f2;
	padding: 15px 0;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 0;
	padding: 0;
}

nav a {
	text-decoration: none;
	color: #7b6d8d;
	font-weight: 600;
	transition: color 0.3s ease;
}

nav a:hover {
	color: #ff9ecb;
}

/* Hero Section */
.hero {
	background-image: url("your-hero-image.jpg"); /* replace with your image file */
	background-size: cover;
	background-position: center;
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.5);
}

.hero-text {
	position: relative;
	z-index: 1;
	max-width: 600px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	backdrop-filter: blur(5px);
}

.hero h1 {
	font-size: 2.5em;
	color: #7a6fa7;
	margin-bottom: 10px;
}

.btn {
	background-color: #ffd6e0;
	color: #555;
	padding: 10px 20px;
	border-radius: 20px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: #ffb6c1;
}

/* Intro Section */
.intro {
	text-align: center;
	padding: 60px 20px;
	background-color: #fff5f7;
}

.intro h2 {
	color: #a68ac3;
}

/* Highlights */
.highlights {
	padding: 60px 20px;
	text-align: center;
}

.widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.widget {
	background-color: #fff0f5;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	transition: transform 0.2s ease;
}

.widget:hover {
	transform: translateY(-5px);
}

.widget h3 {
	color: #a477b4;
}

/* Footer */
footer {
	background-color: #ffe6f2;
	text-align: center;
	padding: 15px;
	color: #7b6d8d;
	font-size: 0.9em;
	margin-top: 40px;
}
