/* Sponsors Page Grid */
.sponsor-logos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	justify-items: center;
	margin: 2.5rem 0 2rem 0;
}
.sponsor-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 2rem 1.5rem 1.2rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 220px;
	max-width: 340px;
}
.sponsor-img {
	max-width: 120px;
	max-height: 48px;
	margin-bottom: 1.2rem;
	object-fit: contain;
}
.sponsor-info h3 {
	margin: 0 0 0.5rem 0;
	color: var(--coral);
	font-size: 1.1rem;
}
.sponsor-info p {
	color: var(--muted);
	font-size: 1rem;
	margin: 0;
}
/* Highlights Carousel */
.carousel {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	justify-content: center;
	align-items: stretch;
}
.carousel-item {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	min-width: 260px;
	max-width: 320px;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	margin: 0.5rem 0;
}
.carousel-item img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}
.carousel-caption {
	padding: 1rem;
	text-align: center;
}
.carousel-caption h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.1rem;
	color: var(--coral);
}

/* Trend Stories */
.stories-feed {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}
.story-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 1.2rem 1rem;
	min-width: 220px;
	max-width: 300px;
	flex: 1 1 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.story-card h4 {
	margin: 0 0 0.5rem 0;
	color: var(--coral);
	font-size: 1.05rem;
}

/* Testimonials */
.testimonials-slider {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	justify-content: center;
	align-items: stretch;
}
.testimonial-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	min-width: 260px;
	max-width: 320px;
	flex: 0 0 auto;
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0.5rem 0;
}
.testimonial-card blockquote {
	font-size: 1.08rem;
	color: var(--black);
	margin: 0 0 0.7rem 0;
	font-style: italic;
}
.testimonial-name {
	color: var(--muted);
	font-size: 0.98rem;
}

