/*
Theme Name: TN Events Center
Theme URI: https://example.com/
Author: Custom
Description: Bootstrap-based WordPress theme for ticket events, designed to integrate with the TicketNetwork Catalog API + MapWidget3.
Version: 1.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tn-events-center
*/
:root {
  --tn-primary: #1988b5;
  --tn-primary-hover: #00408a;
  --tn-accent: #ff9800;
  --tn-muted-bg: #f5f5f7;
} 
:root {
  --bs-primary: #1988b5 !important;
}


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #111827;
  overflow-x: hidden !important;
}

.btn-primary{
		background: #1988b5;
	color:#fff;
	border-color: #1988b5;
}
.btn-primary:hover{
	background: #000;
	color:#fff;
	border-color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #ffffff;
}

.hero-search {
  background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 60%);
}

.hero-search h1 {
  font-weight: 700;
}

.hero-search .form-control-lg {
  border-radius: 0.5rem;
}

.hero-search .btn-lg {
  border-radius: 0.5rem;
}

.events-list .card {
  border-radius: 0.75rem;
}

.events-list .card-title {
  font-weight: 600;
}

.events-list .card .btn {
  border-radius: 999px;
}

.footer-top {
  background-color: #0b192f;
  color: #e5e7eb;
}

.footer-top a {
  color: #e5e7eb;
}

.footer-bottom {
  background-color: #020617;
  color: #9ca3af;
  font-size: 0.875rem;
}

.badge-today {
  background-color: var(--tn-accent);
  color: #111827;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
}
#tn-maps {
    height: 900px !important;
}

#tn-maps-inner {
    height: 100% !important;
}

.sea-map-inner {
    height: 100% !important;
}

/* MapWidget3 best practice on small screens */
@media screen and (max-width: 991px) {
  header.site-header, footer { display: none !important; }
  body { margin: 0; }
  #tn-mapwidget3-root { min-height: 100vh; }
}


/* Homepage hero + genres layout */
.hero-slider {
background: url(/wp-content/uploads/2025/12/hero.webp);
    background-position: center;
}

.hero-slider .carousel-item {
  min-height: 203px;
	color: #fff;
}

.homepage-genres {
  background-color: #ffffff;
}

/* Genre tiles */
.genre-tile {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.genre-tile:hover {
  transform: translateY(-3px);
  border-color: var(--tn-primary);
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.12);
  text-decoration: none;
}

/* Header search suggestions dropdown */
#tn-header-search-suggestions {
  top: 100%;
  left: 0;
  z-index: 1000;
}
.logo{
width: 100%;
max-width: 120px;	
}




/* OUTER full width */
.genre-hero-container {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* CENTERED image block */
.genre-hero-inner {
    position: relative;
    height: 300px;         /* FINAL IMAGE HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE FIXED HEIGHT, AUTO WIDTH */
.genre-hero-img {
    height: 300px;         /* FIXED HEIGHT */
}

/* LEFT + RIGHT GRADIENTS anchored to image edges */
.left-gradient,
.right-gradient {
    position: absolute;
    top: 0;
    height: 300px;         /* SAME AS IMAGE HEIGHT */
    width: 50px;          /* Controls fade smoothness */
    z-index: 2;
    pointer-events: none;
}

/* LEFT FADE */
.left-gradient {
    left: 0px;   
    background: linear-gradient(to right, black 0%, rgba(0,0,0,0) 100%);
}

/* RIGHT FADE */
.right-gradient {
    right: 0px;
    background: linear-gradient(to left, black 0%, rgba(0,0,0,0) 100%);
}

/* TEXT OVERLAY */
.hero-text {
    position: absolute;
    z-index: 3;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px black;
}

.hero-text h1 {
    font-size: 31px;
    margin: 0 0 10px;
}

.hero-text p {
    font-size: 18px;
    margin: 0;
}
@media screen and (max-width: 533px) {
	.genre-hero-inner{
		    width: 100%;
	}

}
/* .carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) brightness(0);
} */
.carousel-control-next, .carousel-control-prev{
	width: 25px;
}
.carousel-control-prev {
    left: -30px;
}
.carousel-control-next {
    right: -30px;
}

.ticket-card{
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #1f85b5;
	height: 100%;
	gap: 10px;
	
}
.venue-card{
	    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #1f85b5;
	height: 100%;
}

.ticket-card .btn{
	white-space: nowrap;
}
@media (max-width: 767px) {
.small, .ticket-card .btn{
	font-size: 12px;
	}
}
