/* CSS Variables for easy theming and maintenance */
:root {
	--primary-pink: #d41367;
	--primary-pink-dark: #b01056;
	--primary-pink-light: #ff4d94;
	--accent-gold: #f7a81b;
	--accent-gold-dark: #d89515;
	--royal-blue: #17458f;
	--text-dark: #1a1a1a;
	--text-medium: #555;
	--text-light: #888;
	--bg-white: #fff;
	--bg-light: #f7f7f7;
	--bg-lighter: #fefefe;
	--bg-dark: #000;
	--bg-gradient-pink: linear-gradient(135deg, #d41367 0%, #ffffff 50%, #000000 100%);
	--bg-gradient-reverse: linear-gradient(135deg, #d41367 0%, #000 100%);
	--bg-gradient-soft: linear-gradient(135deg, rgba(212, 19, 103, 0.05) 0%, rgba(247, 168, 27, 0.05) 100%);
	--navbar-height: 70px;
	--border-radius: 16px;
	--border-radius-sm: 8px;
	--border-radius-lg: 24px;
	--transition-speed: 0.3s;
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--focus-outline: 3px solid #d41367;
	--focus-offset: 2px;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

	/* Spacing system */
	--spacing-xs: 10px;
	--spacing-sm: 20px;
	--spacing-md: 30px;
	--spacing-lg: 40px;
	--spacing-xl: 60px;
	--spacing-2xl: 80px;
	--spacing-3xl: 100px;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Focus indicators for accessibility */
*:focus {
	outline: var(--focus-outline);
	outline-offset: var(--focus-offset);
}

*:focus:not(:focus-visible) {
	outline: none;
}

*:focus-visible {
	outline: var(--focus-outline);
	outline-offset: var(--focus-offset);
}

/* Screen reader only class */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Skip to main content link */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary-pink);
	color: white;
	padding: 8px 16px;
	text-decoration: none;
	z-index: 10000;
	border-radius: 0 0 4px 0;
}

.skip-link:focus {
	top: 0;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.noscript-warning {
	background-color: #fff3cd;
	border: 2px solid #ffc107;
	color: var(--text-dark);
	padding: 15px 20px;
	text-align: center;
	margin: 0;
}

.noscript-warning p {
	margin: 0;
	font-size: 14px;
}

.noscript-warning strong {
	color: #856404;
}

body {
	font-family: Georgia, 'Times New Roman', Times, serif;
	background-color: var(--bg-white);
	line-height: 1.6;
	color: var(--text-dark);
}

/* Rotary Typography - Primary font for headings and navigation */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.nav-links,
button,
.cta-btn,
.section-title {
	font-family: 'Open Sans', Arial, sans-serif;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	background-color: var(--primary-pink);
	color: var(--bg-white);
	padding: 10px 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	height: var(--navbar-height);
}

.navbar.scrolled {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.logo {
	display: flex;
	align-items: center;
	height: 100%;
}

.logo img {
	height: calc(var(--navbar-height) + 30px);
	max-height: none;
	width: auto;
	object-fit: contain;
	margin-top: -15px;
	margin-bottom: -15px;
}


.nav-links {
	transition: all 0.3s ease;
}

.nav-links ul {
	list-style: none;
	display: flex;
	gap: 25px;
}


.nav-links a {
	text-decoration: none;
	color: var(--bg-white);
	font-weight: 500;
	font-size: 15px;
	transition: color var(--transition-speed) ease;
}

.nav-links a:hover {
	color: var(--accent-gold);
}

.nav-links a[aria-current="page"] {
	color: var(--accent-gold);
	font-weight: 600;
}

.hamburger {
	display: none;
	font-size: 28px;
	cursor: pointer;
	color: var(--bg-white);
	background: none;
	border: none;
	padding: 5px;
}

/* Mobile styles */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		background-color: var(--primary-pink);
		position: absolute;
		top: var(--navbar-height);
		right: 0;
		width: 100%;
		text-align: center;
		padding: 20px 0;
		z-index: 100;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}

	.nav-links ul {
		flex-direction: column;
		gap: 15px;
	}

	.nav-links.active {
		display: block;
	}

	.hamburger {
		display: block;
	}
}


/* ========== Hero Slider Section ========== */

.hero-slider {
	position: relative;
	height: 100vh;
	overflow: hidden;
	padding-top: var(--navbar-height);
}

.slider-control-btn {
	position: absolute;
	bottom: 32px;
	left: 32px;
	z-index: 10;
	background-color: white;
	color: var(--primary-pink);
	border: 2px solid var(--primary-pink);
	border-radius: 50%;
	width: 56px;
	height: 56px;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s var(--transition-smooth);
	box-shadow: var(--shadow-lg);
}

.slider-control-btn:hover {
	background-color: var(--primary-pink);
	color: white;
	transform: scale(1.05);
	box-shadow: var(--shadow-xl);
}

.slider-control-btn:focus {
	outline: 3px solid var(--primary-pink);
	outline-offset: 3px;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: none;
	justify-content: center;
	align-items: center;
}

.slide.slide-1 {
	background-image: linear-gradient(135deg, rgba(212, 19, 103, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/heroes/hero1.jpg');
}

.slide.slide-2 {
	background-image: linear-gradient(135deg, rgba(212, 19, 103, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/heroes/hero2.jpg');
}

.slide.slide-3 {
	background-image: linear-gradient(135deg, rgba(212, 19, 103, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/heroes/hero3.jpg');
}

.slide.active {
	display: flex;
	animation: fadeInScale 1s var(--transition-smooth);
}

.slide-content {
	text-align: center;
	color: white;
	background: transparent;
	padding: 50px 40px;
	border-radius: 20px;
	max-width: 700px;
	margin: 0 20px;
}

.slide-content h1 {
	font-size: 2.75rem;
	margin-bottom: 25px;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.cta-btn {
	background-color: white;
	color: var(--primary-pink);
	padding: 16px 40px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cta-btn:hover {
	background-color: var(--accent-gold);
	color: white;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(247, 168, 27, 0.5);
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(1.05);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.slide-content {
		padding: 32px 24px;
	}

	.slide-content h1 {
		font-size: 2rem;
	}

	.cta-btn {
		padding: 14px 32px;
		font-size: 15px;
	}

	.slider-control-btn {
		width: 48px;
		height: 48px;
		bottom: 20px;
		left: 20px;
	}
}


/* ========== Welcome Section ========== */
.welcome-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 80px 40px;
	background-color: var(--bg-white);
	color: var(--text-dark);
	gap: 50px;
}

.welcome-content {
	flex: 1 1 500px;
}

.welcome-content h2 {
	font-size: 2.25rem;
	color: var(--primary-pink);
	margin-bottom: 20px;
	font-weight: 700;
}

.welcome-content p {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--text-medium);
}

.welcome-image {
	flex: 1 1 400px;
	text-align: center;
}

.welcome-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
	.welcome-section {
		flex-direction: column;
		text-align: center;
		padding: 60px 20px;
	}

	.welcome-content h2 {
		font-size: 1.75rem;
	}
}


/* ========== Statistics Counter Section ========== */
.stats-section {
	display: flex;
	justify-content: center;
	gap: 40px;
	background-color: var(--primary-pink);
	padding: 50px 30px;
	color: white;
	flex-wrap: wrap;
}

.stat-card {
	text-align: center;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 25px 35px;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: transform var(--transition-speed) ease;
	min-width: 180px;
}

.stat-card:hover {
	transform: translateY(-8px);
}

.stat-card h2 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: white;
}

.stat-card p {
	font-size: 1.1rem;
	font-weight: 500;
	color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.stats-section {
		flex-direction: column;
		align-items: center;
		padding: 60px 20px;
	}

	.stat-card {
		width: 85%;
		margin-bottom: 20px;
	}
}


/* ========== Why Join Section ========== */
.why-join-section {
	padding: 80px 30px;
	background-color: #fff;
	text-align: center;
}

.section-title {
	font-size: 2.25rem;
	color: var(--primary-pink);
	margin-bottom: 40px;
	font-weight: 700;
}

.join-cards {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.join-card {
	background-color: white;
	color: var(--text-dark);
	padding: 35px 28px;
	border-radius: 16px;
	max-width: 320px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform var(--transition-speed) ease, box-shadow 0.3s ease;
	border-top: 4px solid var(--primary-pink);
}

.join-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon {
	font-size: 3rem;
	margin-bottom: 16px;
	color: var(--primary-pink);
}

.join-card h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: var(--primary-pink);
	font-weight: 600;
}

.join-card p {
	font-size: 1rem;
	line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
	.why-join-section {
		padding: 60px 20px;
	}

	.section-title {
		font-size: 1.85rem;
	}

	.join-cards {
		flex-direction: column;
		align-items: center;
	}

	.join-card {
		width: 90%;
	}
}


/* ========== Gallery Section ========== */
.gallery-section {
	background-color: #f8f8f8;
	padding: 80px 30px;
	text-align: center;
}

.gallery-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 50px;
}

.gallery-grid a {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	transition: transform var(--transition-speed) ease;
	width: 320px;
	height: 240px;
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-grid a:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.gallery-grid a:hover img {
	transform: scale(1.05);
}

.view-more {
	margin-top: 50px;
}

.cta-btn {
	background-color: var(--primary-pink);
	color: white;
	padding: 16px 40px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
	background-color: var(--primary-pink-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}


/* ========== Events Section ========== */
.events-preview {
	background-color: var(--primary-pink);
	padding: 80px 30px;
	text-align: center;
	color: white;
}

.events-preview .section-title {
	color: white;
}

.events-preview .event-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px;
	margin-top: 50px;
}

.events-preview .event-card {
	background-color: white;
	color: var(--text-dark);
	padding: 32px 26px;
	border-radius: 16px;
	width: 320px;
	text-align: left;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	transition: transform var(--transition-speed) ease, box-shadow 0.3s ease;
	border-left: 4px solid var(--accent-gold);
}

.events-preview .event-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.events-preview .event-card h3 {
	font-size: 1.35rem;
	color: var(--primary-pink);
	margin-bottom: 10px;
	font-weight: 600;
}

.events-preview .event-date {
	font-weight: 600;
	color: var(--accent-gold);
	margin-bottom: 14px;
	font-size: 1rem;
}

.events-preview .event-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-medium);
}

.see-all-events {
	margin-top: 50px;
}

.see-all-events .cta-btn {
	background: white;
	color: var(--primary-pink);
}

.see-all-events .cta-btn:hover {
	background: var(--accent-gold);
	color: white;
}

/* Mobile */
@media (max-width: 768px) {
	.events-preview {
		padding: 60px 20px;
	}

	.events-preview .event-card {
		width: 90%;
	}
}


/* ========== Join Us Banner Section ========== */

.join-us-banner {
	background-color: var(--primary-pink);
	padding: 60px 30px;
	text-align: center;
	color: white;
}

.join-content h2 {
	font-size: 2.25rem;
	margin-bottom: 24px;
	font-weight: 700;
}

.join-content .cta-btn {
	background: white;
	color: var(--primary-pink);
	padding: 16px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	display: inline-block;
	transition: all 0.3s ease;
}

.join-content .cta-btn:hover {
	background: var(--accent-gold);
	color: white;
	transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
	.join-us-banner {
		padding: 60px 20px;
	}

	.join-content h2 {
		font-size: 1.85rem;
	}

	.join-content .cta-btn {
		font-size: 1rem;
		padding: 14px 32px;
	}
}


/* ========== Footer Section ========== */
.site-footer {
	background-color: #d41367 !important;
	color: white;
	padding: 60px 30px 20px;
	width: 100%;
	margin: 0;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px;
	max-width: 1200px;
	margin: auto;
}

.footer-column {
	flex: 1 1 250px;
}

.footer-column h3 {
	color: var(--accent-gold);
	margin-bottom: 18px;
	font-size: 1.25rem;
	font-weight: 600;
}

.footer-column p,
.footer-column a {
	color: white;
	font-size: 1rem;
	text-decoration: none;
	margin-bottom: 10px;
	display: block;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: var(--accent-gold);
}

.icons {
	display: flex;
	gap: 14px;
	margin-top: 14px;
}

.icons a {
	font-size: 1.5rem;
	color: white;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	padding: 0;
	margin: 0;
}

.icons a:hover {
	background: var(--accent-gold);
	transform: translateY(-3px);
	padding: 0;
}

.footer-logos {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 16px;
	padding: 12px 20px;
	background-color: white;
	border-radius: 8px;
	width: fit-content;
}

.footer-logo {
	width: 55px;
	height: auto;
	opacity: 1;
	transition: transform 0.3s ease;
}

.footer-logo:hover {
	transform: scale(1.1);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 50px;
	padding-top: 20px;
	text-align: center;
	font-size: 0.95rem;
	color: white;
	font-family: 'Open Sans', Arial, sans-serif;
	background-color: #d41367 !important;
	background: #d41367 !important;
}

.footer-bottom p {
	margin: 5px 0;
}

.footer-bottom a {
	color: var(--accent-gold);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: white;
	text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
	.site-footer {
		padding: 30px 20px 15px;
	}

	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
	}

	.footer-column {
		margin-bottom: 0;
	}

	.footer-column h3 {
		margin-bottom: 8px;
	}

	.footer-column p {
		margin-bottom: 6px;
	}

	.icons {
		justify-content: center;
		margin-top: 6px;
	}

	.footer-logos {
		justify-content: center;
		margin-top: 8px;
	}

	.footer-bottom {
		margin-top: 20px;
		padding-top: 12px;
	}
}


/********************************************************************************************************/
/********************************************************************************************************/
/********************************************************************************************************/
/********************************************************************************************************/


.about-club {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding: 60px 20px;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	color: var(--text-dark);
}

.about-text {
	flex: 1 1 500px;
}

.about-text h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: var(--primary-pink);
}

.about-text p {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 15px;
}

.about-text .club-intro {
	margin-top: 25px;
	font-style: italic;
}

.about-image {
	flex: 1 1 400px;
	text-align: center;
	padding-top: 20px;
	/*  fixes the "touching the ceiling" issue */
}

.about-image img {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}


/* Responsive */
@media (max-width: 768px) {
	.about-club {
		flex-direction: column;
		text-align: center;
	}

	.about-text h2 {
		font-size: 1.6rem;
	}

	.about-text p {
		font-size: 0.95rem;
	}
}


/**************************PAST PRESIDENTS**********************************/

.leaders-section {
	background: #fff;
	padding: 60px 20px;
	text-align: center;
}

.leader-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.leader-card {
	background-color: #f9f9f9;
	border-radius: 20px;
	padding: 25px;
	width: 250px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform var(--transition-speed) ease;
}

.leader-card:hover {
	transform: translateY(-8px);
}

.leader-card img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
	border: 3px solid var(--primary-pink);
}

