/* 
* Urian Society Community Website
* Main Stylesheet - 2025 Edition
*/

/* ------ Global Styles ------ */
:root {
	/* Dark Theme Colors (Default) */
	--bg-primary: #121212;
	--bg-secondary: #1e1e1e;
	--text-primary: #e0e0e0;
	--text-secondary: #b0b0b0;
	--border-color: #2d2d2d;
	--box-bg: #2c2c2c;
	--box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

	/* Common Colors */
	--primary-color: #6366f1;
	--secondary-color: #818cf8;
	--accent-color: #4f46e5;
	--success-color: #10b981;
	--danger-color: #ef4444;

	/* Gradients */
	--gradient-primary: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	--gradient-dark: linear-gradient(135deg, #1a1b25, #13141c);
	--gradient-overlay: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.7),
		rgba(0, 0, 0, 0.3)
	);

	/* Typography */
	--font-primary: "Inter", "Open Sans", Helvetica, Arial, sans-serif;
	--font-heading: "Plus Jakarta Sans", "Poppins", Helvetica, Arial, sans-serif;

	/* Animations */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;

	/* Shadows */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
	--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

	/* Border Radius */
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 1rem;

	/* Light theme variables */
	--header-bg: rgba(255, 255, 255, 0.95);
	--card-bg: #ffffff;
	--shadow-color: rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
	background-color: var(--bg-primary);
	color: var(--text-primary);
	transition: background-color 0.3s ease, color 0.3s ease;
	font-family: var(--font-primary);
	line-height: 1.6;
}

/* Section Title Styles */
.section-title {
	text-align: center;
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

/* Banner Styles */
.page-banner {
	background: var(--gradient-primary);
	padding: 2rem 0;
	margin-top: 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), transparent);
}

.page-banner h2 {
	color: #ffffff;
	font-size: 2rem;
	position: relative;
	z-index: 1;
	margin: 0;
}

/* Card and Section Styles */
.card,
.news-article,
.event-card,
.team-member,
.value-card {
	background-color: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	transition: all 0.3s ease;
}

/* Footer Styles */
footer {
	background-color: var(--bg-secondary);
	color: var(--text-primary);
	padding: 3rem 0 1rem;
	margin-top: 4rem;
	border-top: 1px solid var(--border-color);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-bottom {
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
}

.footer-bottom p {
	margin: 0;
}

/* Animation Utilities */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeIn 0.6s ease-out forwards;
}

.fade-in:nth-child(2) {
	animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
	animation-delay: 0.4s;
}
.fade-in:nth-child(4) {
	animation-delay: 0.6s;
}

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

/* Smooth Scroll Behavior */
html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent-color);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 10px 20px;
	font-weight: 600;
	text-align: center;
	border-radius: 4px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.primary-btn {
	background-color: var(--primary-color);
	color: var(--light-color) !important;
}

.primary-btn:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
	background-color: var(--light-color);
	color: var(--primary-color) !important;
	border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
	background-color: var(--light-gray);
	color: var(--accent-color) !important;
	border-color: var(--accent-color);
}

/* Placeholder for images */
.placeholder-img {
	background-color: var(--light-gray);
	border: 1px dashed var(--gray-color);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	text-align: center;
	color: var(--gray-color);
	font-style: italic;
	border-radius: 4px;
}

/* ------ Header & Navigation Styles ------ */
header {
	background-color: rgba(18, 18, 18, 0.75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: transform 0.3s ease, background-color 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(0);
}

header.header-hidden {
	transform: translateY(-100%);
}

/* Add more transparency when scrolling */
header.scrolled {
	background-color: rgba(18, 18, 18, 0.85);
}

[data-theme="light"] header.scrolled {
	background-color: rgba(255, 255, 255, 0.85);
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: translateY(-2px);
}

.logo h1 {
	font-size: 1.5rem;
	margin: 0;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 700;
}

.logo-img {
	height: 40px;
	width: auto;
	transition: transform var(--transition-normal);
}

.logo:hover .logo-img {
	transform: scale(1.05);
}

nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

nav ul li a {
	color: var(--text-primary);
	font-weight: 500;
	text-decoration: none;
	padding: 0.5rem 0;
	position: relative;
	transition: color var(--transition-normal);
}

nav ul li a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width var(--transition-normal);
}

