/* Hero Section */
.hero 
{
	height: 650px;
	background: linear-gradient(rgba(74, 20, 140, 0.8), rgba(74, 20, 140, 0.6)),
				url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 650"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23D4AF37" opacity="0.3"/></pattern></defs><rect fill="%234A148C" width="1200" height="650"/><rect fill="url(%23dots)" width="1200" height="650"/><path d="M0,300 Q300,200 600,300 T1200,300 L1200,650 L0,650 Z" fill="%2387CEEB" opacity="0.1"/></svg>');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	position: relative;
}

.hero::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
}

.hero-content 
{
	max-width: 900px;
	padding: 0 20px;
	animation: fadeInUp 1s;
	position: relative;
	z-index: 1;
}

.hero h1 
{
	font-size: 56px;
	margin-bottom: 25px;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
	font-weight: 700;
	line-height: 1.2;
}

.hero p 
{
	font-size: 22px;
	margin-bottom: 40px;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons 
{
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* About Section */
.about 
{
	padding: 100px 20px;
	background: var(--light-gray);
}

.section-subtitle 
{
	text-align: center;
	font-size: 18px;
	color: var(--dark-text);
	max-width: 700px;
	margin: 0 auto 50px;
}

.about-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.about-card 
{
	background: var(--white);
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	transition: all 0.4s;
	text-align: center;
	border-top: 4px solid var(--gold);
}

.about-card:hover 
{
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-card i 
{
	font-size: 56px;
	color: var(--light-blue);
	margin-bottom: 25px;
	display: block;
}

.about-card h3 
{
	color: var(--deep-purple);
	margin-bottom: 20px;
	font-size: 24px;
}

.about-card p 
{
	line-height: 1.8;
	color: #666;
}

/* Impact Section */
.impact 
{
	padding: 100px 20px;
	background: linear-gradient(135deg, var(--deep-purple), #6A1B9A);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.impact::before 
{
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
	border-radius: 50%;
}

.impact-stats 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 50px;
	text-align: center;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.stat-item 
{
	padding: 30px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.3s;
}

.stat-item:hover 
{
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.05);
}

.stat-number 
{
	font-size: 52px;
	font-weight: bold;
	color: var(--gold);
	margin-bottom: 15px;
}

.stat-label 
{
	font-size: 18px;
	color: var(--light-blue);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Gallery Section */
.gallery 
{
	padding: 100px 20px;
	background: var(--white);
}

.gallery-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gallery-item 
{
	height: 350px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	cursor: pointer;
	transition: all 0.4s;
}

.gallery-item:hover 
{
	transform: scale(1.03);
	box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-placeholder 
{
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--deep-purple), var(--light-blue));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 18px;
	text-align: center;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.gallery-placeholder::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.gallery-item:hover .gallery-placeholder::before 
{
	left: 100%;
}

.gallery-placeholder i 
{
	font-size: 64px;
	margin-bottom: 20px;
	display: block;
}