.leader-card h3 {
	margin: 10px 0 5px;
	color: var(--primary-pink);
	font-size: 1.2rem;
}

.leader-card .role {
	font-weight: bold;
	color: var(--text-dark);
	margin-bottom: 10px;
}

.leader-card blockquote {
	font-size: 1rem;
	font-style: italic;
	color: var(--text-medium);
	margin-top: 10px;
}

/* Mobile */
@media (max-width: 768px) {
	.leader-card {
		width: 90%;
	}
}


/**************************WHAT IS ROTARY**********************************/
.what-is-rotary {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	justify-content: space-between;
	background-color: #f8f8f8;
	padding: 60px 20px;
}

.rotary-text {
	flex: 1 1 500px;
}

.rotary-text h2 {
	color: var(--primary-pink);
	font-size: 2rem;
	margin-bottom: 20px;
}

.rotary-text p {
	font-size: 1rem;
	margin-bottom: 15px;
	line-height: 1.6;
	color: var(--text-dark);
}

.rotary-text ul {
	padding-left: 20px;
	list-style: none;
}

.rotary-text ul li {
	font-size: 1rem;
	margin-bottom: 10px;
	position: relative;
	color: #444;
}

.rotary-logo {
	flex: 1 1 300px;
	text-align: center;
}

.rotary-logo img {
	max-width: 200px;
	height: auto;
	border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
	.what-is-rotary {
		flex-direction: column-reverse;
		text-align: center;
	}

	.rotary-logo {
		margin-bottom: 20px;
	}

	.rotary-logo img {
		max-width: 150px;
	}
}


