@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&display=swap');

:root {
  --pink: #ec398b;
  --purple: #8c52ff;
  --black: #000000;
  --gray: #656565;
  --gray-light: #555;
  --gray-lighter: #666;
  --white: #fff;
  --light-bg: #f9f9f9;
  --light-border: #e2d7ff;
  --light-active-bg: #fcf9ff;
  --light-pink: #f8f5ff;
  --border1: #dfdfdf;
  --hero-overlay: rgba(0, 0, 0, 0.55);
  --shadow-1: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-2: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-3: 0 2px 6px rgba(0, 0, 0, 0.2);
  --shadow-4: 0 4px 20px rgba(0, 0, 0, 0.05);
  --heart-color: #ff8299;

}

/* body,
html {
  overflow-x: hidden;
} */
body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--purple);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--purple);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--purple);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  font-weight: 900;
}

a,
button,
.btn {
  transition: all 0.5s ease;
}

a {
  text-decoration: none;
  color: var(--pink);
}

a:hover {
  color: var(--purple);
}

.rounded10 {
  border-radius: 10px;
}

.rounded12 {
  border-radius: 12px;
}

.rounded15 {
  border-radius: 15px;
}

.rounded18 {
  border-radius: 18px;
}

.rounded20 {
  border-radius: 20px;
}

.rounded25 {
  border-radius: 25px;
}

.rounded30 {
  border-radius: 30px;
}

button,
.btn,
.btn:focus,
.btn:active,
.owl-carousel .owl-nav button {
  border: 0 !important;
}

.btn-gradient {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: var(--white) !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.5s ease;
}

.btn-gradient img {
  margin-left: 10px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(102%);
}

.btn-gradient:hover {
  color: var(--white) !important;
  background: linear-gradient(180deg, var(--purple), var(--pink));
}

.btn_primary {
  background: var(--purple);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 12px 35px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.btn_primary:before {
  background-color: var(--pink);
  content: '';
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  -webkit-transform: skew(50deg);
  -moz-transform: skew(50deg);
  -o-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  transform-origin: top left;
  -ms-transition: 0.4s;
}

.btn_primary img {
  margin-right: 6px;
}

.btn_primary:hover {
  color: var(--white);
}

.btn_primary:hover:before {
  height: 100%;
  width: 200%;
}

.custom-navbar {
  background: var(--white);
}

.custom-navbar .nav-item {
  padding: 0 12px;
}

.custom-navbar .nav-link {
  color: var(--gray);
  font-weight: 500;
  font-size: 18px;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--purple);
}

.custom-navbar .nav-link.active {
  font-weight: 900;
}

.custom-navbar .btn-nav .nav-item {
  padding: 0;
}

.login-link {
  color: var(--purple) !important;
  font-weight: 600;
}

.login-link:hover {
  color: var(--pink) !important;
}

.hero-slider {
  position: relative;
  background: url('../img/banner-home.png') center/cover no-repeat;
  color: var(--white);
  padding: 15px 0 10px;
}

/*.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}*/

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 62px;
  color: var(--white);
}

.hero-content .highlight {
  color: var(--pink);
}

.hero-content p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

.hero-carousel .owl-item.center img {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.hero-carousel .owl-item img {
  border-radius: 15px;
  transition: transform 0.3s ease;
  border: 0.01px solid var(--gray-lighter);
  z-index: 1;
  transform: scale(0.8);
}

.hero-carousel .owl-nav button {
  background: var(--white) !important;
  color: var(--pink) !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  border: 1px solid var(--purple) !important;
}

.hero-carousel .owl-nav button:hover {
  background: var(--purple) !important;
}

.hero-carousel .owl-nav button:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(102%);
  transition: all 0.5s ease;
}

.hero-carousel .owl-nav button.owl-prev {
  left: -55px;
  position: absolute;
  top: 40%;
}

.hero-carousel .owl-nav button.owl-next {
  right: -55px;
  position: absolute;
  top: 40%;
}

.hero-slider .btn-gradient {
  font-size: 20px;
}

.hero-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.hero-carousel .owl-dot span {
  width: 30px;
  height: 10px;
  background: transparent;
  display: block;
  margin: 5px;
  border-radius: 20px;
  border: 1px solid var(--pink);
}

.hero-carousel .owl-dot.active span {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border: 1px solid transparent;
}

.hero-card img {
  border-radius: 15px;
  object-fit: cover;
  height: 263px;
  width: 217px;
}

.section-title {
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
  font-size: 48px;
  letter-spacing: -0.04em;
}