/* Sponsors */
.sponsor-logos {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 1.2rem;
}
.sponsor-logo {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 0.7rem 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	min-height: 60px;
	margin: 0.5rem 0;
}
.sponsor-logo img {
	max-width: 100px;
	max-height: 40px;
	object-fit: contain;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	align-items: stretch;
}
.contact-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	width: 100%;
	font-size: 1rem;
	padding: 0.7em 1em;
	border-radius: var(--radius);
	border: 1.5px solid var(--bg);
	background: var(--bg);
	color: var(--black);
	transition: border 0.18s;
	box-sizing: border-box;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
	border: 1.5px solid var(--coral);
	outline: none;
}
.contact-form textarea {
	min-height: 120px;
	resize: vertical;
}
.contact-form button[type="submit"] {
	width: 100%;
	font-size: 1.1rem;
	font-weight: 700;
	padding: 0.9em 0;
	border-radius: var(--radius);
	margin-top: 0.5rem;
	letter-spacing: 1px;
}
/* Live Chat Support Box */
.live-chat-support {
	position: fixed;
	bottom: 2.2rem;
	right: 2.2rem;
	z-index: 9999;
}
.chat-toggle {
	background: var(--coral);
	color: var(--white);
	border: none;
	border-radius: 50%;
	width: 56px;
	height: 56px;
	font-size: 2rem;
	box-shadow: 0 4px 16px rgba(15,23,36,0.13);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.2s, background 0.2s;
}
.chat-toggle:hover, .chat-toggle:focus {
	background: var(--coral-dark);
	box-shadow: 0 8px 32px rgba(255,111,97,0.18);
}
.chat-window {
	position: absolute;
	bottom: 70px;
	right: 0;
	width: 320px;
	max-width: 90vw;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 8px 32px rgba(15,23,36,0.18);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: chat-pop 0.25s cubic-bezier(.4,0,.2,1);
}
@keyframes chat-pop {
	0% { opacity: 0; transform: translateY(40px) scale(0.95); }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-header {
	background: var(--coral);
	color: var(--white);
	padding: 0.8em 1em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	font-size: 1.1rem;
}
.chat-close {
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.5rem;
	cursor: pointer;
	margin-left: 0.5em;
}
.chat-messages {
	flex: 1;
	padding: 1em;
	background: var(--bg);
	overflow-y: auto;
	max-height: 220px;
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}
.chat-msg {
	padding: 0.6em 1em;
	border-radius: 18px;
	margin-bottom: 0.2em;
	max-width: 80%;
	word-break: break-word;
	box-shadow: 0 1px 4px rgba(15,23,36,0.04);
}
.chat-msg.bot {
	background: var(--white);
	color: var(--muted);
	align-self: flex-start;
}
.chat-msg.user {
	background: var(--coral);
	color: var(--white);
	align-self: flex-end;
}
.chat-form {
	display: flex;
	border-top: 1px solid var(--bg);
	background: var(--white);
	padding: 0.5em 0.5em 0.5em 0.7em;
	gap: 0.5em;
}
.chat-form input[type="text"] {
	flex: 1;
	border: 1px solid var(--bg);
	border-radius: 16px;
	padding: 0.5em 1em;
	font-size: 1rem;
	outline: none;
}
.chat-form button {
	background: var(--coral);
	color: var(--white);
	border: none;
	border-radius: 16px;
	padding: 0.5em 1.2em;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
}
.chat-form button:hover, .chat-form button:focus {
	background: var(--coral-dark);
}
.contact-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 2rem 1.5rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	min-height: 220px;
	transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.22s cubic-bezier(.4,0,.2,1);
	will-change: box-shadow, transform;
}
.contact-card:hover,
.contact-card:focus-within {
	box-shadow: 0 8px 32px rgba(255,111,97,0.13), 0 2px 8px rgba(15,23,36,0.06);
	transform: translateY(-4px) scale(1.025);
	z-index: 2;
}
/* Contact Page Layout */
.contact-section {
	margin: 2.5rem 0 3rem 0;
}
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.contact-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 2rem 1.5rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	min-height: 220px;
}
.contact-card h2 {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-size: 1.3rem;
	color: var(--coral);
}
.map-placeholder {
	background: var(--bg);
	height: 220px;
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 1.1rem;
	margin-bottom: 1.2rem;
}
.social-links {
	margin-top: 0.5rem;
	font-size: 1.05rem;
}
/* About Page Layout */
.about-section {
	margin: 2.5rem 0 3rem 0;
}
.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.about-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 2rem 1.5rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 220px;
}
.about-card h2 {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-size: 1.3rem;
	color: var(--coral);
}
.about-card.staff {
	align-items: flex-start;
}
.staff-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.staff-list li {
	font-size: 1.05rem;
	color: var(--black);
}
/* Admin Demo Styles */
.admin-tabs {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.admin-tabs .btn.active {
	background: var(--coral);
	color: var(--white);
}
.admin-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	margin-bottom: 2rem;
	overflow: hidden;
}
.admin-table th, .admin-table td {
	padding: 0.75em 1em;
	text-align: left;
	border-bottom: 1px solid var(--bg);
}
.admin-table th {
	background: var(--bg);
	font-weight: 700;
}
.admin-table tr:last-child td {
	border-bottom: none;
}
/* Contact Form Feedback */
.form-msg {
	display: block;
	margin-top: 0.5em;
	font-size: 1rem;
	min-height: 1.5em;
	transition: color 0.2s;
}
.form-msg.success {
	color: var(--coral);
	font-weight: 600;
}
.form-msg.error {
	color: #d32f2f;
	font-weight: 600;
}
/* Newsletter Form Feedback */
.newsletter-msg {
	display: block;
	margin-top: 0.5em;
	font-size: 1rem;
	min-height: 1.5em;
	transition: color 0.2s;
}
.newsletter-msg.success {
	color: var(--coral);
	font-weight: 600;
}
.newsletter-msg.error {
	color: #d32f2f;
	font-weight: 600;
}
.news-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}
.news-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 1.25rem 1rem 1rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: box-shadow 0.2s;
}
.news-card:hover,
.news-card:focus-within {
	box-shadow: 0 4px 16px rgba(255,111,97,0.12);
}
.news-thumb {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: var(--radius);
	margin-bottom: 0.5rem;
}
.news-meta {
	display: flex;
	gap: 1rem;
	font-size: 0.98rem;
	color: var(--muted);
}
.news-title {
	font-family: 'Poppins', Arial, sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	margin: 0 0 0.25rem 0;
}
.news-excerpt {
	color: var(--black);
	font-size: 1rem;
	margin-bottom: 0.5rem;
}
.news-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 0.5rem;
}
.news-author {
	color: var(--muted);
	font-size: 0.98rem;
}
.news-share {
	display: flex;
	gap: 0.5rem;
}
.news-share .share-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.25em;
	border-radius: 50%;
	transition: background 0.2s;
}
.news-share .share-btn:hover,
.news-share .share-btn:focus {
	background: var(--bg);
}
.news-share img {
	width: 24px;
	height: 24px;
	display: block;
}
.video-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}
.video-item {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s;
}
.video-item:hover,
.video-item:focus-within {
	box-shadow: 0 4px 16px rgba(255,111,97,0.12);
}
.video-thumb {
	position: relative;
	width: 100%;
	max-width: 320px;
	aspect-ratio: 16/9;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 0.75rem;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem;
	color: var(--white);
	background: rgba(255,111,97,0.85);
	border-radius: 50%;
	width: 2.5em;
	height: 2.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.video-title {
	font-family: 'Poppins', Arial, sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	text-align: center;
}
.video-desc {
	color: var(--muted);
	font-size: 0.98rem;
	text-align: center;
}
.video-modal {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(15,23,36,0.92);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 2rem;
}
.modal-content {
	position: relative;
	background: none;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.modal-close {
	position: absolute;
	top: -2.5rem;
	right: 0;
	color: var(--white);
	font-size: 2.5rem;
	cursor: pointer;
	background: none;
	border: none;
	z-index: 10001;
	transition: color 0.2s;
}
.modal-close:hover,
.modal-close:focus {
	color: var(--coral);
}
.video-modal iframe {
	width: 70vw;
	max-width: 900px;
	height: 40vw;
	max-height: 480px;
	border-radius: var(--radius);
	box-shadow: 0 4px 32px rgba(0,0,0,0.25);
	margin-bottom: 1rem;
	background: #000;
}
.modal-caption {
	color: var(--white);
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 1rem;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}
.gallery-item {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	overflow: hidden;
	cursor: pointer;
	transition: box-shadow 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-item:hover,
.gallery-item:focus-within {
	box-shadow: 0 4px 16px rgba(255,111,97,0.12);
}
.gallery-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}
.lightbox {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(15,23,36,0.92);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 2rem;
}
.lightbox img {
	max-width: 90vw;
	max-height: 70vh;
	border-radius: var(--radius);
	box-shadow: 0 4px 32px rgba(0,0,0,0.25);
	margin-bottom: 1rem;
}
.lightbox-caption {
	color: var(--white);
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 1rem;
}
.lightbox-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	color: var(--white);
	font-size: 2.5rem;
	cursor: pointer;
	background: none;
	border: none;
	z-index: 10001;
	transition: color 0.2s;
}
.lightbox-close:hover,
.lightbox-close:focus {
	color: var(--coral);
}
/* components.css - B19 Football Club */

/* Player Roster Grid */
.players-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.player-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s;
}
.player-card:hover {
	box-shadow: 0 4px 16px rgba(255,111,97,0.12);
}
.player-photo img {
	border-radius: 50%;
	width: 120px;
	height: 120px;
	object-fit: cover;
	border: 3px solid var(--coral);
	margin-bottom: 1rem;
}
.player-info {
	text-align: center;
}
.player-name {
	font-family: 'Poppins', Arial, sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	margin: 0 0 0.25rem 0;
}
.player-number {
	color: var(--coral);
	font-size: 1rem;
	font-weight: 600;
}
.player-position {
	color: var(--muted);
	font-size: 1rem;
	margin-bottom: 0.5rem;
}
.player-bio {
	font-size: 0.98rem;
	color: var(--black);
	margin-bottom: 0.75rem;
}
.player-stats {
	display: flex;
	gap: 1.2rem;
	justify-content: center;
	font-size: 0.98rem;
	color: var(--muted);
}
.muted {
	color: var(--muted);
	text-align: center;
	margin: 2rem 0;
}