/**************************ROTARY HISTORY**********************************/

.horizontal-timeline-section {
	padding: 60px 20px;
	background: linear-gradient(to right, #2d2d2d, #3e3e3e);
	text-align: center;
}

.timeline-title {
	font-size: 2rem;
	color: var(--primary-pink);
	margin-bottom: 30px;
}

.horizontal-timeline {
	display: flex;
	overflow-x: auto;
	gap: 20px;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
}

.timeline-event {
	flex: 0 0 280px;
	background: white;
	border: 2px solid var(--primary-pink);
	border-radius: 16px;
	padding: 20px;
	scroll-snap-align: start;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	transition: transform var(--transition-speed) ease;
}

.timeline-event:hover {
	transform: translateY(-6px);
}

.timeline-event h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--primary-pink-dark);
}

.timeline-event p {
	font-size: 1rem;
	color: var(--text-dark);
}

/* Scrollbar Styling */
.horizontal-timeline::-webkit-scrollbar {
	height: 8px;
}

.horizontal-timeline::-webkit-scrollbar-thumb {
	background: var(--primary-pink);
	border-radius: 10px;
}

.horizontal-timeline::-webkit-scrollbar-track {
	background: #f3f3f3;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
	.timeline-event {
		flex: 0 0 240px;
	}
}