h3.section-title {
  font-size: 42px;
  letter-spacing: -0.04em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  transform: translateX(0%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 3px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.intro-text {
  font-size: 24px;
  color: var(--black);
  font-weight: 600;
}

.intro-highlight {
  font-weight: 700;
  color: var(--purple);
}

.owl-stage-outer {
  overflow: hidden !important;
}

.bg-light {
  background: #f7f7f7 !important;
}

.events-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.events-carousel .owl-dot span {
  width: 30px;
  height: 10px;
  background: transparent;
  display: block;
  margin: 5px;
  border-radius: 20px;
  border: 1px solid var(--pink);
}

.events-carousel .owl-dot.active span {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border: 1px solid transparent;
}

.events-carousel .event-card {
  background: var(--white);
  padding: 0px;
  border-radius: 20px;
  border: 1px solid var(--border1);
}

.events-carousel .event-card img {
  border-radius: 20px 20px 0 0;
}

.type-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.type-carousel .owl-dot span {
  width: 30px;
  height: 10px;
  background: transparent;
  display: block;
  margin: 5px;
  border-radius: 20px;
  border: 1px solid var(--pink);
}

.type-carousel .owl-dot.active span {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border: 1px solid transparent;
}

.type-carousel .event-card {
  background: var(--white);
  padding: 0px;
  border-radius: 20px;
  border: 1px solid var(--border1);
}

.type-carousel .event-card img {
  border-radius: 20px 20px 0 0;
  margin-right: 10px;
}




.event-card-description {
  padding: 25px;
  margin-top: -5px;
}
.event-card-description-cate {
  padding: 25px;
  margin-top: -5px;
}

.event-card h5 {
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 10px;
}

.event-meta {
  color: var(--black);
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.event-meta:last-child {
  margin-bottom: 0;
}

.owl-carousel .owl-item .event-meta img {
  margin-right: 8px;
  height: 23px;
  width: 23px;
}

.events-carousel .owl-nav button {
  background: var(--white) !important;
  color: var(--pink) !important;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 24px;
  border: 1px solid var(--purple) !important;
}

.events-carousel .owl-nav button:hover {
  background: var(--purple) !important;
}

.events-carousel .owl-nav button:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(102%);
  transition: all 0.5s ease;
}

.events-carousel .owl-nav button.owl-prev {
  left: -55px;
  position: absolute;
  top: 40%;
}

.events-carousel .owl-nav button.owl-next {
  right: -55px;
  position: absolute;
  top: 40%;
}

.type-carousel .owl-nav button {
  background: var(--white) !important;
  color: var(--pink) !important;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 24px;
  border: 1px solid var(--purple) !important;
}

.type-carousel .owl-nav button:hover {
  background: var(--purple) !important;
}

.type-carousel .owl-nav button:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(102%);
  transition: all 0.5s ease;
}

.type-carousel .owl-nav button.owl-prev {
  left: -55px;
  position: absolute;
  top: 40%;
}

.type-carousel .owl-nav button.owl-next {
  right: -55px;
  position: absolute;
  top: 40%;
}


.accordion-button {
  font-weight: 600;
  color: var(--black);
}

.accordion-button:not(.collapsed) {
  background: var(--light-bg);
  color: var(--purple);
  box-shadow: none;
}

.accordion-body {
  color: var(--gray-light);
  font-size: 15px;
}

.step-card {
  display: flex;
  flex: 1 1 0;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-4);
  border: 1px solid #dfdfdf;
  border-radius: 15px;
}

.step-content {
  flex: 1;
}

.step-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.step-header h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: var(--black);
  margin: 0;
}

.step-icon {
  margin-right: 10px;
  width: 48px;
  height: 48px;
  background: #fff0f5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 24px;
}

.step-description {
  margin-top: 10px;
  color: var(--gray-light);
  font-size: 15px;
  margin-bottom: 0;
}

.step-wrapper.active .step-card {
  border: 1px solid var(--light-border);
  background-color: var(--light-active-bg);
}

.step-header .bi {
  transition: transform 0.3s ease;
}

.step-wrapper.active .step-content .collapse.show {
  border-top: 1px solid var(--border1);
  margin-top: 15px;
}

.step-content .collapse.show+.step-header .bi,
.step-header[aria-expanded='true'] .bi {
  transform: rotate(180deg);
}

.step-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.step-number {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: var(--white);
  font-weight: bold;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  margin-top: 24px;
}

.step-card .step-number {
  display: none;
}

.custom-footer {
  background: url('../img/Footer.png') center/cover no-repeat;
  color: var(--white);
  padding: 40px 0 0;
}

.custom-footer-head {
  background: url('../img/Footer.png') center/cover no-repeat;
  color: var(--white);
  padding: 20px 10px 0;
}