nav ul li a:hover::after,
nav ul li a.active::after {
	width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
	color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu {
	display: none;
	cursor: pointer;
	font-size: 1.6rem;
	color: var(--text-primary);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 1002;
	padding: 0.4rem;
	background: none;
	border: none;
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 12px;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	flex-shrink: 0;
}

.mobile-menu:hover {
	color: var(--primary-color);
	background-color: rgba(99, 102, 241, 0.15);
	transform: scale(1.08);
}

.mobile-menu:active {
	transform: scale(0.9);
}

@media (max-width: 1024px) {
	header .container {
		padding: 0 1.5rem;
	}

	nav ul {
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	header .container {
		padding: 0 1.5rem;
	}

	.mobile-menu {
		display: flex;
		z-index: 2000;
	}

	nav ul {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		height: 100vh;
		/* Deep dark background with subtle purple glow at top */
		background: radial-gradient(
				circle at 50% 10%,
				rgba(99, 102, 241, 0.15),
				transparent 70%
			),
			rgba(10, 10, 12, 0.98);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 1999;
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
	}

	nav ul.show {
		display: flex;
		opacity: 1;
		visibility: visible;
	}

	nav ul li {
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		width: 100%;
		text-align: center;
		list-style: none;
		margin: 1.5rem 0;
	}

	nav ul.show li {
		opacity: 1;
		transform: translateY(0);
	}

	/* Staggered entry */
	nav ul.show li:nth-child(1) { transition-delay: 0.1s; }
	nav ul.show li:nth-child(2) { transition-delay: 0.15s; }
	nav ul.show li:nth-child(3) { transition-delay: 0.2s; }
	nav ul.show li:nth-child(4) { transition-delay: 0.25s; }

	nav ul li a {
		font-family: var(--font-heading);
		font-size: clamp(2.5rem, 6vw, 4rem);
		font-weight: 800;
		text-decoration: none;
		letter-spacing: -0.02em;
		position: relative;
		transition: all 0.4s ease;
		
		/* Abstract/Hollow Text Style */
		color: transparent;
		-webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
		text-transform: uppercase;
	}

	/* Hover & Active State: Fill + Glow */
	nav ul li a:hover,
	nav ul li a.active {
		color: #ffffff;
		-webkit-text-stroke: 0px transparent;
		text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
		transform: scale(1.05);
	}

	/* Remove old pseudo-elements */
	nav ul li a::before,
	nav ul li a::after {
		display: none;
	}

	/* Hamburger Icon Animation */
	.mobile-menu i {
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		display: block;
		position: absolute;
		font-size: 1.5rem;
		color: var(--text-primary);
	}

	.mobile-menu.active i.fa-bars {
		opacity: 0;
		transform: rotate(-180deg) scale(0.5);
	}

	.mobile-menu.active i.fa-times {
		opacity: 1;
		transform: rotate(0) scale(1.1);
		color: #ffffff; /* Stark white for contrast */
		text-shadow: 0 0 10px rgba(239, 68, 68, 0.5); /* Subtle red glow */
	}

	.mobile-menu i.fa-times {
		opacity: 0;
		transform: rotate(180deg) scale(0.5);
	}

	.mobile-menu:not(.active) i.fa-bars {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}

/* Tiny adjustment for very small screens */
@media (max-width: 480px) {
	.logo h1 {
		font-size: 1.2rem;
	}
	
	nav ul li {
		margin: 1rem 0; /* Tighter spacing on small phones */
	}
	
	nav ul li a {
		-webkit-text-stroke-width: 0.5px; /* Thinner stroke for small text */
	}
}

/* ------ Hero Section ------ */
.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #ffffff;
	overflow: hidden;
	background: var(--gradient-dark);
}

.hero-banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: slowZoom 20s infinite alternate;
}

.hero-banner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-overlay);
}

.hero .container {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 2rem;
}

.hero h2 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeIn 0.8s ease-out forwards;
}

.hero h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.hero-cta {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeIn 0.8s ease-out 0.4s forwards;
}

/* ------ Guidelines Section ------ */
.guidelines {
	padding: 5rem 0;
	background-color: var(--bg-secondary);
}

.guidelines-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.guideline-item {
	background-color: var(--bg-primary);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--border-color);
}

.guideline-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.guideline-item i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.guideline-item h4 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.guideline-item p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ------ Page Banner ------ */
.page-banner {
	background-color: var(--primary-color);
	color: white;
	padding: 4rem 0;
	text-align: center;
}

.page-banner h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-banner p {
	font-size: 1.2rem;
	opacity: 0.9;
}

/* ------ Mission Section ------ */
.mission {
	padding: 5rem 0;
	background-color: var(--light-bg);
}

.mission-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.mission-content h2 {
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.mission-content p {
	font-size: 1.1rem;
	line-height: 1.6;
}

/* ------ About Section ------ */
.about-preview {
	padding: 5rem 0;
	background-color: var(--light-color);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 3rem;
	margin-top: 2rem;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	min-height: 300px;
}

.about-main {
	padding: 6rem 0;
	background: var(--bg-primary);
	position: relative;
	overflow: hidden;
}

.about-description {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	position: relative;
	z-index: 2;
	animation: fadeIn 1s ease-out;
}

.about-description h3 {
	color: var(--primary-color);
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	animation: slideUp 0.8s ease-out;
}

.about-description h3::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.about-description p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-primary);
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(20px);
	animation: slideUpFade 0.8s ease-out forwards;
}

.about-description p:nth-child(2) {
	animation-delay: 0.2s;
}

.about-description p:nth-child(3) {
	animation-delay: 0.4s;
}

/* Animation Keyframes */
@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ------ Gallery Section ------ */
.gallery {
	padding: 3rem 0;
	background-color: var(--light-gray);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.gallery-item .placeholder-img {
	min-height: 200px;
}

/* ------ Values Section ------ */
.values {
	padding: 4rem 0;
	background-color: var(--secondary-bg);
}

.values-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
	justify-content: center;
}

.value-card {
	background-color: var(--box-bg);
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
}

.value-card i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.value-card h4 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.value-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Add animation delays for grid items */
.values-grid .value-card:nth-child(2) {
	animation-delay: 0.2s;
}

.values-grid .value-card:nth-child(3) {
	animation-delay: 0.4s;
}

.values-grid .value-card:nth-child(4) {
	animation-delay: 0.6s;
}

/* ------ Team Section ------ */
.team {
	padding: 5rem 0;
	background-color: var(--light-bg);
}