/**************************Current Executives**********************************/
.exec-team-section {
	padding: 60px 20px;
	background: #fff0f5;
	text-align: center;
}

.section-title {
	color: var(--primary-pink);
	font-size: 2rem;
	margin-bottom: 40px;
}

.exec-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	justify-items: center;
	margin: 40px auto;
	max-width: 1200px;
}


.exec-card {
	background: #fff;
	border: 2px solid var(--primary-pink);
	border-radius: 15px;
	width: 340px;
	padding: 20px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	transition: transform var(--transition-speed) ease;
}

.exec-card:hover {
	transform: translateY(-8px);
}

.exec-card img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 15px;
}

.exec-card h3 {
	margin-bottom: 5px;
	color: var(--primary-pink-dark);
	font-size: 1.2rem;
}

.exec-card .role {
	font-style: italic;
	color: var(--text-medium);
	margin-bottom: 10px;
}

.exec-card p {
	font-size: 1rem;
	color: #444;
}

/* Placeholder Styling */
.exec-card.placeholder {
	background: #fafafa;
	border-style: dashed;
	color: #999;
}

@media (max-width: 600px) {
	.exec-card {
		width: 90%;
	}
}

@media (max-width: 768px) {
	.exec-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.exec-grid {
		grid-template-columns: 1fr;
	}
}