.custom-footer h5 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 15px;
  font-size: 24px;
}

.custom-footer .list-unstyled {
  margin-bottom: 0;
}

.custom-footer .list-unstyled li {
  margin-top: 15px;
}

.custom-footer .list-unstyled a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
}

.custom-footer a:hover {
  color: var(--pink);
}

.social-icon {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.social-icon li {
  margin: 0;
  margin-right: 30px;
}

.social-icon li:last-child {
  margin-right: 0;
}

.social-icon li a {}

.social-icon li a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(7453%) hue-rotate(184deg) brightness(113%) contrast(98%);
}

.social-icon li a:hover img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(53%) saturate(7207%) hue-rotate(309deg) brightness(93%) contrast(100%);
}

.custom-footer .copy {
  font-size: 14px;
  margin: 20px 0 0;
  border-top: 1px solid #ffffff30;
  padding: 20px 0;
}

body:has(.login_wrapper) {
  padding: 0;
}

.login_wrapper {
  background: url(../img/logon-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login_box {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: 50px;
  border-radius: 25px;
}

.login_box .logo_login {
  padding: 30px 30px 15px;
  text-align: center;
}

.login_box .nav-tabs {
  border: 0;
  border-bottom: 1px solid var(--border1);
}

.login_box .nav-tabs .nav-item {
  width: 50%;
}

.login_box .nav-tabs .nav-item .nav-link {
  width: 100%;
  text-align: center;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  position: relative;
}

.login_box .nav-tabs .nav-item .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: 0.5s ease;
}

.login_box .nav-tabs .nav-item .nav-link.active {
  font-weight: 700;
  color: var(--pink);
}

.login_box .nav-tabs .nav-item .nav-link.active:before {
  width: 100%;
}

.login_box .tab-content {
  padding: 20px 20px;
  height: calc(100vh - 220px);
  overflow-y: auto;
}

.login_box .tab-content::-webkit-scrollbar {
  display: none;
}

.create_account p a {
  font-size: 14px;
  font-weight: 500;
  padding-left: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form_group {
  margin: 0 0 15px;
}

.form_group label {
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;
  color: var(--gray-lighter);
  display: inline-block;
  margin: 0 0 10px;
}

.form_group label span {
  color: var(--red);
}

.form_group .form-control {
  border: 1px solid var(--border1);
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: none !important;
}

.form_group .form-select {
  border: 1px solid var(--border1);
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: none !important;
  background: url(../img/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 13px;
}

.declaration_wrap .form-check {
  padding: 0;
  margin: 0;
}

.declaration_wrap .form-check .form-check-input {
  display: none;
}

.declaration_wrap .form-check .form-check-input:checked+.form-check-label {
  background: url(../img/check.svg);
  background-size: 24px;
  background-repeat: no-repeat;
}

.declaration_wrap .form-check .form-check-label {
  font-size: 15px;
  line-height: 24px;
  color: var(--gray-lighter);
  position: relative;
  padding-left: 32px;
}

.declaration_wrap .form-check .form-check-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--gray-lighter);
  opacity: 0.1;
}

.create_account p {
  margin: 0;
}

.breadcrumb {
  flex-wrap: nowrap;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.breadcrumb-item a {
  color: var(--light-border);
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item.active {
  font-weight: 700;
  text-decoration: underline;
  color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '';
  background: url(../img/icon-s-arrow-left.svg) center/cover no-repeat;
  width: 12px;
  height: 12px;
  float: none;
  margin-right: 10px;
}

.profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  background: var(--light-pink);
  border: 1px solid var(--border1);
  border-radius: 16px;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-info-img {
  width: 120px;
  height: 120px;
}

.profile-info img {
  object-fit: cover;
  border-radius: 15px;
}

.profile-text h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
}

.profile-text p {
  margin: 5px 0 0;
  color: var(--gray);
}

.profile-card .social-links {
  display: flex;
  gap: 15px;
}

.profile-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border1);
  text-decoration: none;
  transition: 0.3s ease;
}

.profile-card .social-links a img {
  width: 28px;
  height: 28px;
}

.profile-card .social-links a:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  background: var(--light-pink);
  border-radius: 8px;
}

.eventType {
  justify-content: space-evenly;
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
  align-content: stretch;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.profile-card .links {
  display: flex;
  gap: 15px;
}

.profile-card .links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  padding: 20px 20px 20px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border1);
  text-decoration: none;
  transition: 0.3s ease;
}

.profile-card .links a:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  background: var(--light-pink);
  border-radius: 8px;
}

.event-map {
  position: relative; /* so heart button can be positioned inside */
  display: inline-block;

}

