/* Global Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
}

body {
	background-color: #ffffff;
	color: #1a1a1a;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 1. Header Navigation */
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 32px;
	border-bottom: 1px solid #e5e7eb;
	background-color: #ffffff;
	position: sticky;
	top: 0;
	z-index: 100;
}

.brand-logo {
	display: flex;
	align-items: center;
	border-radius: 4px;
	overflow: hidden;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 1px;
	color: #ffffff;
}

.logo-left {
	background-color: #0b8043;
	padding: 6px 12px;
}

.logo-right {
	background-color: #793e23;
	padding: 6px 12px;
}

.search-container {
	position: relative;
	flex: 1;
	max-width: 320px;
	margin: 0 20px;
}

.search-input {
	width: 100%;
	padding: 8px 12px 8px 36px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 13px;
	outline: none;
}

.search-icon {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	stroke: #0b8043;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-link {
	font-size: 15px;
	font-weight: 500;
	color: #374151;
}

.user-profile {
	display: flex;
	align-items: center;
	gap: 6px;
	/*color: #0b8043;*/
	font-size: 15px;
	font-weight: 500;
}

.icon-color {
	color: #0b8043;
}

/* 2. Hero Section */
.hero-section {
	position: relative;
	padding: 70px 20px 50px;
	text-align: center;
	overflow: hidden;

	background:
		linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.25),
			rgba(0, 0, 0, 0.7),
			rgba(0, 0, 0, 0.92)
		),
		url("../../images/banner.webp");

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-title {
	color: #ffffff;
	font-size: 52px;
	font-weight: 300; /* Lighter font weight to match reference */
	line-height: 1.1;
	letter-spacing: -0.5px;
	margin: 0;
}

/* Gradient Subtitle ("with a ticket.") */
.hero-title span {
	display: block;
	font-size: 82px;
	font-weight: 800;
	line-height: 1;
	margin-top: 8px;

	/* Gradient matching reference (Teal/Cyan -> Peach/Orange) */
	background: linear-gradient(
		90deg,
		#81f4d7 0%,
		#a2ebd0 25%,
		#f1b399 70%,
		#ff9e79 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;

	/* Subtle glow around the gradient text */
	filter: drop-shadow(0px 0px 18px rgba(129, 244, 215, 0.25));
}

.hero-subtitle {
	margin-top: 18px;

	color: #d1d5db;

	font-size: 22px;

	font-weight: 400;

	letter-spacing: 0.5px;
}

.carousel-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
}

.carousel-card {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-card.side {
	width: 280px;
	height: 290px;
	opacity: 0.5;
	transform: scale(0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
}

.carousel-card.side:hover {
	opacity: 0.8;
	transform: scale(0.93);
}

.carousel-card.center {
	width: 560px;
	height: 330px;
	opacity: 1;
	transform: scale(1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
	z-index: 2;
}

.carousel-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Pagination Dots */
.carousel-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background-color: #ffffff;
	width: 24px;
	border-radius: 12px; /* Pill shape for active dot like Figma */
}

/* 3. Shows Grid Section */
.section-title {
	font-size: 18px;
	font-weight: 600;
	margin: 40px 0 20px;
	color: #111827;
}

.shows-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
}

.show-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
}

.show-img-box {
	width: 100%;
	height: 280px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.show-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.show-info {
	padding: 12px 0;
}

.show-type {
	font-size: 11px;
	color: #6b7280;
	margin-bottom: 2px;
}

.show-name {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 2px;
}

.show-venue {
	font-size: 11px;
	color: #6b7280;
	margin-bottom: 6px;
}

.show-price {
	font-size: 13px;
	font-weight: 600;
	color: #111827;
}

/* 4. Categories Section */
.categories-flex {
	display: flex;
	gap: 30px;
	margin-bottom: 20px;
}

.category-item {
	text-align: center;
}

.category-circle {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 8px;
	cursor: pointer;
}

.category-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* .category-circle {
	width: 85px;
	height: 85px;
}
.category-circle {
	width: 72px;
	height: 72px;
} */

.category-label {
	font-size: 12px;
	color: #374151;
	font-weight: 500;
}

/* 5. Organizer Banner */
.organizer-banner {
	/* Dark crowd image with overlay */
	background:
		linear-gradient(rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.85)),
		url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1200")
			center/cover no-repeat;
	color: #ffffff;
	border-radius: 12px;
	padding: 36px 48px;
	margin: 50px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}

.organizer-text h3 {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 20px;
	letter-spacing: -0.3px;
	color: #ffffff;
}

