/* ========================================
   SHARED STYLES - Common across all pages
   ======================================== */

/* Universal Styles */
* 
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* CSS Variables */
:root 
{
	--deep-purple: #4A148C;
	--gold: #D4AF37;
	--light-blue: #87CEEB;
	--white: #FFFFFF;
	--dark-text: #333333;
	--light-gray: #F5F5F5;
}

/* Body */
body 
{
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--dark-text);
}

/* Container */
.container 
{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar 
{
	background: var(--deep-purple);
	color: var(--white);
	padding: 12px 0;
	font-size: 14px;
}

.top-bar .container 
{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.top-bar-left 
{
	display: flex;
	gap: 25px;
	align-items: center;
	flex-wrap: wrap;
}

.top-bar-right 
{
	display: flex;
	gap: 20px;
	align-items: center;
}

.top-bar i 
{
	color: var(--gold);
	margin-right: 8px;
}

.top-bar a 
{
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s;
}

.top-bar a:hover 
{
	color: var(--gold);
}

.social-top a 
{
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.social-top a:hover 
{
	background: var(--gold);
	color: var(--deep-purple);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header 
{
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content 
{
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-section 
{
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-img 
{
	height: 70px;
	width: auto;
}

.site-info 
{
	display: flex;
	flex-direction: column;
}

.site-title 
{
	font-size: 24px;
	font-weight: bold;
	color: var(--deep-purple);
	letter-spacing: 1px;
}

.site-subtitle 
{
	font-size: 13px;
	color: var(--dark-text);
	letter-spacing: 0.5px;
	text-align: center;
	font-weight: bold;
}

/* Desktop Menu */
.main-nav 
{
	display: flex;
	align-items: center;
	gap: 35px;
}

.main-nav ul 
{
	list-style: none;
	display: flex;
	gap: 35px;
	align-items: center;
}

.main-nav a 
{
	text-decoration: none;
	color: var(--dark-text);
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s;
	position: relative;
	padding: 8px 10px;
}

.main-nav a:hover 
{
	color: var(--deep-purple);
}

.main-nav a::before 
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: var(--gold);
	transition: all 0.3s;
	transform: translateX(-50%);
}

.main-nav a:hover::before 
{
	width: 100%;
}

.donate-btn 
{
	background: linear-gradient(135deg, var(--gold), #B8860B);
	color: var(--white);
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: bold;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.donate-btn:hover 
{
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-toggle 
{
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.mobile-toggle span 
{
	width: 28px;
	height: 3px;
	background: var(--deep-purple);
	transition: all 0.3s;
	border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) 
{
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) 
{
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) 
{
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu 
{
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: var(--white);
	box-shadow: -5px 0 15px rgba(0,0,0,0.1);
	transition: right 0.4s ease;
	z-index: 2000;
	overflow-y: auto;
}

.mobile-menu.active 
{
	right: 0;
}

.mobile-menu-header 
{
	padding: 20px;
	background: var(--deep-purple);
	color: var(--white);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-menu-close 
{
	font-size: 24px;
	cursor: pointer;
	color: var(--gold);
}

.mobile-menu ul 
{
	list-style: none;
	padding: 20px 0;
}

.mobile-menu li 
{
	border-bottom: 1px solid var(--light-gray);
}

.mobile-menu a 
{
	display: block;
	padding: 15px 20px;
	color: var(--dark-text);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
}

.mobile-menu a:hover 
{
	background: var(--light-gray);
	color: var(--deep-purple);
	padding-left: 30px;
}

.mobile-menu .donate-btn 
{
	margin: 20px;
	display: block;
	text-align: center;
}

.mobile-overlay 
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1999;
}

.mobile-overlay.active 
{
	display: block;
}

/* ========================================
   COMMON SECTION STYLES
   ======================================== */
.section-title 
{
	text-align: center;
	font-size: 42px;
	color: var(--deep-purple);
	margin-bottom: 20px;
	position: relative;
	font-weight: 700;
}

.section-title::after 
{
	content: '';
	display: block;
	width: 100px;
	height: 4px;
	background: var(--gold);
	margin: 20px auto;
	border-radius: 2px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn 
{
	padding: 16px 40px;
	border-radius: 35px;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	transition: all 0.3s;
	display: inline-block;
}

.btn-primary 
{
	background: var(--gold);
	color: var(--deep-purple);
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary 
{
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.btn:hover 
{
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-primary:hover 
{
	background: #B8860B;
}

.btn-secondary:hover 
{
	background: var(--white);
	color: var(--deep-purple);
}

/* ========================================
   CALL TO ACTION
   ======================================== */
.cta 
{
	padding: 100px 20px;
	background: linear-gradient(135deg, var(--light-blue), var(--deep-purple));
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before 
{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
	animation: rotate 20s linear infinite;
}

@keyframes rotate 
{
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.cta-content 
{
	position: relative;
	z-index: 1;
}

.cta h2 
{
	font-size: 42px;
	margin-bottom: 25px;
	font-weight: 700;
}

.cta p 
{
	font-size: 20px;
	margin-bottom: 40px;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
footer 
{
	background: #1a1a1a;
	color: var(--white);
	padding: 80px 20px 30px;
}

.footer-content 
{
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 50px;
	margin-bottom: 50px;
}

.footer-section h3 
{
	color: var(--gold);
	margin-bottom: 25px;
	font-size: 20px;
}

.footer-section p 
{
	line-height: 1.8;
	color: #ccc;
}

.footer-section ul 
{
	list-style: none;
}

.footer-section a 
{
	color: #ccc;
	text-decoration: none;
	display: block;
	margin-bottom: 12px;
	transition: all 0.3s;
	padding-left: 0;
}

.footer-section a:hover 
{
	color: var(--light-blue);
	padding-left: 10px;
}

.social-links 
{
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a 
{
	width: 45px;
	height: 45px;
	background: var(--deep-purple);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	padding: 0;
}

.social-links a:hover 
{
	background: var(--gold);
	color: var(--deep-purple);
	transform: translateY(-5px);
}

.footer-bottom 
{
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 14px;
	color: #999;
}

/* ========================================
   RESPONSIVE - SHARED
   ======================================== */
@media (max-width: 968px) 
{
	.main-nav 
	{
		display: none;
	}

	.mobile-toggle 
	{
		display: flex;
	}

	.mobile-menu 
	{
		display: block;
	}

	.section-title 
	{
		font-size: 32px;
	}

	.top-bar .container 
	{
		justify-content: center;
		text-align: center;
	}

	.top-bar-left,
	.top-bar-right 
	{
		justify-content: center;
	}

	.logo-img 
	{
		height: 50px;
	}

	.site-title 
	{
		font-size: 18px;
	}

	.site-subtitle 
	{
		font-size: 11px;
	}
}

@media (max-width: 480px) 
{
	.btn 
	{
		padding: 12px 25px;
		font-size: 14px;
	}
}