/**************************TESTIMONIALS**********************************/

.testimonial-slider {
	background: linear-gradient(to right, var(--primary-pink), #17458f);
	padding: 60px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.section-title {
	color: #f2ecef;
	font-size: 2rem;
	margin-bottom: 40px;
}

.slider-wrapper {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	height: 140px;
}

.slides {
	display: flex;
	transition: transform 0.8s ease-in-out;
}

.slide {
	min-width: 100%;
	font-style: italic;
	font-size: 1.2rem;
	color: #ebe7e7;
	line-height: 1.6;
	padding: 0 10px;
}

.slide p::before,
.slide p::after {
	content: '"';
	font-size: 2rem;
	color: #fff9f9;
}

.slide span {
	display: block;
	margin-top: 15px;
	font-weight: bold;
	font-style: normal;
	color: #efebeb;
}


@media (max-width: 600px) {
	.slide {
		font-size: 1rem;
		padding: 0 5px;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.slider-wrapper {
		height: auto;
		padding: 10px 0;
	}
}


/**************************SPONSORS**********************************/
.partners-strip {
	background: linear-gradient(to right, #2d2d2d, #3e3e3e);
	color: white;
	padding: 50px 20px;
	text-align: center;
	/* color: white; */
}

.partners-strip .section-title {
	font-size: 1.8rem;
	margin-bottom: 30px;
}

.partner-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px;
}

.partner-logos img {
	max-height: 80px;
	width: auto;
	transition: transform var(--transition-speed) ease;
	filter: brightness(0) invert(1);
	/* White effect on gradient */
}

.partner-logos img:hover {
	transform: scale(1.1);
	filter: brightness(1.2) invert(0);
}

/* Mobile */
@media (max-width: 600px) {
	.partner-logos {
		flex-direction: column;
		gap: 25px;
	}

	.partner-logos img {
		max-height: 70px;
	}
}


/**************************FAQ**********************************/
.faq-section {
	background: #f7f7f7;
	padding: 60px 20px;
	text-align: center;
}

.section-title {
	font-size: 2rem;
	margin-bottom: 40px;
	color: var(--text-dark);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #ddd;
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
	width: 100%;
	padding: 15px 20px;
	font-size: 1rem;
	background-color: #fff;
	border: none;
	cursor: pointer;
	text-align: left;
	font-weight: bold;
	color: #444;
	transition: background var(--transition-speed) ease;
}

.faq-question:hover {
	background-color: #f0f0f0;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	background: #fafafa;
}

.faq-answer p {
	padding: 15px 0;
	margin: 0;
	font-size: 1rem;
	color: var(--text-medium);
}


/* ========== Rotary Video Section ========== */
.video-highlight {
	padding: 60px 20px;
	background: #f3f3f3;
	text-align: center;
}

.video-highlight .section-title {
	color: var(--primary-pink);
	font-size: 2rem;
	margin-bottom: 30px;
}

.video-wrapper {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	overflow: hidden;
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 12px;
}


/* ========== Join Us Page Styles ========== */

.join-hero {
	background: linear-gradient(to right, #f7f7f7, #ffe4ec);
	padding: 100px 20px 80px;
	text-align: center;
	color: var(--text-dark);
}

.join-hero h1 {
	font-size: 2.5rem;
	color: var(--primary-pink);
	margin-bottom: 20px;
	font-weight: bold;
}

.join-hero p {
	font-size: 1.2rem;
	color: #444;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 600px) {
	.join-hero h1 {
		font-size: 2rem;
	}

	.join-hero p {
		font-size: 1rem;
	}
}


/*BENEFITS888888888888888888888888888888888888888888888888888888888888888888888888888888888*/
.benefits-grid {
	padding: 60px 20px;
	background: #fefefe;
	text-align: center;
}

.benefits-grid h2 {
	color: var(--primary-pink);
	font-size: 2rem;
	margin-bottom: 40px;
}

.grid-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.grid-item {
	padding: 20px;
}

.grid-item .icon {
	font-size: 2rem;
	margin-bottom: 10px;
}

.grid-item h3 {
	font-size: 1.2rem;
	color: #222;
	margin-bottom: 10px;
}

.grid-item p {
	font-size: 1rem;
	color: var(--text-medium);
}


/*******************************VIEW FORM********************************************************/
.join-form {
	background: #ffffff;
	padding: 60px 20px;
	text-align: center;
}

.join-form .section-title {
	font-size: 2rem;
	color: var(--primary-pink);
	margin-bottom: 10px;
}

.join-form .form-intro {
	font-size: 1rem;
	color: var(--text-medium);
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* On mobile */
@media (max-width: 600px) {
	.join-form iframe {
		height: 900px;
	}
}


/* ========== Projects Page Styles ========== */


.projects-intro-alt {
	padding: 80px 20px;
	background: linear-gradient(to right, #fefefe, #f3f3f3);
	text-align: center;
	color: var(--text-dark);
}

.projects-intro-alt h2 {
	font-size: 2.2rem;
	color: var(--primary-pink);
	margin-bottom: 20px;
}

.projects-intro-alt p {
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 750px;
	margin: 0 auto;
	color: var(--text-medium);
}


.project-item {
	padding: 60px 20px;
	border-bottom: 1px solid #eee;
}

.project-header {
	max-width: 800px;
	margin: 0 auto 30px;
	text-align: center;
}

.project-header h3 {
	color: var(--primary-pink);
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.project-header p {
	font-size: 1rem;
	color: var(--text-medium);
}

.project-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.project-gallery img {
	width: 380px;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform var(--transition-speed) ease;
}

.project-gallery img:hover {
	transform: scale(1.03);
}

/* Responsive */
@media (max-width: 600px) {
	.project-gallery img {
		width: 100%;
		height: auto;
	}
}


/* ========== Events Page Styles ========== */

/* Events Hero Section */
.events-hero {
	position: relative;
	height: 90vh;
	overflow: hidden;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.hero-content {
	position: relative;
	text-align: center;
	z-index: 2;
	max-width: 800px;
	padding: 20px;
}

.hero-content h1 {
	font-size: 2.8rem;
	margin-bottom: 15px;
	color: var(--primary-pink);
}

.hero-content p {
	font-size: 1.3rem;
	color: #f0f0f0;
}

.scroll-down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	opacity: 0.8;
}

.scroll-down:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}

	.scroll-down {
		font-size: 1.5rem;
		bottom: 20px;
	}

	.events-hero {
		height: 60vh;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 1.6rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.events-hero {
		height: 50vh;
	}
}

/* Upcoming Events Section */
.upcoming-events {
	background: #f8f8f8;
	padding: 60px 30px;
	text-align: center;
}

.upcoming-events h2 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: var(--primary-pink);
}

.event-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.event-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform var(--transition-speed) ease;
}

.event-card:hover {
	transform: translateY(-5px);
}

.event-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.event-card-content {
	padding: 20px;
}

.event-card-content h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.event-card-content p {
	margin-bottom: 15px;
	color: var(--text-medium);
	font-size: 1rem;
}

.event-card-content a {
	display: inline-block;
	padding: 10px 20px;
	background: var(--primary-pink);
	color: #000;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	transition: background var(--transition-speed) ease;
}

.event-card-content a:hover {
	background: var(--primary-pink-dark);
}

@media (max-width: 768px) {
	.event-grid {
		grid-template-columns: 1fr;
	}
}


/*************************************TESTIMONIALS*************************************************/
.testimonial-timeline {
	background: linear-gradient(to bottom, #fefefe, #f3f3f3);
	padding: 60px 20px;
	text-align: center;
}

.section-testi {
	font-size: 2rem;
	color: var(--primary-pink);
	margin-bottom: 40px;
}

.timeline-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	position: relative;
}

.timeline-item {
	position: relative;
	width: 100%;
	max-width: 800px;
	border-left: 3px solid var(--primary-pink);
	padding-left: 20px;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -11px;
	top: 10px;
	width: 16px;
	height: 16px;
	background-color: var(--primary-pink);
	border-radius: 50%;
	border: 3px solid white;
}

.timeline-content {
	background: #ffffff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.timeline-content p {
	font-size: 1rem;
	color: var(--text-medium);
}

/* Responsive */
@media (max-width: 600px) {
	.timeline-item {
		max-width: 100%;
	}
}


/************************************EVENT COUNTDOWN*****************************************************/
.countdown-section {
	background: linear-gradient(to right, var(--primary-pink), #17458f);
	padding: 60px 20px;
	text-align: center;
	color: white;
}

.section-count {
	font-size: 2rem;
	margin-bottom: 30px;
	color: white;
}

#countdown {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.time-block {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 20px;
	width: 120px;
	text-align: center;
}

.time-block span {
	display: block;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.time-block p {
	margin: 0;
	font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
	#countdown {
		flex-wrap: wrap;
		gap: 15px;
	}

	.time-block {
		width: 100px;
	}
}


/************************************MAP*****************************************************/
.map-section {
	padding: 60px 20px;
	text-align: center;
	background: #f7f7f7;
}

.section-title {
	font-size: 2rem;
	color: var(--primary-pink);
	margin-bottom: 30px;
}

#map {
	height: 500px;
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-error {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-color: #f8f9fa;
	border-radius: 12px;
	padding: 40px;
	text-align: center;
}

.map-error i {
	font-size: 48px;
	color: var(--primary-pink);
	margin-bottom: 15px;
}

.map-error p {
	color: var(--text-dark);
	font-size: 16px;
	margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
	#map {
		height: 400px;
	}
}


/* ========== Contact Us Page Styles ========== */

/* Hero Header */
.contact-header {
	background: linear-gradient(to right, var(--primary-pink), #17458f);
	padding: 60px 20px;
	text-align: center;
	color: white;
}

.contact-header h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.contact-header p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto;
}

/* Contact Info */
.direct-contact-info {
	background: #f9f9f9;
	padding: 50px 20px;
	text-align: center;
}

.direct-contact-info h2 {
	margin-bottom: 20px;
	color: var(--text-dark);
}

.direct-contact-info ul {
	list-style: none;
	padding: 0;
	font-size: 1.1rem;
	color: var(--text-medium);
}

.direct-contact-info li {
	margin-bottom: 12px;
}

/* Map Section */
.map-section {
	padding: 50px 0;
	background: #fff;
	text-align: center;
}

.map-section h2 {
	margin-bottom: 20px;
	color: var(--text-dark);
}

/* Social Media */
.social-media {
	padding: 40px 20px;
	background: #fefefe;
	text-align: center;
}

.social-media h2 {
	margin-bottom: 20px;
	color: var(--text-dark);
}

.social-media .social-icons a {
	font-size: 2rem;
	margin: 0 15px;
	color: var(--primary-pink);
	transition: color var(--transition-speed) ease;
}

.social-media .social-icons a:hover {
	color: var(--accent-gold);
}

/* Office Hours */
.office-hours {
	background: #f7f7f7;
	padding: 40px 20px;
	text-align: center;
}

.office-hours h2 {
	margin-bottom: 20px;
	color: var(--text-dark);
}

.office-hours ul {
	list-style: none;
	padding: 0;
	font-size: 1.1rem;
	color: var(--text-medium);
}

.office-hours li {
	margin-bottom: 10px;
}

/* Footer Bottom */
.footer-bottom {
	background-color: var(--text-dark);
	color: white;
	padding: 20px 10px;
	text-align: center;
	font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-header h1 {
		font-size: 2rem;
	}

	.contact-header p {
		font-size: 1rem;
	}

	.social-media .social-icons a {
		font-size: 1.6rem;
		margin: 0 10px;
	}
}

/* ========== Contact Page Specific Styles ========== */
.contact-details-section {
	padding: 80px 40px;
	background-color: #fff;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1100px;
	margin: 0 auto;
	background: #f9f9f9;
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-col h2,
.office-hours-col h2 {
	font-size: 1.8rem;
	color: var(--primary-pink);
	margin-bottom: 25px;
	border-bottom: 2px solid var(--accent-gold);
	padding-bottom: 10px;
}

.contact-info-col ul,
.office-hours-col ul {
	list-style: none;
	padding: 0;
}

.contact-info-col li,
.office-hours-col li {
	font-size: 1.1rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.contact-info-col li i {
	color: var(--primary-pink);
	font-size: 1.4rem;
	margin-right: 15px;
	width: 25px;
	text-align: center;
}

.contact-info-col a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s;
}

.contact-info-col a:hover {
	color: var(--primary-pink);
}

.social-icons-contact {
	margin-top: 30px;
	display: flex;
	gap: 15px;
}

.social-icons-contact a {
	color: var(--primary-pink);
	font-size: 1.6rem;
	transition: transform 0.3s, color 0.3s;
}

.social-icons-contact a:hover {
	color: var(--accent-gold);
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.contact-container {
		grid-template-columns: 1fr;
		padding: 30px;
		gap: 40px;
	}

	.contact-details-section {
		padding: 60px 20px;
	}
}

/* Print Stylesheet */
@media print {

	/* Hide non-essential elements */
	.navbar,
	.hamburger,
	.skip-link,
	.cta-btn,
	.social-icons,
	.video-wrapper,
	video,
	.hero-slider {
		display: none !important;
	}

	/* Optimize for print */
	body {
		background: white;
		color: black;
		font-size: 12pt;
		line-height: 1.5;
	}

	main {
		margin: 0;
		padding: 0;
	}

	/* Ensure links are visible */
	a[href]:after {
		content: " (" attr(href) ")";
		font-size: 0.85em;
	}

	/* Page breaks */
	h1,
	h2,
	h3 {
		page-break-after: avoid;
	}

	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}
}