.btn-contact {
	background-color: #ffffff;
	color: #111827;
	padding: 10px 24px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	transition: background-color 0.2s ease;
}

.btn-contact:hover {
	background-color: #f3f4f6;
}

.banner-graphic {
	display: flex;
	align-items: center;
}

.banner-graphic img {
	height: auto;
	max-width: 380px;
	border-radius: 6px;
	object-fit: contain;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.banner-graphic img {
	max-height: 90px;
	border-radius: 6px;
}

/* ===========================
            FOOTER
    =========================== */

.footer {
	background: #fff;
	padding: 55px 0 0;
	border-top: 1px solid #ededed;
}

.footer-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;

	gap: 120px;
}

/* LEFT */

.footer-left {
	width: 180px;
}

.footer-logo {
	margin-bottom: 22px;
}

.footer-logo .logo-left,
.footer-logo .logo-right {
	padding: 6px 16px;
	font-size: 9px;
}

.footer-small-title {
	font-size: 10px;
	color: #8c5b34;
	text-transform: uppercase;
	margin-bottom: 12px;
	font-weight: 600;
	letter-spacing: 0.6px;
}

.footer-menu {
	list-style: none;
	padding: 0;
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu a {
	color: #222;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}

/* RIGHT */

.footer-right {
	flex: 1;
}

/* top */

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-bottom: 25px;
}

.footer-line {
	height: 4px;

	flex: 1;

	margin-right: 40px;

	background: linear-gradient(to right, #1d8c55 78%, #95552d 78%);
}

.footer-social {
	display: flex;
	gap: 8px;
}

.footer-social a {
	width: 28px;
	height: 28px;

	background: #1d8c55;

	border-radius: 50%;

	display: flex;
	justify-content: center;
	align-items: center;

	color: #fff;

	font-size: 12px;

	text-decoration: none;
}

/* Heading */

.footer-heading {
	color: #9d6234;

	font-size: 10px;

	font-weight: 700;

	letter-spacing: 0.6px;

	margin-bottom: 8px;
}

.footer-contact {
	margin-bottom: 22px;
}

.footer-contact p,
.footer-location p {
	font-size: 11px;

	color: #555;

	line-height: 1.8;
}

/* Bottom */

.footer-bottom {
	margin-top: 40px;

	border-top: 1px solid #ececec;

	background: #fafafa;

	display: flex;

	justify-content: center;

	gap: 60px;

	padding: 18px 0;
}

.footer-bottom a {
	font-size: 11px;

	color: #666;

	text-decoration: none;
}

/* Mobile */

@media (max-width: 768px) {
	.footer-row {
		flex-direction: column;

		gap: 35px;
	}

	.footer-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-line {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.footer-bottom {
		gap: 20px;
		flex-wrap: wrap;
	}
}

/* Profile Drawer Styles */
.profile-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.profile-drawer-overlay.active {
	opacity: 1;
	visibility: visible;
}

.profile-drawer {
	position: fixed;
	top: 0;
	right: -340px;
	width: 320px;
	height: 100%;
	background-color: #ffffff;
	z-index: 1000;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	transition: right 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.profile-drawer.active {
	right: 0;
}

.drawer-header {
	display: flex;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid #f3f4f6;
	gap: 16px;
}

.drawer-close-btn {
	background: none;
	border: none;
	font-size: 18px;
	color: #374151;
	cursor: pointer;
}

.drawer-header h3 {
	font-size: 18px;
	font-weight: 600;
	color: #111827;
}

.drawer-user-info {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
}

.avatar-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #793e23, #0b8043);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	flex-shrink: 0;
}

.user-details .user-name {
	font-weight: 700;
	font-size: 15px;
	color: #111827;
}

.user-details .user-phone {
	font-size: 13px;
	color: #6b7280;
	margin-top: 2px;
}

.drawer-menu {
	list-style: none;
	padding: 0 24px;
}

.drawer-menu-item {
	border-bottom: 1px solid #f3f4f6;
}

.drawer-menu-item:last-child {
	border-bottom: none;
}

.drawer-link {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	color: #374151;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.drawer-link:hover {
	color: #0b8043;
}

.drawer-link i {
	font-size: 18px;
	color: #0b8043;
	width: 22px;
	text-align: center;
}

/* Cursor pointer for Profile button in Navbar */
.user-profile {
	cursor: pointer;
}

/* Responsive adjustments */
/* @media (max-width: 768px) {
      .header .search-container { display: none; }
      .carousel-card.side { display: none; }
      .carousel-card.center { width: 100%; }
      .organizer-banner { flex-direction: column; text-align: center; gap: 20px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-wrap: wrap; text-align: center; }
    }*/

/* Mobile Responsiveness for Hero Banner */
@media (max-width: 768px) {
	.hero-title {
		font-size: 28px;

		letter-spacing: -1px;
	}

	.hero-title span {
		font-size: 60px;
	}

	.hero-subtitle {
		font-size: 15px;
	}
}

/* TABLET RESPONSIVE DESIGN (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
	.container {
		padding: 0 24px;
	}

	/* Header Tablet */
	.header {
		padding: 14px 24px;
	}

	.search-container {
		max-width: 240px;
		margin: 0 16px;
	}

	.nav-links {
		gap: 16px;
	}

	/* Hero Section Tablet */
	.hero-section {
		padding: 32px 0 24px;
	}

	.hero-title {
		font-size: 26px;
	}

	.hero-subtitle {
		font-size: 12px;
		margin-bottom: 24px;
	}

	.carousel-card.side {
		display: none;
	}

	.carousel-card.center {
		width: 100%;
		max-width: 680px;
		height: 280px;
	}

	/* Shows Grid Tablet: 2 Columns */
	.shows-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.show-img-box {
		height: 240px;
	}

	.show-name {
		font-size: 15px;
	}

	/* Categories Tablet */
	.categories-flex {
		justify-content: flex-start;
		gap: 32px;
	}

	/* Organizer Banner Tablet */
	.organizer-banner {
		padding: 24px 30px;
		margin: 40px 0;
	}

	.organizer-text h3 {
		font-size: 18px;
	}

	.banner-graphic img {
		max-height: 80px;
	}

	/* Footer Tablet */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 30px;
	}

	.footer-col-brand .brand-logo {
		margin-bottom: 16px;
	}

	.footer-links {
		margin-bottom: 10px;
	}

	.footer-address {
		margin-bottom: 16px;
	}

	.footer-bottom {
		justify-content: center;
		gap: 20px;
	}
}

/* MOBILE RESPONSIVE DESIGN (Up to 600px) */
@media (max-width: 600px) {
	.container {
		padding: 0 12px;
	}

	/* Header Mobile */
	.header {
		padding: 10px 16px;
	}

	.search-container {
		display: none;
	}

	.mobile-search-btn {
		display: block;
	}

	.nav-links {
		gap: 12px;
	}

	.nav-link {
		display: none; /* Hide non-essential links on mobile to prevent clutter */
	}

	/* Hero Banner Mobile */
	.hero-section {
		padding: 40px 16px 30px;
	}

	.hero-title {
		font-size: 28px;
		letter-spacing: -0.5px;
	}

	.hero-title span {
		font-size: 42px; /* Scales down gracefully without breaking lines */
		margin-top: 4px;
	}

	.hero-subtitle {
		font-size: 14px;
		margin-top: 10px;
	}

	.carousel-card.side {
		display: none; /* Hide side peek cards on mobile */
	}

	.carousel-card.center {
		width: 100%;
		height: 170px;
	}

	.carousel-dots {
		display: flex;
	}

	/* Shows Grid Mobile: 2 Columns */
	.section-title {
		font-size: 16px;
		margin: 24px 0 14px;
	}

	.shows-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.show-img-box {
		height: 150px;
		border-radius: 8px;
	}

	.show-type {
		font-size: 9px;
	}

	.show-name {
		font-size: 12px;
		line-height: 1.2;
	}

	.show-venue {
		font-size: 9px;
		margin-bottom: 4px;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.show-price {
		font-size: 11px;
	}

	/* Categories Mobile */
	.categories-flex {
		justify-content: space-between;
		gap: 10px;
	}

	.category-label {
		font-size: 10px;
	}

	/* Organizer Banner Mobile */
	.organizer-banner {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 16px;
		margin: 30px 0;
		gap: 16px;
	}

	.organizer-text h3 {
		font-size: 16px;
		line-height: 1.3;
		margin-bottom: 12px;
	}

	.btn-contact {
		padding: 6px 18px;
		font-size: 11px;
	}

	.banner-graphic {
		width: 100%;
	}

	.banner-graphic img {
		width: 100%;
		max-height: 100px;
		object-fit: cover;
	}

	/* Footer Mobile */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 24px;
	}

	.footer-col-brand .brand-logo {
		margin-bottom: 16px;
	}

	.footer-links li {
		margin-bottom: 8px;
	}

	.footer-links a {
		font-size: 12px;
		font-weight: 600;
	}

	.footer-heading {
		margin-bottom: 6px;
	}

	.footer-address {
		font-size: 11px;
		margin-bottom: 16px;
	}

	.footer-bottom {
		justify-content: space-between;
		gap: 8px;
	}

	.footer-bottom a {
		font-size: 10px;
	}
}

.signup-modal {
	border-radius: 20px !important;
	overflow: hidden !important;
	border: none;
}

.signup-modal .modal-body {
	padding: 18px 28px 25px;
}

.signup-label {
	font-size: 14px;
	color: #5f5f5f;
	margin-bottom: 6px;
	font-weight: 500;
}

.signup-input {
	height: 46px;
	border-radius: 4px;
	border: 1px solid #dcdcdc;
	box-shadow: none;
}

.signup-input:focus {
	border-color: #198754;
	box-shadow: none;
}

.password-icon {
	background: #fff;
	border-left: none;
	cursor: pointer;
}

.signup-btn {
	height: 46px !important;
	background: #198754 !important;
	border: none !important;
	border-radius: 4px !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 600 !important;
}

.signup-btn:hover {
	background: #157347 !important;
}

.terms-text {
	font-size: 12px;
	color: #7d7d7d;
	line-height: 18px;
}

.terms-text a {
	color: #8b5a2b;
	text-decoration: none;
}

.login-text {
	font-size: 16px;
	color: #666;
}

.login-text a {
	color: #8b5a2b;
	text-decoration: none;
}

.modal-header .btn-close {
	font-size: 13px;
}

.modal-title {
	font-size: 20px;
	font-weight: 700;
}

.modal-dialog {
	max-width: 420px;
}

.otp-input {
	width: 45px;
	height: 50px;

	text-align: center;

	font-size: 22px;
	font-weight: 600;

	border: 1px solid #ddd;
	border-radius: 6px;
}

.otp-input:focus {
	border-color: #198754;
	outline: none;
}

.otp-text {
	font-size: 13px;
	color: #888;
}

.otp-time {
	font-size: 13px;
	color: #888;
}

.otp-resend {
	font-size: 13px;
	color: #888;
}

.otp-resend a {
	color: #198754;
	text-decoration: none;
	font-weight: 600;
}

/* ------------------- */
.profile-drawer {
	position: fixed;
	right: 0;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 1000;
}

.profile-drawer.open {
	/* ← This is important */
	transform: translateX(0);
}

.profile-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
	z-index: 999;
}

