/* Sponsors Page Specific Styles */
.sponsors-section {
	min-height: 100vh;
	background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
	position: relative;
	overflow: hidden;
}

.sponsors-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('/human.png') center/cover;
	opacity: 0.1;
	z-index: 1;
}

.sponsors-container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}

.sponsors-header {
	text-align: center;
	margin-bottom: 60px;
}

.sponsors-header .era-logo {
	color: #DAA520;
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.sponsors-header .era-logo img {
	width: 50px;
	height: 50px;
}

.sponsors-header h1 {
	color: white;
	font-size: 2.5rem;
	margin-bottom: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.sponsors-header .subtitle {
	color: #ccc;
	font-size: 1.1rem;
	margin-bottom: 30px;
}

.support-message {
	background: rgba(218, 165, 32, 0.1);
	border: 2px solid #DAA520;
	border-radius: 15px;
	padding: 20px;
	color: white;
	text-align: center;
	margin-bottom: 40px;
	font-size: 1.1rem;
}

/* Why Support Matters Section */
.why-support-matters {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 60px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(218, 165, 32, 0.2);
}

.why-support-matters h2 {
	color: #DAA520;
	font-size: 2rem;
	margin-bottom: 20px;
	text-align: center;
}

.why-support-matters p {
	color: #ccc;
	font-size: 1.1rem;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 30px;
}

.donation-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 15px;
}

.benefit-item {
	display: flex;
	align-items: center;
	padding: 15px;
	background: rgba(218, 165, 32, 0.1);
	border-radius: 8px;
	border-left: 4px solid #DAA520;
	transition: all 0.3s ease;
}

.benefit-item:hover {
	background: rgba(218, 165, 32, 0.2);
}

.benefit-item i {
	color: #DAA520;
	margin-right: 15px;
	font-size: 1.2rem;
	min-width: 20px;
}

.benefit-item span {
	color: #fff;
	line-height: 1.4;
}

.sponsorship-tiers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

.tier-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 30px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.tier-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #DAA520, #FFD700);
}

.tier-card:hover {
	border-color: #DAA520;
	transform: translateY(-5px);

}

.tier-card.featured {
	border-color: #DAA520;
	background: rgba(218, 165, 32, 0.1);
	transform: scale(1.05);
}

.tier-card.featured::before {
	background: linear-gradient(90deg, #FFD700, #DAA520, #FFD700);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

.tier-header {
	text-align: center;
	margin-bottom: 25px;
}

.tier-name {
	color: #DAA520;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.tier-price {
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.tier-period {
	color: #ccc;
	font-size: 0.9rem;
}

.tier-description {
	color: #ccc;
	margin-bottom: 25px;
	line-height: 1.5;
	text-align: center;
}

.tier-benefits {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.tier-benefits li {
	color: white;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	font-size: 0.95rem;
}

.tier-benefits li i {
	color: #DAA520;
	margin-right: 10px;
	width: 20px;
}

.tier-button {
	width: 100%;
	background: linear-gradient(135deg, #DAA520, #FFD700);
	color: #000;
	border: none;
	padding: 15px;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.tier-button.secondary {
	background: transparent;
	color: #DAA520;
	border: 2px solid #DAA520;
}

.tier-button.secondary:hover {
	background: #DAA520;
	color: #000;
}

.support-footer {
	text-align: center;
	margin-top: 60px;
}

.support-footer h2 {
	color: white;
	font-size: 2rem;
	margin-bottom: 20px;
	font-style: italic;
}

.contact-sponsor {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	margin-top: 40px;
	text-align: center;
}

.contact-sponsor h3 {
	color: #DAA520;
	margin-bottom: 15px;
}

.contact-sponsor p {
	color: #ccc;
	margin-bottom: 20px;
}

.contact-button {
	background: transparent;
	color: #DAA520;
	border: 2px solid #DAA520;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.contact-button:hover {
	background: #DAA520;
	color: #000;
}

@media (max-width: 768px) {
	.sponsors-header .era-logo {
		font-size: 2rem;
	}

	.sponsors-header h1 {
		font-size: 1.8rem;
	}

	.why-support-matters {
		padding: 20px;
	}

	.why-support-matters h2 {
		font-size: 1.5rem;
	}

	.donation-benefits {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.sponsorship-tiers {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.tier-card.featured {
		transform: none;
	}

	.tier-price {
		font-size: 2rem;
	}

	.tier-card {
		padding: 20px;
	}

	.tier-name {
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	.sponsorship-tiers {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.tier-card {
		padding: 15px;
	}
}