/* Shop Grid & Cart */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}
.shop-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 1.25rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s;
}
.shop-card:hover {
	box-shadow: 0 4px 16px rgba(255,111,97,0.12);
}
.shop-card img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: var(--radius);
	margin-bottom: 1rem;
}
.shop-card .product-name {
	font-family: 'Poppins', Arial, sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	margin: 0 0 0.25rem 0;
	text-align: center;
}
.shop-card .product-price {
	color: var(--coral);
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.shop-card .product-desc {
	font-size: 0.98rem;
	color: var(--black);
	margin-bottom: 0.75rem;
	text-align: center;
}
.shop-card .product-stock {
	color: var(--muted);
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}
.shop-card .btn {
	margin-top: 0.5rem;
	width: 100%;
}
.cart-sidebar {
	background: var(--bg);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.04);
	padding: 1.5rem 1rem;
	margin-top: 2rem;
	max-width: 340px;
}
#cart-items {
	margin-bottom: 1rem;
}
.cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	background: var(--white);
	border-radius: var(--radius);
	padding: 0.5rem 0.75rem;
}
.cart-item .item-name {
	font-weight: 600;
	flex: 1;
}
.cart-item .item-qty {
	width: 2.5em;
	text-align: center;
	border: 1px solid var(--muted);
	border-radius: 6px;
	margin: 0 0.5em;
}
.cart-item .item-remove {
	background: none;
	border: none;
	color: var(--coral-dark);
	font-size: 1.1em;
	cursor: pointer;
	margin-left: 0.5em;
}
.cart-total {
	font-weight: 700;
	color: var(--coral);
	margin-bottom: 1rem;
	text-align: right;
}

/* Ticket Form & Seat Map */
.ticket-form {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(15,23,36,0.06);
	padding: 2rem 1.5rem;
	max-width: 480px;
	margin: 2rem auto;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.ticket-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.ticket-form input,
.ticket-form select {
	padding: 0.5em 1em;
	border-radius: var(--radius);
	border: 1px solid var(--muted);
	font-size: 1rem;
}
.ticket-form button {
	margin-top: 1rem;
}
.form-msg {
	margin-top: 0.5rem;
	font-size: 1rem;
	min-height: 1.5em;
}
.seat-map {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 0.5em;
	margin: 1em 0;
	background: var(--bg);
	padding: 1em;
	border-radius: var(--radius);
	justify-items: center;
}
.seat {
	width: 2em;
	height: 2em;
	background: var(--coral);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	user-select: none;
}
.seat.selected {
	background: var(--coral-dark);
	outline: 2px solid var(--black);
}
.seat.occupied {
	background: var(--muted);
	color: var(--white);
	cursor: not-allowed;
	opacity: 0.7;
}