.profile-drawer-overlay.active {
	/* ← This is important */
	opacity: 1;
	visibility: visible;
}
/* --------------------------------- */
/* ===== Profile Drawer Only ===== */
.profile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 340px;
	max-width: 100%;
	height: 100vh;
	background: #fff;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
	z-index: 9999;
	overflow-y: auto;
}

/* Header */
.profile-drawer .drawer-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	border-bottom: 1px solid #eee;
}

.profile-drawer .drawer-header h3 {
	margin: 0;
	font-size: 26px;
	font-weight: 600;
	color: #111827;
}

/* Back button */
.profile-drawer .drawer-close-btn {
	border: none;
	background: transparent;
	font-size: 22px;
	color: #111827;
	cursor: pointer;
	padding: 0;
}

/* User info */
.profile-drawer .drawer-user-info {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px;
	border-bottom: 1px solid #f3f4f6;
}

.profile-drawer .avatar-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #5b5f2f;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.profile-drawer .user-name {
	font-weight: 600;
	color: #111827;
	margin-bottom: 2px;
}

.profile-drawer .user-phone {
	font-size: 14px;
	color: #6b7280;
}

/* Menu */
.profile-drawer .drawer-menu {
	list-style: none;
	margin: 0;
	padding: 0 20px;
}

.profile-drawer .drawer-menu-item {
	border-bottom: 1px solid #f3f4f6;
}

.profile-drawer .drawer-link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 0;
	text-decoration: none;
	color: #111827;
	font-size: 16px;
	transition: color 0.2s ease;
}

.profile-drawer .drawer-link:hover {
	color: #15803d;
}

.profile-drawer .drawer-link i {
	width: 24px;
	text-align: center;
	color: #15803d;
	font-size: 20px;
}

.profile-drawer .drawer-link.text-danger {
	color: #dc2626;
}

.profile-drawer .drawer-link.text-danger i {
	color: #16a34a;
}

/* -------------------------------- */
.avatar-circle {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #198754;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}

.avatar-circle img.user-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}
