/* File: static/home/css/ticket-shop-styles.css */
/* Ticket Shop Styles */
/* This file contains the styles for the ticket shop pages, including the header, footer, and main content areas. */
/* Base template style starts */
:root {
	--primary: #aad2fd;
	--primary-foreground: #ffffff;
	--secondary: #ff6f61;
	--secondary-foreground: #ffffff;
	--accent: #f59f00;
	--accent-light: #f59e0b;
	--color-text-dark: white;
	--color-bg-dark: #0a0a0a;
	--color-bg-light: white;
	--color-text-light: #0a0a0a;
	--color-text-secondary: #cccccc;
	--input-border: #3d3d3d;
	--input-focus: #4d4d4d;
	--success-green: #10b981;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
}

/* Start of Preloader Styles */

.preloader-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #1b1b1b;
	z-index: 10000;
	text-align: center;
	display: table;
}

.preloader-inside {
	position: relative;
	height: auto;
	width: 200px;
	margin-top: 300px;
	vertical-align: middle;
	text-align: center;
	display: table-cell;
	color: #fff;
}

.spinner {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: relative;
	display: inline-block;
}

.spinner img {
	position: absolute;
	top: 22px;
	left: 0;
	padding: 5px;
}

.spinner:after {
	content: '';
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.spinner:before {
	content: '';
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.spinner-1:after {
	position: absolute;
	top: 0px;
	left: 0px;
	border: 4px solid transparent;
	border-top-color: var(--accent);
	border-bottom-color: var(--accent);
	animation: spinny 2s linear infinite;
}

@keyframes spinny {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(30deg) scale(1.2);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

/* End of Preloader Styles */

body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--color-bg-light);
	color: var(--color-text-light);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.margin-left-3 {
	margin-left: 25px;
}

/* Header Styles */
.main-header {
	background-color: #1a1a1a;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid #333;
	min-height: 70px;
	display: flex;
	align-items: center;
}

.navbar {
	padding: 0.75rem 0;
	width: 100%;
}

.navbar-dark .navbar-nav .nav-link {
	color: #ffffff;
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.5rem 1rem;
	margin: 0 0.25rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.navbar-dark .navbar-nav .nav-link:hover {
	color: #ffc107;
	background-color: rgba(255, 193, 7, 0.1);
}

.navbar-dark .navbar-nav .nav-link.active {
	color: #ffc107;
	background-color: rgba(255, 193, 7, 0.15);
	font-weight: 600;
}

.logo a {
	display: flex;
	align-items: center;
}

.logo img {
	height: 40px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
}

.navbar-nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

/* Main Content */
.main-content {
	flex: 1;
	padding: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Footer Styles */
.main-footer {
	background-color: #1a1a1a;
	color: #ffffff;
	border-top: 1px solid #333;
	padding: 1.5rem 0 1rem;
	margin-top: auto;
}

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

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 2rem;
	align-items: start;
}

/* Logo Section */
.footer-logo-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-logo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	overflow: hidden;
	background: linear-gradient(135deg, #ffc107, #ff9800);
	box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.footer-logo-text {
	font-weight: 900;
	font-size: 0.65rem;
	color: #000;
	letter-spacing: -0.5px;
}

.footer-copyright {
	text-align: left;
}

.footer-copyright .year {
	font-weight: 600;
	color: #ffffff;
	font-size: 0.85rem;
	margin-bottom: 0.15rem;
}

.footer-copyright .rights {
	color: #cccccc;
	font-size: 0.8rem;
}

/* Footer Sections */
.footer-section h6 {
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
}

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

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

.footer-links a {
	color: #cccccc;
	text-decoration: none;
	font-size: 0.8rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #ffc107;
}

/* Social Links */
.social-links {
	display: flex;
	gap: 0.6rem;
	justify-content: flex-start;
}

.social-link {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: transparent;
	border: 1.5px solid #ffc107;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffc107;
	text-decoration: none;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: #ffc107;
	color: #1a1a1a;
	transform: translateY(-1px);
}

/* Contact Section */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #cccccc;
	font-size: 0.8rem;
}

.contact-item strong {
	color: #ffffff;
	min-width: 45px;
	font-size: 0.8rem;
}

.contact-item a {
	color: #ffc107;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #ffffff;
}

/* Mobile Email Link (hidden on desktop) */
.mobile-email {
	display: none;
	text-align: center;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #333;
}

.mobile-email a {
	color: #ffc107;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.mobile-email a:hover {
	color: #ffffff;
}

/* Chat Support Button */
.chat-support {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 60px;
	height: 60px;
	background-color: #495057;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	font-size: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	z-index: 1000;
}

.chat-support:hover {
	background-color: var(--primary);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(170, 210, 253, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	.footer-logo-section {
		grid-column: 1 / -1;
		align-items: center;
		text-align: center;
		margin-bottom: 0.5rem;
	}

	.footer-copyright {
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.main-footer {
		padding: 1rem 0 0.75rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 1rem;
		text-align: center;
	}

	.footer-section {
		text-align: center;
	}

	.footer-section h6 {
		margin-bottom: 0.5rem;
		font-size: 0.85rem;
	}

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

	.social-links {
		justify-content: center;
		gap: 0.5rem;
	}

	.social-link {
		width: 28px;
		height: 28px;
		font-size: 0.75rem;
	}

	.contact-info {
		display: none;
	}

	.mobile-email {
		display: block;
		margin-top: 0.75rem;
		padding-top: 0.75rem;
	}

	.footer-container {
		padding: 0 1rem;
	}

	.footer-logo {
		width: 50px;
		height: 50px;
		margin-bottom: 0.5rem;
	}

	.footer-logo-text {
		font-size: 0.55rem;
	}

	.footer-copyright .year {
		font-size: 0.8rem;
		margin-bottom: 0.1rem;
	}

	.footer-copyright .rights {
		font-size: 0.75rem;
	}
}

@media (max-width: 576px) {
	.chat-support {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
		bottom: 1.5rem;
		right: 1.5rem;
	}

	.footer-container {
		padding: 0 0.75rem;
	}
}

/* Mobile Header Styles */
@media (max-width: 768px) {
	.navbar > container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.navbar-nav {
		flex-direction: row;
		justify-content: flex-end;
		margin-top: 0;
		gap: 0.25rem;
	}

	.navbar-dark .navbar-nav .nav-link {
		font-size: 0.85rem;
		padding: 0.4rem 0.75rem;
		margin: 0 0.1rem;
	}

	.logo img {
		height: 35px;
		max-width: 100px;
	}
}

@media (max-width: 576px) {
	.navbar-dark .navbar-nav .nav-link {
		font-size: 0.8rem;
		padding: 0.35rem 0.6rem;
	}

	.logo img {
		height: 32px;
		max-width: 90px;
	}
}

/* End of base template styles */

/* Event ticket details styles start */

.main-content {
	background-color: #ffffff;
	min-height: 100vh;
}

.event-image {
	position: relative;
	height: 320px;
	background: url('/placeholder.svg?height=320&width=800') center/cover;
	border-radius: 0.5rem;
	overflow: hidden;
}

.event-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	z-index: 0;
}

.event-details {
	position: absolute;
	bottom: 0.25rem;
	left: 0.25rem;
	color: white;
	z-index: 1;
	background: rgba(0, 0, 0, 0.8);
}

.event-details h1 {
	font-weight: bold;
}

.event-details i {
	margin-right: 0.5rem;
	color: var(--accent);
}

.ticket-card {
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: border-color 0.2s;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ticket-card:hover {
	border-color: #fbbf24;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-wakanda {
	background-color: var(--accent);
	border-color: var(--accent);
	color: white;
}

.btn-wakanda:hover {
	background-color: var(--secondary);
	border-color: var(--secondary);
	color: white;
}

.badge-wakanda {
	background-color: var(--accent);
}

.text-wakanda {
	color: var(--accent);
}

.sticky-summary {
	position: sticky;
	top: 2rem;
}

.perk-badge {
	font-size: 0.75rem;
	margin: 0.125rem;
}

.card {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border: 1px solid #e5e7eb;
}

.carousel-item img {
	height: 200px;
	object-fit: cover;
}

.event-card {
	transition: transform 0.2s;
}

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

/* Ensure equal height cards */
.event-card {
	transition: transform 0.2s;
	height: 100%;
}

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

/* Swiper Navigation Styles */
.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: var(--wakanda-gold) !important;
	color: white !important;
	transform: translateY(-50%) scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 18px !important;
	font-weight: 600;
}

.swiper-pagination-bullet {
	background: #ddd !important;
	opacity: 1 !important;
	width: 12px !important;
	height: 12px !important;
}

.swiper-pagination-bullet-active {
	background: var(--wakanda-gold) !important;
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {
		display: none !important;
	}

	.swiper-container-wrapper {
		padding: 1rem 0 2rem 0 !important;
	}
}

/* Event card hover effects */
.event-card:hover .event-image-container img {
	transform: scale(1.05);
}

/* End of Event Ticket Details Styles */

/* Checkout Page Styles start */

.checkout-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
	background-color: var(--accent);
	color: white;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	margin-right: 0.75rem;
}

.btn-wakanda {
	background-color: var(--accent);
	border-color: var(--accent);
	color: white;
}

.btn-wakanda:hover {
	background-color: var(--secondary);
	border-color: var(--secondary);
	color: white;
}

.btn-wakanda:disabled {
	background-color: #6c757d;
	border-color: #6c757d;
}

.security-badge {
	background-color: #d1fae5;
	color: #065f46;
	padding: 0.5rem;
	border-radius: 0.375rem;
	font-size: 0.875rem;
}

.order-summary-card {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-section {
	background: white;
	border: 1px solid #dee2e6;
	border-radius: 0.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	margin-bottom: 1.5rem;
}

.sticky-summary {
	position: sticky;
	top: 2rem;
}

.event-thumbnail {
	width: 60px;
	height: 60px;
	background: url('/placeholder.svg?height=60&width=60') center/cover;
	border-radius: 0.375rem;
}

/* Improved form field margins - reduced from previous version */
.form-section .card-body {
	padding: 0.5rem 0.7rem;
}

.form-section .card-header {
	padding: 0.5rem 0.7rem;
}

.form-section .row.g-3 {
	--bs-gutter-x: 1.5rem;
}

.form-control,
.form-select {
	padding: 0.75rem 1rem;
	margin-bottom: 0.25rem;
}

.form-label {
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.alert {
	margin: 1rem 0;
}

.bg-light {
	padding: 1.25rem;
	margin: 1rem 0;
}

.border {
	padding: 1.25rem;
	margin: 1rem 0;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

h5 {
	margin-bottom: 1rem;
}

/* End of Checkout Page Styles */

/* Order Confirmation Styles */

.success-header {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	padding: 3rem 0;
}

.success-icon {
	width: 4rem;
	height: 4rem;
	background-color: #d1fae5;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.order-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	margin-bottom: 1.5rem;
}

.order-card .card-header {
	padding: 1rem 1rem;
}

.order-card .card-body {
	padding: 1rem 1rem;
}

.action-card {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-card .card-header {
	padding: 1rem 1rem;
}

.action-card .card-body {
	padding: 1.5rem 1.75rem;
}

.help-card {
	background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
	border: 1px solid #f59e0b;
}

.help-card .card-body {
	padding: 1.5rem 1.75rem;
}

.event-thumbnail {
	width: 80px;
	height: 80px;
	background: url('/placeholder.svg?height=80&width=80') center/cover;
	border-radius: 0.5rem;
}

.ticket-item {
	background: #f8f9fa;
	border-radius: 0.5rem;
	padding: 1rem;
	margin-bottom: 0.75rem;
}

.ticket-item.vip {
	background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.sticky-actions {
	position: sticky;
	top: 2rem;
}

.info-item {
	padding: 1rem 0;
	border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
	border-bottom: none;
}

h3,
h4,
h5 {
	margin-bottom: 1rem;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

/* End of order confirmation styles */

/* Start of my orders styles */

.page-header {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-bottom: 1px solid #e5e7eb;
	padding: 1rem 0;
}

.order-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	margin-bottom: 1.5rem;
	transition: all 0.2s ease;
	cursor: pointer;
}

.order-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
	border-color: var(--accent-light);
}

.order-card .card-body {
	padding: 1.5rem 2rem;
}

.event-thumbnail {
	width: 80px;
	height: 80px;
	background: url('/placeholder.svg?height=80&width=80') center/cover;
	border-radius: 0.5rem;
	flex-shrink: 0;
}

.status-badge {
	font-size: 0.75rem;
	padding: 0.375rem 0.75rem;
	border-radius: 1rem;
	font-weight: 600;
}

.status-confirmed {
	background-color: #d1fae5;
	color: #065f46;
}

.status-cancelled {
	background-color: #fee2e2;
	color: #991b1b;
}

.status-pending {
	background-color: #fef3c7;
	color: #92400e;
}

.status-refunded {
	background-color: #e0e7ff;
	color: #3730a3;
}

.filter-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
}

.filter-card .card-body {
	padding: 1.5rem 2rem;
}

.btn-wakanda {
	background-color: var(--accent);
	border-color: var(--accent);
	color: white;
}

.btn-wakanda:hover {
	background-color: var(--secondary);
	border-color: var(--secondary);
	color: white;
}

.empty-state {
	text-align: center;
	padding: 4rem 2rem;
	color: #6b7280;
}

.empty-state i {
	font-size: 4rem;
	margin-bottom: 1rem;
	opacity: 0.5;
}

.order-meta {
	font-size: 0.875rem;
	color: #6b7280;
}

.order-total {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--accent);
}

/* End of my orders styles */

/* Start of order details styles */

.status-icon {
	width: 4rem;
	height: 4rem;
	background-color: #d1fae5;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.order-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	margin-bottom: 1.5rem;
}

.order-card .card-header {
	padding: 1.25rem 1.75rem;
	background: white;
	border-bottom: 1px solid #e5e7eb;
}

.order-card .card-body {
	padding: 1.5rem 1.75rem;
}

.action-card {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-card .card-header {
	padding: 1.25rem 1.75rem;
}

.action-card .card-body {
	padding: 1.5rem 1.75rem;
}

.warning-card {
	background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
	border: 1px solid #f59e0b;
}

.danger-card {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	border: 1px solid #ef4444;
}

.event-thumbnail {
	width: 80px;
	height: 80px;
	background: url('/placeholder.svg?height=80&width=80') center/cover;
	border-radius: 0.5rem;
}

.ticket-item {
	background: #f8f9fa;
	border-radius: 0.5rem;
	padding: 1rem;
	margin-bottom: 0.75rem;
}

.ticket-item.vip {
	background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.sticky-actions {
	position: sticky;
	top: 2rem;
}

.status-badge {
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	font-weight: 600;
}

.status-confirmed {
	background-color: #d1fae5;
	color: #065f46;
}

.status-cancelled {
	background-color: #fee2e2;
	color: #991b1b;
}

.status-pending {
	background-color: #fef3c7;
	color: #92400e;
}

.status-refunded {
	background-color: #e0e7ff;
	color: #3730a3;
}

.btn-wakanda {
	background-color: var(--accent);
	border-color: var(--accent);
	color: white;
}

.btn-wakanda:hover {
	background-color: #b45309;
	border-color: #b45309;
	color: white;
}

.info-item {
	padding: 1rem 0;
	border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
	border-bottom: none;
}

/* End of order details styles */