.event-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 15px;
}

.event-description {}

.event-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  /* padding: 25px; */
  border: 1px solid var(--border1);
}

.event-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.event-item:last-child {
  margin-bottom: 0;
}

.event-icon {
  width: 28px;
  height: 28px;
  margin-right: 15px;
  flex-shrink: 0;
}

.event-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(47%) sepia(86%) saturate(4000%) hue-rotate(309deg) brightness(94%) contrast(101%);
}

.event-text {
  font-size: 16px;
  color: var(--black);
}

.price-card {
  background: var(--light-pink);
  border-radius: 16px;
  padding: 15px 30px;
  /* min-height: 150px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border1);
  transition: 0.3s ease;
  margin: 0 0 4px;
}

.price-card:hover,
.price-card.active {
  border-image-slice: 1;
  background: var(--white);
}

.price-data {
  background: var(--light-pink);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid var(--border1);
  transition: 0.3s ease;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  /* stack top and bottom */
  gap: 10px;
}

.price-top {
  display: flex;
  justify-content: space-between;
  /* name left, qty right */
  align-items: center;
}

.date-buttons {
  /* display: flex; */
  justify-content: flex-start;
  /* or center if you want */
  flex-wrap: nowrap;
  /* force one line */
  overflow-x: auto;
  /* scroll if too many */
  gap: 8px;
  /* padding-top: 6px; */
}

.date-buttons .date-button {
  background: rgba(236, 57, 139, 0.1);
  border: 1px solid var(--pink) !important;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  /* keep text in one line */
}
/* 
.date-button.selected {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
} */

/* .date-buttons .date-button {
    color: var(--pink);
    border: 1px solid var(--pink) !important;
    background: rgba(236, 57, 139, 0.1);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    height: 33px;
} */
.price-data:hover,
.price-data.active {
  border-image-slice: 1;
  background: var(--white);
}

.price-label {
  font-weight: 700;
  color: var(--black);
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: var(--pink);
  border: 1px solid var(--pink) !important;
  background: rgba(236, 57, 139, 0.1);
  cursor: pointer;
  transition: 0.3s ease;
}

.quantity-btn:hover {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #8c52ff, #ec398b) border-box;
}

.quantity-input {
  width: 28px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  border: none;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border1);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.info-card-header-img {
  width: 98px;
  height: 98px;
}

.info-card-header-img img {
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.info-card-header h4 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: var(--black);
}

.info-card-header p {
  margin: 10px 0 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--gray);
}

.info-item img {
  height: 28px;
  width: 28px;
}

.info-item span {
  color: var(--gray);
  font-size: 16px;
  display: block;
  line-height: 20px;
}

.info-item a {
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  line-height: 24px;
}

.info-item:hover a {
  color: var(--pink);
}

.events-section {
  background: var(--light-active-bg);
}

.events-photos-carousel .event-photo-card {
  border-radius: 20px;
  overflow: hidden;
}

.events-photos-carousel .event-photo-card img {
  height: 330px;
  width: 309px;
  display: block;
}

.events-photos-carousel .owl-nav button {
  background: var(--white) !important;
  color: var(--pink) !important;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 24px;
  border: 1px solid var(--purple) !important;
}

.events-photos-carousel .owl-nav button:hover {
  background: var(--purple) !important;
}

events-photos-carousel .owl-nav button:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(102%);
  transition: all 0.5s ease;
}

.events-photos-carousel .owl-nav button.owl-prev {
  left: -55px;
  position: absolute;
  top: 40%;
}

.events-photos-carousel .owl-nav button.owl-next {
  right: -55px;
  position: absolute;
  top: 40%;
}

.events-photos-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.events-photos-carousel .owl-dot span {
  width: 30px;
  height: 10px;
  background: transparent;
  display: block;
  margin: 5px;
  border-radius: 20px;
  border: 1px solid var(--pink);
}

.events-photos-carousel .owl-dot.active span {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border: 1px solid transparent;
}

@media (max-width: 1400px) {
  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p,
  .event-card h5 {
    font-size: 18px;
  }

  .section-title {
    font-size: 42px;
  }

  h3.section-title {
    font-size: 38px;
  }
}

@media (max-width: 1199px) {
  .events-carousel .owl-nav button.owl-prev {
    left: -20px;
  }

  .events-carousel .owl-nav button.owl-next {
    right: -15px;
  }
}
@media (max-width: 1199px) {
  .type-carousel .owl-nav button.owl-prev {
    left: -20px;
  }

  .type-carousel .owl-nav button.owl-next {
    right: -15px;
  }
}

