/* Events Archive Styles */
.events-archive-header {
	background: transparent;
	color: #000000;
	padding: 80px 20px;
	text-align: center;

}

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

.events-archive-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin: 40px 0 20px 0;
	font-family: 'Georgia', serif;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.events-archive-subtitle {
	font-size: 1.3rem;
	margin: 0;
	opacity: 0.9;
	font-weight: 400;
}

.events-archive-content {
	padding: 40px 0;
	background: #f8f9fa;
}

.events-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.event-archive-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

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

.event-archive-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.event-archive-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.event-archive-card:hover .event-archive-image img {
	transform: scale(1.05);
}

.event-archive-badges {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-end;
}

.event-archive-badge {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	min-width: 80px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.event-type-badge {
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	color: #ffffff;
}

.event-season-badge {
	background: linear-gradient(135deg, #74b9ff, #0984e3);
	color: #ffffff;
}

.event-archive-content {
	padding: 25px;
}

.event-archive-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 0.9rem;
	color: #6c757d;
}

.event-archive-date,
.event-archive-time {
	display: flex;
	align-items: center;
	gap: 5px;
}

.event-archive-date i,
.event-archive-time i {
	font-size: 16px;
	color: #d2691e;
}

.event-archive-title {
	margin: 0 0 15px 0;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.3;
}

.event-archive-title a {
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.3s ease;
}

.event-archive-title a:hover {
	color: #d2691e;
}

.event-archive-location {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 15px;
	color: #6c757d;
	font-size: 0.9rem;
}

.event-archive-location i {
	color: #d2691e;
	font-size: 16px;
}

.event-archive-excerpt {
	color: #6c757d;
	line-height: 1.6;
	margin: 0 0 20px 0;
	font-size: 0.95rem;
}

.event-archive-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid #e9ecef;
}

.event-archive-price {
	font-size: 1.2rem;
	font-weight: 700;
	color: #d2691e;
}

.event-archive-read-more {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	background: linear-gradient(135deg, #d2691e, #b8860b);
	color: #ffffff;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.event-archive-read-more:hover {
	background: linear-gradient(135deg, #b8860b, #d2691e);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
	color: #ffffff;
}

.no-events {
	text-align: center;
	padding: 80px 20px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-events h2 {
	color: #2c3e50;
	font-size: 2rem;
	margin: 0 0 20px 0;
}

.no-events p {
	color: #6c757d;
	font-size: 1.1rem;
	margin: 0;
}

/* Pagination Styles */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 50px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	background: #ffffff;
	color: #6c757d;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background: #d2691e;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.pagination .prev,
.pagination .next {
	background: linear-gradient(135deg, #d2691e, #b8860b);
	color: #ffffff;
}

.pagination .prev:hover,
.pagination .next:hover {
	background: linear-gradient(135deg, #b8860b, #d2691e);
}

/* Responsive Design */
@media (max-width: 768px) {
	.events-archive-title {
		font-size: 2.5rem;
	}
	
	.events-archive-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.event-archive-card {
		margin: 0 10px;
	}
	
	.event-archive-content {
		padding: 20px;
	}
	
	.event-archive-footer {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.events-archive-header {
		padding: 60px 0;
	}
	
	.events-archive-content {
		padding: 60px 0;
	}
	
	.events-archive-container {
		padding: 0 15px;
	}
	
	.events-archive-title {
		font-size: 2rem;
	}
	
	.event-archive-badges {
		top: 10px;
		right: 10px;
	}
	
	.event-archive-badge {
		padding: 4px 8px;
		font-size: 0.7rem;
		min-width: 60px;
	}
}

