/**
 * Enhanced Photo View Styles
 * Custom styles for the modified photo view that shows only title, price, and image
 */

/* Main event card styling */
.tribe-events-pro-photo__event {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: white;
	margin-bottom: 20px;
	cursor: pointer;
}

.tribe-events-pro-photo__event:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Featured image container */
.tribe-events-pro-photo__event-featured-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
	background: #f8f9fa;
}

.tribe-events-pro-photo__event-featured-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
}

.tribe-events-pro-photo__event:hover .tribe-events-pro-photo__event-featured-image {
	transform: scale(1.08);
}

/* Featured event overlay badge */
.tribe-events-pro-photo__event-featured-overlay {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
}

.tribe-events-pro-photo__event-featured-badge {
	background: linear-gradient(135deg, #f39c12, #e67e22);
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.75em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
	backdrop-filter: blur(10px);
}

/* Event details container */
.tribe-events-pro-photo__event-details-wrapper {
	padding: 20px;
	background: white;
	border-radius: 0 0 12px 12px;
}

.tribe-events-pro-photo__event-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Title styling */
.tribe-events-pro-photo__event-title--enhanced {
	margin: 0;
	font-size: 1.2em;
	line-height: 1.4;
	font-weight: 700;
	order: 1;
}

.tribe-events-pro-photo__event-title-link {
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.tribe-events-pro-photo__event-title-link:hover,
.tribe-events-pro-photo__event-title-link:focus {
	color: #3498db;
	outline: none;
}

.tribe-events-pro-photo__event-title-featured {
	color: #f39c12;
	font-style: normal;
	margin-left: 8px;
	font-size: 1.1em;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

/* Cost styling */
.tribe-events-pro-photo__event-cost {
	font-weight: 700;
	color: #27ae60;
	font-size: 1.3em;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	order: 2;
}

/* Grid layout improvements */
.tribe-events-pro-photo .tribe-common-g-row {
	margin: -15px;
	display: flex;
	flex-wrap: wrap;
}

.tribe-events-pro-photo .tribe-common-g-col {
	padding: 15px;
	flex: 1 1 300px;
	max-width: 100%;
}

/* Loading state */
.tribe-events-pro-photo__event-featured-image[src=""] {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

/* Accessibility improvements */
.tribe-events-pro-photo__event:focus-within {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}

/* Responsive design */
@media (min-width: 1200px) {
	.tribe-events-pro-photo .tribe-common-g-col {
		flex: 1 1 calc(25% - 30px);
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.tribe-events-pro-photo .tribe-common-g-col {
		flex: 1 1 calc(33.333% - 30px);
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.tribe-events-pro-photo .tribe-common-g-col {
		flex: 1 1 calc(50% - 30px);
	}
}

@media (max-width: 767px) {
	.tribe-events-pro-photo__event-featured-image {
		height: 180px;
	}

	.tribe-events-pro-photo__event-details-wrapper {
		padding: 15px;
	}

	.tribe-events-pro-photo__event-title--enhanced {
		font-size: 1.1em;
	}

	.tribe-events-pro-photo .tribe-common-g-row {
		margin: -10px;
	}

	.tribe-events-pro-photo .tribe-common-g-col {
		padding: 10px;
		flex: 1 1 100%;
	}

	.tribe-events-pro-photo__event:hover {
		transform: translateY(-4px);
	}
}

@media (max-width: 480px) {
	.tribe-events-pro-photo__event-featured-image {
		height: 160px;
	}

	.tribe-events-pro-photo__event-details-wrapper {
		padding: 12px;
	}

	.tribe-events-pro-photo__event-title--enhanced {
		font-size: 1em;
	}

	.tribe-events-pro-photo__event-cost {
		font-size: 1.1em;
	}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.tribe-events-pro-photo__event {
		background: #2c3e50;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	}

	.tribe-events-pro-photo__event-details-wrapper {
		background: #2c3e50;
	}

	.tribe-events-pro-photo__event-title-link {
		color: #ecf0f1;
	}

	.tribe-events-pro-photo__event-title-link:hover {
		color: #3498db;
	}

	.tribe-events-pro-photo__event:hover {
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
	}
}

/* Print styles */
@media print {
	.tribe-events-pro-photo__event {
		break-inside: avoid;
		box-shadow: none;
		border: 1px solid #ddd;
	}

	.tribe-events-pro-photo__event:hover {
		transform: none;
	}

	.tribe-events-pro-photo__event-featured-image {
		height: auto;
		max-height: 200px;
	}
}

/* No events state */
.tribe-events-pro-photo__no-events {
	text-align: center;
	padding: 60px 20px;
	color: #7f8c8d;
}

.tribe-events-pro-photo__no-events-content svg {
	margin-bottom: 20px;
	opacity: 0.5;
}

.tribe-events-pro-photo__no-events-content h3 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #34495e;
}

.tribe-events-pro-photo__no-events-content p {
	font-size: 1.1em;
	margin: 0;
}

/* Loading states */
.tribe-events-pro-photo--loading {
	position: relative;
	opacity: 0.7;
}

.tribe-events-pro-photo--loading::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tribe-events-pro-photo--loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -20px;
	border: 3px solid #f3f3f3;
	border-top: 3px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 11;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Image placeholder styles */
.tribe-events-pro-photo__event-image-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 220px;
	background: #f8f9fa;
	color: #6c757d;
	border-radius: 12px 12px 0 0;
}

.tribe-events-pro-photo__event-image-placeholder svg {
	margin-bottom: 10px;
	opacity: 0.5;
}

.tribe-events-pro-photo__event-image-placeholder p {
	margin: 0;
	font-size: 0.9em;
}

/* Enhanced grid system */
.tribe-events-pro-photo--enhanced .tribe-common-g-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	margin: 0;
}

.tribe-events-pro-photo--enhanced .tribe-common-g-col {
	padding: 0;
	margin: 0;
}

/* Smooth transitions for dynamic content */
.tribe-events-pro-photo__event {
	animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Staggered animation for multiple events */
.tribe-events-pro-photo__event:nth-child(1) {
	animation-delay: 0.1s;
}

.tribe-events-pro-photo__event:nth-child(2) {
	animation-delay: 0.2s;
}

.tribe-events-pro-photo__event:nth-child(3) {
	animation-delay: 0.3s;
}

.tribe-events-pro-photo__event:nth-child(4) {
	animation-delay: 0.4s;
}

.tribe-events-pro-photo__event:nth-child(5) {
	animation-delay: 0.5s;
}

.tribe-events-pro-photo__event:nth-child(6) {
	animation-delay: 0.6s;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

	.tribe-events-pro-photo__event,
	.tribe-events-pro-photo__event-featured-image,
	.tribe-events-pro-photo__event-title-featured {
		animation: none;
		transition: none;
	}

	.tribe-events-pro-photo__event:hover {
		transform: none;
	}
}

/* Shortcode-specific styles */

/* Only view mode - hide navigation and view selectors */
.tribe-events-pro-photo--only-view .tribe-events-header__top-bar,
.tribe-events-pro-photo--only-view .tribe-events-c-top-bar,
.tribe-events-pro-photo--only-view .tribe-events-c-view-selector,
.tribe-events-pro-photo--only-view .tribe-events-c-nav,
.tribe-events-pro-photo--only-view .tribe-events-header__messages {
	display: none !important;
}

.tribe-events-pro-photo--only-view .tribe-events-header {
	margin-bottom: 0;
	padding-bottom: 0;
}

.tribe-events-pro-photo--only-view .tribe-events-l-container {
	padding-top: 20px;
}

/* Only photo mode - special styling for photo-only events */
.tribe-events-pro-photo--only-photo .tribe-events-pro-photo__event {
	position: relative;
}

.tribe-events-pro-photo--only-photo .tribe-events-pro-photo__event::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	width: 30px;
	height: 30px;
	background: rgba(52, 152, 219, 0.9);
	border-radius: 50%;
	z-index: 3;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Cpolyline points='21,15 16,10 5,21'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
}

.tribe-events-pro-photo--only-photo .tribe-events-pro-photo__no-events-content h3 {
	color: #3498db;
}

.tribe-events-pro-photo--only-photo .tribe-events-pro-photo__no-events-content svg {
	stroke: #3498db;
}

/* Combined modes */
.tribe-events-pro-photo--only-view.tribe-events-pro-photo--only-photo {
	margin-top: 0;
}

.tribe-events-pro-photo--only-view.tribe-events-pro-photo--only-photo .tribe-events-pro-photo__event {
	margin-bottom: 25px;
}

/* Enhanced focus for only-view mode */
.tribe-events-pro-photo--only-view .tribe-events-pro-photo__event:focus-within {
	outline: 3px solid #3498db;
	outline-offset: 3px;
}

/* Special hover effects for only-photo mode */
.tribe-events-pro-photo--only-photo .tribe-events-pro-photo__event:hover::before {
	transform: scale(1.1);
	background-color: rgba(52, 152, 219, 1);
}

/* Responsive adjustments for shortcode modes */
@media (max-width: 768px) {
	.tribe-events-pro-photo--only-view .tribe-events-l-container {
		padding-top: 15px;
	}

	.tribe-events-pro-photo--only-photo .tribe-events-pro-photo__event::before {
		width: 25px;
		height: 25px;
		background-size: 14px 14px;
	}
}

/* Print styles for shortcode modes */
@media print {
	.tribe-events-pro-photo--only-photo .tribe-events-pro-photo__event::before {
		display: none;
	}

	.tribe-events-pro-photo--only-view .tribe-events-header,
	.tribe-events-pro-photo--only-view .tribe-events-c-nav {
		display: none !important;
	}
}