@media (max-width: 992px) {
  .navbar-nav .dropdown-menu {
    border: 0;
    margin: 0;
    padding: 0;
  }

  .dropdown-item {
    padding: 0 10px;
    font-size: 16px;
  }

  .navbar-toggler {
    background: var(--pink);
    padding: 5px 10px;
  }

  .navbar-toggler:hover {
    background: var(--purple);
  }

  .navbar-toggler:focus {
    box-shadow: inherit;
  }

  .navbar-collapse.show {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0px;
    background: var(--white);
    max-height: 500px;
    padding: 10px 20px 20px;
    border-top: 1px solid var(--border1);
  }

  /* Mobile & desktop top-to-bottom animation */
  .navbar-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease;
  }

  .navbar .dropdown.show .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .custom-navbar .nav-item {
    padding: 0;
  }

  .navbar-nav.btn-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid var(--border1);
    padding-top: 20px;
  }

  .hero-slider {
    padding: 60px 0;
  }

  .About .AboutImg {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .custom-footer .copy {
    margin-top: 0;
  }

  .login_box {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .section-title::after {
    width: 140px;
  }

  .profile-card {
    padding: 20px;
    flex-direction: column;
  }

  .profile-info {
    margin-bottom: 20px;
  }

  .event-map iframe {
    height: 300px;
  }

  .breadcrumb {
    font-size: 16px;
  }

  h3.section-title {
    font-size: 24px;
  }
}

@media (max-width: 667px) {
  .login_box .tab-content {
    padding: 20px 20px;
    height: calc(100vh - 160px);
  }
}

@media (max-width: 575px) {
  .create_account {
    margin-bottom: 20px;
  }

  .step-header h6 {
    font-size: 16px;
    line-height: 24px;
  }

  .intro-text {
    font-size: 20px;
    line-height: 30px;
  }

  .section-title {
    font-size: 24px;
  }

  h3.section-title {
    font-size: 22px;
  }

  .step-description {
    font-size: 14px;
  }

  .step-card {
    padding: 12px;
  }

  .header-logo {
    margin: 0;
    padding: 0;
  }

  .header-logo img {
    width: 80px;
  }

  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }

  .navbar-toggler {
    padding: 4px 6px;
  }

  .hero-slider {
    padding: 30px 0;
  }

  .hero-content h1,
  h1 {
    font-size: 26px;
  }

  .hero-content p,
  .event-card h5 {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-carousel {
    width: 90%;
    margin: 0 auto;
  }

  .hero-slider .btn-gradient {
    font-size: 16px;
  }

  .hero-carousel .owl-dot span,
  .events-carousel .owl-dot span {
    width: 20px;
    height: 6px;
    margin: 3px;
  }
  .type-carousel .owl-dot span {
    width: 20px;
    height: 6px;
    margin: 3px;
  }

  .step-wrapper {
    gap: 10px;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .event-card,
  .info-card {
    padding: 15px;
  }

  .price-card {
    padding: 10px;
  }

  .price-data {
    padding: 10px;
  }

  .quantity {
    gap: 5px;
  }

  .quantity-btn {
    width: 32px;
    height: 32px;
  }

  .price-label {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .info-card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .info-card-header p {
    margin: 0;
  }
}




/* Simple spinner style */
/* Full-Screen Overlay */
.overlay-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Make sure it appears above everything else */
  color: white;
  font-family: Arial, sans-serif;
}

/* Loader Container */
.loader-container {
  text-align: center;
}

/* Circular Loader */
.loader {
  border: 6px solid #f3f3f3;
  /* Light gray background */
  border-top: 6px solid #3498db;
  /* Blue color for the spinner */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Animation for spinning */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Loader text style */
.overlay-loader p {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}


.event-image {
  width: 860px;
  height: 481px;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 20px;
}

@media (max-width: 992px) { /* tablet & below */
  .event-image {
    width: 100%;
    height: auto;
  }
}


/* Login validation  */

.invalid-feedback {
  display: none;
  /* Ensures the error message is displayed */
  color: #e74c3c;
  /* Red color for error */
  font-size: 0.875rem;
  /* Adjust font size */
  margin-top: 0.25rem;
  /* Space between input field and error message */
}

.blur-bg {
  background: rgba(255, 255, 255, 0.1);
  /* semi-transparent */
  backdrop-filter: blur(10px);
  /* actual blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}



.privacy-title {
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
  font-size: 48px;
  color: white;
}

.privacy-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  transform: translateX(0%);
  width: 1150px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 3px;
}

.privacy-policy h3 {
  color: white;
}

/* .price-card .bottom-message {
        position: absolute;
        bottom: 10px;
        left: 15px;
        right: 15px;
        font-size: 14px;
        color: red;
        margin: 0;
    } */
.bottom-message {
  /* position: absolute; */
  bottom: 10px;
  left: 19px;
  right: 19px;
  font-size: 14px;
  color: red;
  margin-left: 10px;
}

/* 
.sticky-card {
    position: fixed;
    top: 0;
    width: 400px;
    z-index: 1000;
} */


.section-container {
  position: relative;
}

.sticky-card {
  position: sticky;
  top: 20px;
  /* how far from the top before it starts sticking */
}

.event-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-family: 'Manrope', sans-serif;
  padding: 20px;
}


/* Remove Bootstrap default borders */
.custom-tabs {
  border-bottom: none;
}

.custom-tabs .nav-link {
  position: relative;
  border: none !important;
  font-weight: 700;
  color: #999;
  background: transparent;
  transition: color 0.3s ease;
  /* smooth color change */
}

/* Pink text on hover */
.custom-tabs .nav-link:hover {
  color: #e91e63;
}

/* Active tab text color */
.custom-tabs .nav-link.active {
  color: #e91e63 !important;
}

/* Underline effect using ::after */
.custom-tabs .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #e91e63;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Show underline only on active tab */
.custom-tabs .nav-link.active::after {
  width: 100%;
}


/* Ticket Card */
.ticket-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  margin-top: 25px;
  justify-content: space-between;
  align-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Ticket Image */
.ticket-img img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

/* Ticket Body */
.ticket-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header */
.ticket-header .ticket-label {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
}

.ticket-header .ticket-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

/* Info */
.ticket-info {
  display: flex;
  gap: 30px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.ticket-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-icon {
  width: 22px;
  height: 22px;
}

.ticket-info-label {
  font-size: 12px;
  color: #777;
  margin: 0;
}

.ticket-info-value {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Actions */
.ticket-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.ticket-download {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ticket-download:hover {
  background: #d81b60;
}

.ticket-qty {
  font-size: 14px;
  color: #444;
}

.ticket-qty-label {
  font-weight: 600;
  margin-right: 5px;
}

.ticket-qty-value {
  font-weight: 700;
  color: #e91e63;
}

/* Empty State */
.ticket-empty {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .ticket-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ticket-img img {
    width: 100%;
    height: auto;
  }

  .ticket-info {
    justify-content: center;
  }

  .ticket-actions {
    flex-direction: column;
    gap: 10px;
  }
}


/* 
.qr-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}
.qr-card img {
    border: 2px solid #eee;
    border-radius: 8px;
}
.ticket-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}
.qr-grid {
    margin-top: 10px;
} */



.qr-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qr-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.qr-card img {
  max-width: 100px;
  /* reduced size */
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 6px;
}

.qr-card p {
  margin: 2px 0;
  /* tighter spacing */
  font-size: 0.85rem;
  /* smaller text */
}

.qr-card .btn {
  font-size: 0.75rem;
  /* smaller button */
  padding: 3px 8px;
  border-radius: 6px;
}

.ticket-summary {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
}

.ticket-summary h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.ticket-summary p {
  margin: 2px 0;
  font-size: 0.85rem;
}

.qr-grid {
  margin-top: 6px;
}


.search-bar input {
  max-width: 250px;
  border-radius: 30px;
  padding: 6px 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.search-bar input:focus {
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
  outline: none;
}






/* checkout page */

.hero-slider-checkout {
  position: relative;
  background: url('../img/banner-home.png') center/cover no-repeat;
  color: var(--white);
  padding: 45px 0 10px;
}

.timer-box {
  position: fixed;
  top: 550px;
  right: 10px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  padding: 15px 20px;
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease-in-out;
  width: 25%;
  z-index: 99;
  /* height: 12%; */
}

.timer-box p {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
}

.timer-box h4 {
  font-size: 22px;
  color: var(--white);
  margin: 0;
}

@media (max-width: 1400px) {
  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p,
  .event-card h5 {
    font-size: 18px;
  }

  .section-title {
    font-size: 42px;
  }

  h3.section-title {
    font-size: 38px;
  }

  .timer-box {
    width: 24%;
  }
}

@media (max-width: 1199px) {
  .events-carousel .owl-nav button.owl-prev {
    left: -20px;
  }

  .events-carousel .owl-nav button.owl-next {
    right: -15px;
  }
  .type-carousel .owl-nav button.owl-prev {
    left: -20px;
  }

  .type-carousel .owl-nav button.owl-next {
    right: -15px;
  }

  .timer-box {
    top: inherit;
    bottom: 0;
    right: 0px;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    padding: 10px 20px;
  }
}

@media (max-width: 992px) {
  .navbar-nav .dropdown-menu {
    border: 0;
    margin: 0;
    padding: 0;
  }

  .dropdown-item {
    padding: 0 10px;
    font-size: 16px;
  }

  .navbar-toggler {
    background: var(--pink);
    padding: 5px 10px;
  }

  .navbar-toggler:hover {
    background: var(--purple);
  }

  .navbar-toggler:focus {
    box-shadow: inherit;
  }

  .navbar-collapse.show {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0px;
    background: var(--white);
    max-height: 500px;
    padding: 10px 20px 20px;
    border-top: 1px solid var(--border1);
  }

  /* Mobile & desktop top-to-bottom animation */
  .navbar-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease;
  }

  .navbar .dropdown.show .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .custom-navbar .nav-item {
    padding: 0;
  }

  .navbar-nav.btn-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid var(--border1);
    padding-top: 20px;
  }

  .hero-slider-checkout {
    padding: 60px 0;
  }

  .About .AboutImg {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .custom-footer .copy {
    margin-top: 0;
  }

  .login_box {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .section-title::after {
    width: 140px;
  }

  .profile-card {
    padding: 20px;
    flex-direction: column;
  }

  .profile-info {
    margin-bottom: 20px;
  }

  .event-map iframe {
    height: 300px;
  }

  .breadcrumb {
    font-size: 16px;
  }

  h3.section-title {
    font-size: 24px;
  }
}

@media (max-width: 667px) {
  .login_box .tab-content {
    padding: 20px 20px;
    height: calc(100vh - 160px);
  }
}

@media (max-width: 575px) {
  .create_account {
    margin-bottom: 20px;
  }

  .step-header h6 {
    font-size: 16px;
    line-height: 24px;
  }

  .intro-text {
    font-size: 20px;
    line-height: 30px;
  }

  .section-title {
    font-size: 24px;
  }

  h3.section-title {
    font-size: 22px;
  }

  .step-description {
    font-size: 14px;
  }

  .step-card {
    padding: 12px;
  }

  .header-logo {
    margin: 0;
    padding: 0;
  }

  .header-logo img {
    width: 80px;
  }

  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }

  .navbar-toggler {
    padding: 4px 6px;
  }

  .hero-slider-checkout {
    padding: 30px 0;
  }

  .hero-content h1,
  h1 {
    font-size: 26px;
  }

  .hero-content p,
  .event-card h5 {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-carousel {
    width: 90%;
    margin: 0 auto;
  }

  .hero-slider-checkout .btn-gradient {
    font-size: 16px;
  }

  .hero-carousel .owl-dot span,
  .events-carousel .owl-dot span {
    width: 20px;
    height: 6px;
    margin: 3px;
  }
  .type-carousel .owl-dot span {
    width: 20px;
    height: 6px;
    margin: 3px;
  }

  .step-wrapper {
    gap: 10px;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .event-card,
  .info-card {
    padding: 15px;
  }

  .price-card {
    padding: 10px;
  }

  .quantity {
    gap: 5px;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
  }

  .price-label {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .info-card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .info-card-header p {
    margin: 0;
  }
}

/* Promo code box */
.promo-code-box {
  background: #f9fafc;
  border: 1px solid #e3e6eb;
  border-radius: 12px;
}

/* Input field styling */
.promo-input {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
}

/* Gradient button */
/* .btn-gradient {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
} */
.modal-date {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-date-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
}

.close {
  font-size: 24px;
  cursor: pointer;
  display: block;
  text-align: right;
}

.date-button {
  margin: 4px;
  padding: 6px 12px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 4px;
}
  /* background: linear-gradient(90deg, var(--pink), var(--purple)); */

.date-button.selected {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: white;
  /* border-color: #007bff; */
}
.event-tags{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.event-tags h6{
  border: 1px solid var(--pink) !important;
  border-radius: 20px;
  padding: 5px 10px 5px 10px;
  /* background: rgba(236, 57, 139, 0.1); */
}

@keyframes shadow-grow {
	0% {
		box-shadow: 0 0;
	}
	50% {
		box-shadow: 0 0 5px 20px rgba(255, 255, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes heart-grow {
	0% {
		transform: scale(3);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: scale(1);
	}
}

.heartBtn {
  position: absolute;
  top: 30px;   /* adjust vertical placement */
  right: 30px; /* adjust horizontal placement */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white; /* give it contrast on dark image */
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #ff3d60;
  cursor: pointer;
  transition: all 0.5s ease;
}
.heartBtn * {
  pointer-events: none;
}
.heartBtn:focus {
  outline: none;
}

.heartBtn:hover {
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

.heartBtn.liked {
  border-color: #ff3d60 !important;
  animation: shadow-grow 2s;
}

.heartBtn.liked svg {
  animation: heart-grow 0.7s;
}

.heartBtn.liked .heart {
  fill: #ff3d60 !important;
}

.heartBtn svg {
  width: 20px;
  height: auto;
  pointer-events: none;
}

.heartBtn svg .heart {
  fill: rgba(0, 0, 0, 0.15);
}

.heartBtn svg .shine {
  fill: #ffffff;
}

/* search page */
.filter-card {
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.filter-section {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.filter-header {
  cursor: pointer;
  font-size: 15px;
}

.filter-header:hover {
  color: #e63946;
}

.clear-btn {
  cursor: pointer;
  font-weight: 500;
}

.clear-btn:hover {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: white;
}

.elfplV{
    margin: 12px 0px 4px;
    word-break: break-word;
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.33;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    background: transparent;
}

.FnmcD{
    margin: 0px 0px 4px;
    word-break: break-word;
    color: rgb(51, 51, 51);
    font-family: Roboto;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.bsZIkT{
    margin: 0px 0px 4px;
    word-break: break-word;
    color: rgb(102, 102, 102);
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.43;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.filter-btn{
  border: 1px solid #d2d2d2 !important;
}
.filter-btn.active {
    background-color: #dc3545; /* Bootstrap danger color */
    color: white;
    border-color: #dc3545;
}
.bMjnfo {
    width: calc(100% - 50px);
    border: none;
    background: white;
    box-shadow: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
    color: rgb(153, 153, 153);
    outline: 0px;
    max-width: 500px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ljNOpS {
    width: 39px;
    height: 34px;
    padding: 10px 12px;
}
.kbbBtJ {
    display: flex;
    align-items: center;
    cursor: text;
    max-width: 549px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(210,210,210);
    border-radius: 10px;
    margin-bottom: 20px;
    height: 35px;
}




.heart {
  /* position: absolute; */
  top: 30px;   /* adjust vertical placement */
  right: 30px; /* adjust horizontal placement */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white; /* give it contrast on dark image */
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #ff3d60;
  cursor: pointer;
  /* transition: all 0.5s ease; */
}
.heart:focus {
  outline: none;
}

.heart:hover {
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

.heart.liked {
  border-color: #ff3d60 !important;
  animation: shadow-grow 2s;
}

.heart.liked svg {
  animation: heart-grow 0.7s;
}

.heart.liked .heart {
  fill: #ff3d60 !important;
}

.heart svg {
  width: 20px;
  height: auto;
}

.heart svg .heart {
  fill: rgba(0, 0, 0, 0.15);
}

.heart svg .shine {
  fill: #ffffff;
}


.gradient-text {
    background: linear-gradient(90deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.clearBtn{
    background: rgba(236, 57, 139, 0.1);
    border: 1px solid var(--pink) !important;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
}

.favourite-body {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.custom-dropdown {
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--pink);
}

.custom-item {
    margin-bottom: 6px;
    border-radius: 8px;
    padding: 10px 15px;
    background: linear-gradient(60deg, var(--pink), var(--purple));
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.custom-item:hover {
    background: linear-gradient(60deg, var(--purple), var(--pink));
    transform: scale(1.03);
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}



.heartbutton {
  position: absolute;
  top: 30px;   /* adjust vertical placement */
  right: 30px; /* adjust horizontal placement */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white; /* give it contrast on dark image */
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #ff3d60;
  cursor: pointer;
  transition: all 0.5s ease;
}
.heartbutton * {
  pointer-events: none;
}
.heartbutton:focus {
  outline: none;
}

.heartbutton:hover {
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

.heartbutton.liked {
  border-color: #ff3d60 !important;
  animation: shadow-grow 2s;
}

.heartbutton.liked svg {
  animation: heart-grow 0.7s;
}

.heartbutton.liked .heart {
  fill: #ff3d60 !important;
}

.heartbutton svg {
  width: 20px;
  height: auto;
  pointer-events: none;
}

.heartbutton svg .heart {
  fill: rgba(0, 0, 0, 0.15);
}

.heartbutton svg .shine {
  fill: #ffffff;
}


.event-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.event-list .event-card {
    width: 405px;
    height: 491px;
}

.event-card-details {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid var(--border1);
}
.event-type-link {
  transition: filter 0.2s ease, opacity 0.2s ease;
  opacity: 0.8;
}

.event-type-link:hover {
  opacity: 1;
}

.event-type-link.active {
  opacity: 1;
  filter: brightness(0.8); /* Makes the icon or text darker */
}