.team h2 {
	text-align: center;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.team-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.team-member {
	text-align: center;
	padding: 2rem;
	background-color: white;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

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

.member-avatar {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.member-avatar i {
	font-size: 2rem;
	color: white;
}

.team-member h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

/* ------ Featured News Section ------ */
.featured-news {
	padding: 5rem 0;
	background-color: var(--light-gray);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.news-item {
	background-color: var(--box-bg);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow);
}

.news-item h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.news-item .date {
	color: var(--gray-color);
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.read-more {
	display: inline-block;
	margin-top: 1rem;
	font-weight: 600;
	color: var(--primary-color);
}

/* ------ Join Community Section ------ */
.join-community {
	background: linear-gradient(
		135deg,
		var(--primary-color) 0%,
		var(--accent-color) 100%
	);
	color: white;
	padding: 5rem 0;
	text-align: center;
}

.join-community h2 {
	margin-bottom: 1rem;
}

.join-community p {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.join-community .btn-primary {
	background-color: white;
	color: var(--primary-color);
}

.join-community .btn-primary:hover {
	background-color: var(--light-bg);
}

/* ------ Call to Action ------ */
.cta {
	background-color: var(--primary-color);
	color: var(--light-color);
	padding: 3rem 0;
	text-align: center;
}

.cta p {
	max-width: 700px;
	margin: 0 auto 2rem;
}

.cta.host-event {
	background-color: var(--accent-color);
}

.cta.subscribe {
	background-color: var(--secondary-color);
}

.subscribe-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
}

.subscribe-form input {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 4px 0 0 4px;
}

.subscribe-form button {
	border-radius: 0 4px 4px 0;
}

/* ------ Events Listing ------ */
.events-listing {
	padding: 3rem 0;
}

.event-filters {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.filter-btn {
	background: none;
	border: none;
	padding: 8px 16px;
	margin: 0 8px 8px 0;
	cursor: pointer;
	font-weight: 600;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background-color: var(--primary-color);
	color: var(--light-color);
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.event-card {
	background: var(--box-bg);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-date {
	background: var(--primary-color);
	color: white;
	padding: 1.5rem;
	text-align: center;
}

.event-date .month {
	font-size: 1.2rem;
	font-weight: 600;
}

.event-date .day {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	margin: 0.5rem 0;
}

.event-details {
	padding: 1.5rem;
}

.event-time {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.event-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.add-calendar-btn {
	background: none;
	border: none;
	color: var(--primary-color);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.add-calendar-btn:hover {
	color: var(--accent-color);
}

/* ------ News Content ------ */
.news-content {
	padding: 3rem 0;
}

.news-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
}

.news-articles {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.news-article {
	background-color: var(--light-color);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.article-header {
	padding: 1.5rem 1.5rem 0;
}

.article-date {
	color: var(--gray-color);
	margin-bottom: 1rem;
}

.article-img {
	margin: 1rem 1.5rem;
	min-height: 200px;
}

.article-content {
	padding: 0 1.5rem 1.5rem;
}

.article-content ul {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.article-expand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.news-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.sidebar-section {
	background-color: var(--light-color);
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.search-form {
	display: flex;
	margin-top: 1rem;
}

.search-input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid var(--gray-color);
	border-radius: 4px 0 0 4px;
	border-right: none;
}

.search-btn {
	background-color: var(--primary-color);
	color: var(--light-color);
	border: none;
	padding: 0 15px;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

.latest-updates ul {
	list-style: none;
	margin-top: 1rem;
}

.latest-updates li {
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--light-gray);
	display: flex;
	flex-direction: column;
}

.latest-updates li:last-child {
	border-bottom: none;
}

.latest-updates .date {
	font-size: 0.8rem;
	color: var(--gray-color);
}

.status-widget {
	margin-top: 1rem;
}

.status-widget p {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.status-widget .online {
	color: var(--success-color);
}

.status-widget .btn {
	margin-top: 1rem;
	width: 100%;
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border-radius: 4px;
	background-color: var(--light-color);
	color: var(--dark-color);
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pagination a:hover,
.pagination a.active {
	background-color: var(--primary-color);
	color: var(--light-color);
}

.pagination a:last-child {
	width: auto;
	padding: 0 15px;
}

/* ------ Contact Content ------ */
.contact-content {
	padding: 3rem 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

.contact-method i {
	font-size: 2rem;
	color: var(--primary-color);
}

.method-details h4 {
	margin-bottom: 0.5rem;
}

.method-details .social-links {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}

.method-details .social-links a {
	font-size: 1.5rem;
}

.contact-form {
	background-color: var(--light-color);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--gray-color);
	border-radius: 4px;
}

.form-group textarea {
	resize: vertical;
}

/* ------ FAQ Section ------ */
.faq-section {
	padding: 4rem 0;
	background-color: var(--primary-bg);
}

.faq-container {
	max-width: 800px;
	margin: 2rem auto;
}

.faq-item {
	background: var(--box-bg);
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	border: 1px solid var(--border-color);
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: var(--primary-bg);
}

.faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
	color: var(--text-primary);
}

.faq-question i {
	color: var(--text-secondary);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	padding: 0 1.5rem 1.5rem;
	max-height: 500px;
}

.faq-answer p {
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ------ Events Section ------ */
.events-section {
	padding: 4rem 0;
	background-color: var(--secondary-bg);
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.event-card {
	background-color: var(--box-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
}

.event-image {
	width: 100%;
	height: 200px;
	background-color: var(--primary-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
}

.event-content {
	padding: 1.5rem;
}

.event-content h3 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.event-date {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.event-description {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.event-cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* ------ Footer ------ */
footer {
	background-color: var(--bg-secondary);
	color: var(--text-primary);
	padding: 3rem 0 1rem;
	margin-top: 4rem;
	border-top: 1px solid var(--border-color);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
	padding: 0;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: white;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
	opacity: 1;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	color: white;
	font-size: 1.5rem;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.social-links a:hover {
	opacity: 1;
}

.footer-bottom {
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
}

.footer-bottom p {
	margin: 0;
}

/* ------ Responsive Styles ------ */
@media (max-width: 1024px) {
	.about-content {
		flex-direction: column;
	}

	.news-layout {
		grid-template-columns: 1fr;
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.hero {
		padding: 3rem 0;
	}

	.hero h2 {
		font-size: 2.5rem;
	}

	.hero h3 {
		font-size: 1.3rem;
	}

	.events-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}

	.join-buttons {
		flex-direction: column;
		gap: 1rem;
	}

	.event-actions {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hero h2 {
		font-size: 2rem;
	}

	.hero h3 {
		font-size: 1.1rem;
	}

	.value-card,
	.event-card,
	.news-card {
		padding: 1rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.subscribe-form {
		flex-direction: column;
	}

	.subscribe-form input {
		border-radius: 4px;
		margin-bottom: 1rem;
	}

	.subscribe-form button {
		border-radius: 4px;
	}
}

/* Content Box Styles */
.content-box {
	background-color: var(--box-bg);
	border-radius: 16px;
	padding: 2rem;
	margin: 2rem 0;
	box-shadow: var(--box-shadow);
	border: 1px solid var(--border-color);
}

.content-box h3 {
	color: var(--primary-color);
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.content-box p {
	color: var(--text-primary);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

/* Guidelines Box Styles */
.guidelines-box {
	background-color: var(--box-bg);
	border-radius: 16px;
	padding: 3rem;
	margin-top: 2rem;
	box-shadow: var(--box-shadow);
	border: 1px solid var(--border-color);
}

.guidelines-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-primary);
}

.guidelines-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.guideline-item {
	background-color: var(--bg-primary);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--border-color);
}

.guideline-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.guideline-item i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.guideline-item h4 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.guideline-item p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Section Spacing */
section {
	padding: 5rem 0;
}

@media (max-width: 480px) {
	section {
		padding: 3rem 0;
	}

	.content-box,
	.guidelines-box {
		padding: 1.5rem;
	}

	.guidelines-grid {
		gap: 1rem;
	}

	.guideline-item {
		padding: 1.5rem;
	}

	.btn {
		width: 100%;
		text-align: center;
	}
}

/* CTA Container */
.cta-container {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
}

@media (max-width: 480px) {
	.cta-container {
		flex-direction: column;
	}
}

/* Animation Improvements */
.scale-in {
	opacity: 0;
	transform: scale(0.95);
	animation: scaleIn 0.4s ease-out forwards;
}

@keyframes scaleIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Contact Section Styles */
.contact-section {
	padding: 5rem 0;
	background-color: var(--bg-secondary);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.contact-info {
	background: var(--bg-primary);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
}

.contact-info h3 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.contact-item i {
	color: var(--primary-color);
	font-size: 1.5rem;
}

.contact-item-content h4 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.contact-item-content p {
	color: var(--text-secondary);
	line-height: 1.6;
}

.contact-form {
	background: var(--bg-primary);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

/* University Promotion Section */
.university-promo {
	padding: 4rem 0;
	background-color: var(--secondary-bg);
	text-align: center;
}

.university-promo h2 {
	margin-bottom: 1.5rem;
	color: var(--primary-text);
}

.university-promo p {
	max-width: 800px;
	margin: 0 auto 3rem;
	color: var(--secondary-text);
}

.university-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.university-card {
	background-color: var(--box-bg);
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.university-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
}

.university-card i {
	font-size: 2.5rem;
	color: var(--accent-color);
	margin-bottom: 1rem;
}

.university-card h3 {
	margin-bottom: 1rem;
	color: var(--primary-text);
}

.university-card p {
	color: var(--secondary-text);
	margin-bottom: 0;
}

.university-cta {
	margin-top: 2rem;
}

.university-cta .btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	font-size: 1.1rem;
}

/* Responsive adjustments for university promo section */
@media (max-width: 768px) {
	.university-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.university-card {
		padding: 1.5rem;
	}
}

/* Events Hero Section */
.events-hero {
	position: relative;
	padding: 6rem 0;
	background: var(--gradient-dark);
	text-align: center;
	color: var(--text-primary);
	overflow: hidden;
}

.events-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent);
	z-index: 1;
}

.events-hero .container {
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.events-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.events-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

/* Event Categories */
.event-categories {
	padding: 5rem 0;
	background: var(--bg-secondary);
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.category-card {
	background: var(--bg-primary);
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	border-color: var(--primary-color);
}

.category-card i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.category-card h3 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.category-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Upcoming Events */
.upcoming-events {
	padding: 5rem 0;
	background: var(--bg-primary);
}

.events-timeline {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 3rem;
}

.event-item {
	background: var(--bg-secondary);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	gap: 2rem;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.event-item:hover {
	transform: translateX(10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	border-color: var(--primary-color);
}

.event-date {
	background: var(--primary-color);
	color: white;
	padding: 2rem;
	text-align: center;
	min-width: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.event-date .month {
	font-size: 1.2rem;
	font-weight: 600;
}

.event-date .day {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	margin: 0.5rem 0;
}

.event-date .year {
	font-size: 1rem;
	opacity: 0.9;
}

.event-content {
	padding: 2rem;
	flex: 1;
}

.event-content h3 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.event-details {
	display: flex;
	gap: 2rem;
	margin-bottom: 1rem;
}

.event-time,
.event-location {
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.event-description {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.event-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.add-calendar-btn {
	background: none;
	border: none;
	color: var(--primary-color);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.add-calendar-btn:hover {
	color: var(--accent-color);
}

/* Past Events */
.past-events {
	padding: 5rem 0;
	background: var(--bg-secondary);
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.event-card {
	background: var(--bg-primary);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	border-color: var(--primary-color);
}

.event-card .event-date {
	padding: 1.5rem;
	min-width: auto;
}

.event-card .event-content {
	padding: 1.5rem;
}

.read-more {
	color: var(--primary-color);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.read-more:hover {
	color: var(--accent-color);
	gap: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.events-hero h1 {
		font-size: 2.5rem;
	}

	.events-hero p {
		font-size: 1.1rem;
	}

	.event-item {
		flex-direction: column;
		gap: 0;
	}

	.event-date {
		padding: 1rem;
		flex-direction: row;
		justify-content: center;
		gap: 1rem;
	}

	.event-date .day {
		margin: 0;
	}

	.event-details {
		flex-direction: column;
		gap: 0.5rem;
	}

	.event-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.event-actions .btn,
	.event-actions .add-calendar-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.events-hero h1 {
		font-size: 2rem;
	}

	.categories-grid {
		grid-template-columns: 1fr;
	}

	.event-card {
		margin: 0 1rem;
	}
}

/* Event Types */
.event-types {
	padding: 5rem 0;
	background: var(--bg-secondary);
}

.types-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.type-card {
	background: var(--bg-primary);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.type-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.type-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-color);
}

.type-card:hover::before {
	opacity: 1;
}

.type-icon {
	width: 80px;
	height: 80px;
	background: var(--bg-secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 2px solid var(--border-color);
}

.type-card:hover .type-icon {
	background: var(--primary-color);
	border-color: var(--primary-color);
	transform: scale(1.1);
}

.type-icon i {
	font-size: 2rem;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.type-card:hover .type-icon i {
	color: white;
}

.type-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.type-content h3 {
	color: var(--text-primary);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
}

.type-content p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Styles for Event Types */
@media (max-width: 768px) {
	.types-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.type-card {
		padding: 2rem 1.5rem;
	}

	.type-icon {
		width: 70px;
		height: 70px;
	}

	.type-icon i {
		font-size: 1.75rem;
	}
}

@media (max-width: 480px) {
	.types-grid {
		grid-template-columns: 1fr;
	}

	.type-card {
		margin: 0 1rem;
	}
}

/* =========================================
   MODERN REDESIGN - 2025 AESTHETICS
   ========================================= */

/* --- Dynamic Background --- */
.background-globes {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	z-index: -1;
	background: #0f0f13; /* Deep dark bg */
}

.globe {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.6;
	animation: floatGlobe 20s infinite alternate;
}

.globe-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 70%);
	top: -20%;
	left: -10%;
}

.globe-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(168, 85, 247, 0.4),
		transparent 70%
	); /* Purple */
	bottom: -10%;
	right: -10%;
	animation-delay: -5s;
}

.globe-3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(
		circle,
		rgba(236, 72, 153, 0.3),
		transparent 70%
	); /* Pink icon */
	top: 40%;
	left: 40%;
	animation-delay: -10s;
}

@keyframes floatGlobe {
	0% {
		transform: translate(0, 0) scale(1);
	}
	100% {
		transform: translate(30px, 50px) scale(1.1);
	}
}

/* --- Glass Header --- */
.glass-header {
	background: rgba(18, 18, 20, 0.6);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.glass-header .nav-links {
	display: flex;
	gap: 2.5rem;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s;
	position: relative;
}

.nav-links a.active,
.nav-links a:hover {
	color: #fff;
	text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.logo-text {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* --- Modern Hero --- */
.hero-modern {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 80px; /* Header offset */
	overflow: hidden;
}

.hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(99, 102, 241, 0.1);
	border: 1px solid rgba(99, 102, 241, 0.2);
	border-radius: 99px;
	font-size: 0.9rem;
	color: #a5b4fc;
	margin-bottom: 1.5rem;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background: #4ade80;
	border-radius: 50%;
	box-shadow: 0 0 0 rgba(74, 222, 128, 0.4);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
	}
}

.hero-title {
	font-size: 3.5rem; /* Fallback */
	font-size: clamp(3rem, 5vw, 4.5rem);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
	color: #fff;
}

.text-gradient {
	background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: #94a3b8;
	max-width: 500px;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	gap: 1rem;
}

.glow-effect {
	position: relative;
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
	overflow: hidden;
}

.glow-effect::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: rotate(45deg);
	animation: shimmer 3s infinite;
}

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

.glass-btn {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff !important;
}

.glass-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* --- Hero Visual Stack --- */
.visual-card-stack {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-visual {
	width: 90%;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	z-index: 2;
	transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
	transition: transform 0.5s;
}

.main-visual:hover {
	transform: perspective(1000px) rotateY(0) rotateX(0);
}

.float-card {
	position: absolute;
	background: rgba(30, 30, 35, 0.9);
	padding: 1rem 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	display: flex;
	gap: 0.8rem;
	align-items: center;
	font-weight: 600;
	color: #fff;
	z-index: 3;
	backdrop-filter: blur(10px);
}

.float-card i {
	color: var(--primary-color);
}

.card-1 {
	top: 10%;
	left: 0;
	animation: floatCard 4s infinite ease-in-out;
}

.card-2 {
	bottom: 10%;
	right: 0;
	animation: floatCard 5s infinite ease-in-out reverse;
}

@keyframes floatCard {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

/* --- Marquee --- */
.marquee-section {
	background: #000;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	white-space: nowrap;
}

.marquee-content {
	display: inline-block;
	animation: scrollText 30s linear infinite;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 2px;
}

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

/* --- Bento Grid --- */
.section-desc {
	color: #94a3b8;
	max-width: 600px;
	margin: 0 auto;
}

.center {
	text-align: center;
}

.values-bento {
	padding: 6rem 0;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3 cols */
	grid-template-rows: repeat(2, minmax(250px, auto));
	gap: 1.5rem;
	margin-top: 3rem;
}

.bento-card {
	background: rgba(30, 30, 35, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.bento-card:hover {
	transform: translateY(-5px);
	border-color: rgba(99, 102, 241, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.large-card {
	grid-column: span 2;
}

.full-width {
	grid-column: span 3;
}

.icon-box {
	width: 50px;
	height: 50px;
	background: rgba(99, 102, 241, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #818cf8;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.bento-card h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.bento-card p {
	color: #94a3b8;
	font-size: 1rem;
	line-height: 1.6;
}

/* Special visual for full width */
.collab-visual {
	flex: 1;
	position: relative;
	/* Insert some CSS art here implicitly handled by generic shape */
	background: radial-gradient(
		circle at center,
		rgba(99, 102, 241, 0.1),
		transparent
	);
	border-radius: 12px;
	margin-left: 2rem;
	min-height: 150px;
}

.card-content.row {
	flex-direction: row;
	align-items: center;
}

/* Fallback for small screens */
@media (max-width: 900px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-actions {
		justify-content: center;
	}
	.hero-subtitle {
		margin: 0 auto 2.5rem;
	}
	.bento-grid {
		grid-template-columns: 1fr;
	}
	.large-card,
	.full-width {
		grid-column: span 1;
	}
	.card-content.row {
		flex-direction: column;
	}
	.collab-visual {
		margin: 2rem 0 0;
		width: 100%;
	}
}

/* --- Join CTA Bar --- */
.join-cta-bar {
	padding: 4rem 0;
}

.cta-box {
	background: linear-gradient(
		135deg,
		rgba(99, 102, 241, 0.2),
		rgba(30, 30, 35, 0.8)
	);
	border: 1px solid rgba(99, 102, 241, 0.3);
	border-radius: 24px;
	padding: 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at top right,
		rgba(236, 72, 153, 0.15),
		transparent
	);
	z-index: 0;
}

.cta-text,
.cta-box .btn {
	position: relative;
	z-index: 1;
}

.cta-text h2 {
	margin-bottom: 0.5rem;
}
.cta-text p {
	margin: 0;
	color: #cbd5e1;
}

@media (max-width: 768px) {
	.cta-box {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}
}

/* --- Modern Footer --- */
.modern-footer {
	background: #0b0b0d; /* Darker than bg */
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 4rem 0 2rem;
	margin-top: 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-logo {
	height: 40px;
	margin-bottom: 1rem;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}
.footer-links a {
	color: #94a3b8;
	transition: color 0.2s;
}
.footer-links a:hover {
	color: #fff;
}

.social-icons {
	display: flex;
	gap: 1rem;
}

.social-icons a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s;
	color: #fff;
}

.social-icons a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

.glass-card {
	background: rgba(30, 30, 35, 0.5);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: 0.3s;
}

.glass-card:hover {
	background: rgba(30, 30, 35, 0.8);
	border-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   AESTHETIC REFINEMENTS
   ========================================= */

/* Specific Card Gradients for a Premium Look */
.community-card {
	background: linear-gradient(
		145deg,
		rgba(30, 30, 35, 0.9) 0%,
		rgba(99, 102, 241, 0.15) 100%
	);
	border: 1px solid rgba(99, 102, 241, 0.2);
}

.innovation-card {
	background: linear-gradient(
		145deg,
		rgba(30, 30, 35, 0.9) 0%,
		rgba(236, 72, 153, 0.15) 100%
	);
	border: 1px solid rgba(236, 72, 153, 0.2);
}

.safety-card {
	background: linear-gradient(
		145deg,
		rgba(30, 30, 35, 0.9) 0%,
		rgba(16, 185, 129, 0.15) 100%
	);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.collab-card {
	background: linear-gradient(
		145deg,
		rgba(30, 30, 35, 0.9) 0%,
		rgba(245, 158, 11, 0.15) 100%
	);
	border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Enhancing Icons */
.community-card .icon-box {
	background: rgba(99, 102, 241, 0.2);
	color: #818cf8;
}
.innovation-card .icon-box {
	background: rgba(236, 72, 153, 0.2);
	color: #f472b6;
}
.safety-card .icon-box {
	background: rgba(16, 185, 129, 0.2);
	color: #34d399;
}
.collab-card .icon-box {
	background: rgba(245, 158, 11, 0.2);
	color: #fbbf24;
}

/* Refine Card Hover */
.bento-card:hover {
	transform: translateY(-5px) scale(1.01);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
	/* Ensure on mobile it stacks nicely if needed, though grid-template-cols 1fr handles it */
}

/* =========================================
   ABOUT PAGE REFINEMENTS
   ========================================= */

.page-header {
	padding: 10rem 0 6rem;
	text-align: center;
	position: relative;
}

.page-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
}

.page-title {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: #fff;
	letter-spacing: -0.02em;
}

.page-subtitle {
	color: #94a3b8;
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.2rem;
	line-height: 1.6;
}

.content-section {
	padding: 6rem 0;
}

.split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

.text-block h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #fff;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.text-block p {
	color: #cbd5e1;
	line-height: 1.8;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.gradient-chip {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(99, 102, 241, 0.1);
	border: 1px solid rgba(99, 102, 241, 0.2);
	border-radius: 20px;
	color: #a5b4fc;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.university-showcase {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 35, 0.8),
		rgba(15, 23, 42, 0.9)
	);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 5rem 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 4rem 0;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.university-showcase::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #fbbf24, #d97706); /* Gold accents */
}

.university-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	text-align: left;
}

.uni-feature {
	background: rgba(255, 255, 255, 0.03);
	padding: 1.5rem;
	border-radius: 12px;
	border-left: 2px solid #fbbf24;
}

.uni-feature h4 {
	color: #fff;
	margin-bottom: 0.5rem;
}
.uni-feature p {
	color: #94a3b8;
	font-size: 0.95rem;
	margin: 0;
}

/* Guidelines Grid */
.guidelines-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.guideline-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 2.5rem 2rem;
	border-radius: 16px;
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.guideline-card:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-5px);
	border-color: rgba(99, 102, 241, 0.3);
}

.guideline-icon {
	width: 60px;
	height: 60px;
	background: rgba(99, 102, 241, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #818cf8;
	margin: 0 auto 1.5rem;
	transition: all 0.3s;
}

.guideline-card:hover .guideline-icon {
	background: var(--primary-color);
	color: #fff;
	transform: rotateY(180deg);
}

@media (max-width: 900px) {
	.split-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.university-showcase {
		padding: 3rem 1.5rem;
	}
}

/* =========================================
   EVENTS PAGE REFINEMENTS
   ========================================= */

/* Feature Hero Card */
.event-feature-card {
	background: linear-gradient(
		135deg,
		rgba(15, 23, 42, 0.9),
		rgba(30, 30, 35, 0.8)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	margin-bottom: 4rem;
}

.event-feature-card::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: radial-gradient(
		circle at right,
		rgba(99, 102, 241, 0.2),
		transparent
	);
	pointer-events: none;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 3rem;
	position: relative;
	z-index: 2;
}

.feature-tag {
	display: inline-block;
	padding: 4px 12px;
	background: var(--primary-color);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.countdown-box {
	display: flex;
	gap: 1.5rem;
	margin: 2rem 0;
}

.count-unit {
	text-align: center;
}

.count-num {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	font-family: "Plus Jakarta Sans", sans-serif;
	line-height: 1;
}

.count-label {
	font-size: 0.8rem;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Event List Styling */
.event-list-section {
	padding: 2rem 0 6rem;
}

.modern-event-card {
	display: grid;
	grid-template-columns: 100px 1fr auto;
	gap: 2rem;
	background: rgba(30, 30, 35, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	align-items: center;
}

.modern-event-card:hover {
	background: rgba(30, 30, 35, 0.7);
	border-color: rgba(99, 102, 241, 0.4);
	transform: translateX(5px);
}

.event-date-box {
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	padding: 1rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.date-month {
	display: block;
	color: var(--primary-color);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.date-day {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin: 4px 0;
}

.event-info h3 {
	margin: 0 0 0.5rem 0;
	color: #fff;
	font-size: 1.4rem;
}

.event-meta {
	display: flex;
	gap: 1.5rem;
	color: #94a3b8;
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
}

.event-meta i {
	color: var(--secondary-color);
	margin-right: 6px;
}

.event-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1rem;
}

/* Calendar Filter Tabs */
.filter-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.tab-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.8rem 1.5rem;
	border-radius: 30px;
	color: #94a3b8;
	cursor: pointer;
	transition: 0.3s;
	font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
	background: #fff;
	color: #000;
	border-color: #fff;
}

@media (max-width: 768px) {
	.feature-grid {
		grid-template-columns: 1fr;
	}
	.modern-event-card {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.event-date-box {
		display: inline-flex;
		align-items: baseline;
		gap: 0.5rem;
		width: auto;
		padding: 0.5rem 1rem;
	}
	.date-day {
		font-size: 1.2rem;
	}
	.event-action {
		align-items: flex-start;
		flex-direction: row;
	}
}

/* =========================================
   CONTACT PAGE REFINEMENTS
   ========================================= */

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: start;
	padding: 2rem 0 6rem;
}

/* Contact Info Side */
.contact-info-panel h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #fff;
	line-height: 1.1;
}

.contact-subtitle {
	font-size: 1.1rem;
	color: #94a3b8;
	margin-bottom: 3rem;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.method-card {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	border-radius: 16px;
	transition: all 0.3s;
}

.method-card:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateX(5px);
	border-color: rgba(99, 102, 241, 0.3);
}

.method-icon {
	width: 50px;
	height: 50px;
	background: rgba(99, 102, 241, 0.1);
	color: #818cf8;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.method-details h4 {
	margin: 0 0 0.3rem;
	color: #fff;
	font-size: 1.1rem;
}

.method-details p {
	margin: 0;
	color: #94a3b8;
	font-size: 0.95rem;
}

.method-details a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.2s;
}

.method-details a:hover {
	color: var(--primary-color);
}

/* Glass Form Side */
.glass-form-container {
	background: rgba(30, 30, 35, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 3rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #cbd5e1;
	font-weight: 500;
	font-size: 0.9rem;
}

.form-control {
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1rem;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 1rem;
	transition: all 0.3s;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

.discord-cta-box {
	margin-top: 3rem;
	padding: 2rem;
	background: linear-gradient(135deg, #5865f2, #4752c4);
	border-radius: 16px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-text h3 {
	margin-bottom: 0.5rem;
	color: #fff;
}
.discord-text p {
	margin: 0;
	opacity: 0.9;
}

@media (max-width: 900px) {
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.contact-info-panel h2 {
		font-size: 2.5rem;
	}
	.discord-cta-box {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}
}

/* =========================================
   BENTO GRID REFINEMENTS (Fixing Visual Imbalance)
   ========================================= */

/* Make Safe Space card visually taller to match others or fill space better */
.safety-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Fix Collaboration Card Layout */
.collab-card .card-content.row {
	flex-direction: row;
	align-items: center;
	height: 100%;
}

.collab-text {
	flex: 1.5; /* Give text slightly more space */
	padding-right: 1rem;
}

.collab-visual {
	flex: 1; /* Ensure visual takes up space properly */
	background: radial-gradient(
		circle,
		rgba(234, 179, 8, 0.15) 0%,
		transparent 70%
	); /* Distinct gold glow */
	border-radius: 12px;
	height: 100%;
	min-height: 180px; /* Enforce height */
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 1rem;
}

/* Add an icon inside the visual to make it look intentional, not empty */
.collab-visual::after {
	content: "\f2b5"; /* fa-handshake */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 4rem;
	color: rgba(234, 179, 8, 0.2);
	filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.3));
	animation: float 6s ease-in-out infinite;
}

/* Adjust card paddings for better density */
.bento-card {
	padding: 2.5rem 2rem;
}

/* Specific gradients for card backgrounds to separate them */
.community-card {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 45, 0.8),
		rgba(20, 20, 30, 0.9)
	);
	border-color: rgba(99, 102, 241, 0.2);
}

.innovation-card {
	background: linear-gradient(
		135deg,
		rgba(35, 20, 40, 0.8),
		rgba(20, 20, 25, 0.9)
	);
	border-color: rgba(236, 72, 153, 0.2);
}

.safety-card {
	background: linear-gradient(
		135deg,
		rgba(20, 40, 35, 0.8),
		rgba(15, 25, 20, 0.9)
	);
	border-color: rgba(16, 185, 129, 0.2);
}

.collab-card {
	background: linear-gradient(
		135deg,
		rgba(40, 35, 20, 0.8),
		rgba(30, 25, 15, 0.9)
	);
	border-color: rgba(234, 179, 8, 0.2);
}

@media (max-width: 900px) {
	.collab-visual {
		display: none; /* Hide confusing visual on mobile */
	}
}

/* =========================================
   AESTHETIC FOOTER OVERHAUL
   ========================================= */

.modern-footer {
	background: linear-gradient(
		to bottom,
		rgba(15, 23, 42, 0.8),
		rgba(0, 0, 0, 0.95)
	);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	padding-top: 6rem;
	margin-top: 8rem; /* Separation from content */
}

/* Add a giant glow effect behind the footer */
.modern-footer::before {
	content: "";
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(99, 102, 241, 0.15),
		transparent 70%
	);
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}

.footer-top {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr; /* Give brand more space */
	gap: 4rem;
	align-items: start;
}

.footer-brand {
	max-width: 300px;
}

.footer-logo {
	height: 50px;
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-brand p {
	color: #94a3b8;
	font-size: 1.1rem;
	line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.footer-links ul li {
	margin-bottom: 1rem;
}

.footer-links a {
	color: #cbd5e1;
	text-decoration: none;
	font-size: 1.05rem;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
}

.footer-links a:hover {
	color: var(--primary-color);
	transform: translateX(5px);
}

/* Social Icons - Glassmorphism Circles */
.social-icons {
	display: flex;
	gap: 1rem;
}

.social-icons a {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.2rem;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy */
}

.social-icons a:hover {
	background: #fff;
	color: #000;
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
	position: relative;
	z-index: 1;
	margin-top: 5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
	color: #64748b;
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	.footer-top {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}
	.footer-brand {
		margin: 0 auto;
	}
	.social-icons {
		justify-content: center;
	}
}

/* =========================================
   BENTO GRID FINAL POLISH & LAYOUT
   ========================================= */

/* Section Header Polishing */
.section-header.center {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 4rem;
	width: 100%;
}

.section-title {
	font-size: 3rem;
	background: linear-gradient(to right, #fff, #94a3b8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1rem;
	display: inline-block;
	position: relative;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--primary-color);
	border-radius: 2px;
}

.section-desc {
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.1rem;
	color: #94a3b8;
}

/* 12-Column Grid Layout */
.bento-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(280px, auto);
	gap: 1.5rem;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

/* Container alignment */
.values-bento .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Card Positioning */

/* Row 1: Community (7/12) + Innovation (5/12) */
.bento-grid > .community-card {
	grid-column: span 7;
	grid-row: 1;
}

.bento-grid > .innovation-card {
	grid-column: span 5;
	grid-row: 1;
}

/* Row 2: Safe Space (5/12) + Collaboration (7/12) */
.bento-grid > .safety-card {
	grid-column: span 5;
	grid-row: auto;
}

.bento-grid > .collab-card {
	grid-column: span 7;
	grid-row: auto;
}

/* Styles and Visuals */

/* 1. COLLABORATION CARD */
.collab-card {
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		120deg,
		rgba(30, 25, 15, 0.95) 0%,
		rgba(60, 50, 20, 0.8) 100%
	);
	border: 1px solid rgba(254, 240, 138, 0.2);
}

.collab-visual {
	display: none;
}

.collab-card::after {
	content: "\f2b5"; /* fa-handshake */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	bottom: -20px;
	right: -20px;
	font-size: 10rem;
	color: rgba(255, 255, 255, 0.03);
	transform: rotate(-15deg);
	pointer-events: none;
	transition: all 0.5s ease;
}

.collab-card:hover::after {
	color: rgba(234, 179, 8, 0.1);
	transform: rotate(0deg) scale(1.1);
	bottom: 0;
	right: 0;
}

.collab-text {
	position: relative;
	z-index: 2;
	max-width: 65%;
}

/* 2. SAFE SPACE CARD */
.safety-card {
	background: linear-gradient(
		135deg,
		rgba(6, 78, 59, 0.8),
		rgba(2, 44, 34, 0.95)
	);
	border: 1px solid rgba(52, 211, 153, 0.2);
}

.safety-card .icon-box {
	background: rgba(52, 211, 153, 0.2);
	color: #34d399;
}

/* 3. INNOVATION CARD */
.innovation-card {
	background: linear-gradient(
		135deg,
		rgba(80, 7, 36, 0.8),
		rgba(83, 20, 50, 0.9)
	);
	border: 1px solid rgba(244, 114, 182, 0.2);
}

.innovation-card .icon-box {
	background: rgba(244, 114, 182, 0.2);
	color: #f472b6;
}

/* 4. COMMUNITY CARD */
.community-card {
	background: linear-gradient(
		135deg,
		rgba(30, 27, 75, 0.9),
		rgba(49, 46, 129, 0.8)
	);
	border: 1px solid rgba(129, 140, 248, 0.2);
	position: relative;
	overflow: hidden;
}

.community-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	background: radial-gradient(
		circle,
		rgba(129, 140, 248, 0.15),
		transparent 70%
	);
}

/* Content Styling */
.bento-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.5rem;
	height: 100%;
	/* Hover effects */
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bento-card:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3),
		0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.bento-card h3 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	letter-spacing: -0.01em;
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
	line-height: 1.2;
}

.bento-card p {
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.icon-box {
	margin-bottom: 1.25rem;
	width: 56px;
	height: 56px;
	font-size: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
	.bento-grid {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
	}

	.bento-card {
		min-height: auto;
		padding: 2rem;
	}

	.collab-text {
		max-width: 100%;
	}
	.collab-card::after {
		font-size: 8rem;
		bottom: -1rem;
		right: -1rem;
	}

	/* Reset columns for mobile if grid fallback used */
	.bento-grid > * {
		grid-column: span 1 !important;
	}
}
