body {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #171717;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #171717;
  margin-bottom: 0.5rem;
}

h1, .h1 {
  font-size: 2.25rem;
}

h2, .h2 {
  font-size: 1.875rem;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 1.25rem;
}

h5, .h5 {
  font-size: 1.125rem;
}

h6, .h6 {
  font-size: 1rem;
}

a {
  color: #6610f2;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #4709ac;
  text-decoration: none;
}

.text-primary {
  color: #6610f2 !important;
}

.text-accent {
  color: #e83e8c !important;
}

.text-indigo {
  color: #6610f2 !important;
}

.text-pink {
  color: #e83e8c !important;
}

.text-orange {
  color: #fd7e14 !important;
}

.text-warning {
  color: #fd7e14 !important;
}

.brand-text {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
}

.card-title {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.nav-link {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.navbar-nav .nav-link {
  font-weight: 400;
}

.sidebar .nav-link {
  font-weight: 400;
  font-size: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn:focus, .btn:focus-visible {
  outline: 2px solid #6610f2;
  outline-offset: 2px;
}
.btn:disabled, .btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn svg,
.btn i {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #510bc4;
  border-color: #4d0abb;
  color: #ffffff;
}
.btn-primary:active, .btn-primary.active {
  background-color: #4709ac;
  border-color: #41099e;
}

.btn-outline-primary {
  background-color: transparent;
  color: #6610f2;
  border-color: #6610f2;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: rgba(102, 16, 242, 0.08);
  color: #6610f2;
  border-color: #6610f2;
}
.btn-outline-primary:active {
  background-color: rgba(102, 16, 242, 0.12);
}

.btn-pink,
.btn-accent {
  background-color: #e83e8c;
  border-color: #e83e8c;
  color: #ffffff;
}
.btn-pink:hover, .btn-pink:focus,
.btn-accent:hover,
.btn-accent:focus {
  background-color: #d91a72;
  border-color: #d0196d;
  color: #ffffff;
}

.btn-outline-pink {
  background-color: transparent;
  color: #e83e8c;
  border-color: #e83e8c;
}
.btn-outline-pink:hover, .btn-outline-pink:focus {
  background-color: rgba(232, 62, 140, 0.08);
  color: #e83e8c;
}

.btn-secondary,
.btn-default {
  background-color: transparent;
  color: #171717;
  border-color: #e5e5e5;
}
.btn-secondary:hover, .btn-secondary:focus,
.btn-default:hover,
.btn-default:focus {
  background-color: #f5f5f5;
  border-color: #d4d4d4;
  color: #171717;
}
.btn-secondary:active,
.btn-default:active {
  background-color: #e5e5e5;
}

.btn-ghost {
  background-color: transparent;
  color: #171717;
  border-color: transparent;
}
.btn-ghost:hover, .btn-ghost:focus {
  background-color: #f5f5f5;
}
.btn-ghost:active {
  background-color: #e5e5e5;
}

.btn-warning {
  background-color: #fd7e14;
  border-color: #fd7e14;
  color: #ffffff;
}
.btn-warning:hover, .btn-warning:focus {
  background-color: #dc6502;
  border-color: #d26102;
  color: #ffffff;
}

.btn-outline-warning {
  background-color: transparent;
  color: #fd7e14;
  border-color: #fd7e14;
}
.btn-outline-warning:hover, .btn-outline-warning:focus {
  background-color: rgba(253, 126, 20, 0.08);
  color: #fd7e14;
}

.btn-success {
  background-color: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
}
.btn-success:hover, .btn-success:focus {
  background-color: #1ca24d;
  border-color: #1a9a49;
  color: #ffffff;
}

.btn-outline-success {
  background-color: transparent;
  color: #22c55e;
  border-color: #22c55e;
}
.btn-outline-success:hover, .btn-outline-success:focus {
  background-color: rgba(34, 197, 94, 0.08);
  color: #22c55e;
}

.btn-danger {
  background-color: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}
.btn-danger:hover, .btn-danger:focus {
  background-color: #ec1e1e;
  border-color: #eb1515;
  color: #ffffff;
}

.btn-outline-danger {
  background-color: transparent;
  color: #ef4444;
  border-color: #ef4444;
}
.btn-outline-danger:hover, .btn-outline-danger:focus {
  background-color: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.btn-info {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
}
.btn-info:hover, .btn-info:focus {
  background-color: #1469f4;
  border-color: #0b63f3;
  color: #ffffff;
}

.btn-outline-info {
  background-color: transparent;
  color: #3b82f6;
  border-color: #3b82f6;
}
.btn-outline-info:hover, .btn-outline-info:focus {
  background-color: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.btn-main {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
}
.btn-main:hover, .btn-main:focus {
  background-color: #510bc4;
  border-color: #4d0abb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(10, 10, 10, 0.1), 0 2px 4px -2px rgba(10, 10, 10, 0.1);
}
.btn-main:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
}
.btn-main.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-radius: 0.75rem 0 0 0.75rem;
}
.btn-group .btn:last-child {
  border-radius: 0 0.75rem 0.75rem 0;
}
.btn-group .btn:not(:first-child) {
  margin-left: -1px;
}

.card {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
  overflow: hidden;
  transition: all 0.2s ease;
}
.card.card-widget, .card.card--interactive {
  cursor: pointer;
}
.card.card-widget:hover, .card.card--interactive:hover {
  border-color: #d4d4d4;
  box-shadow: 0 10px 15px -3px rgba(10, 10, 10, 0.1), 0 4px 6px -4px rgba(10, 10, 10, 0.1);
  transform: translateY(-2px);
}
.card.card-widget:active, .card.card--interactive:active {
  transform: translateY(0);
}

.card-header {
  padding: 1.25rem 1.25rem;
  background-color: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}
.card-header:first-child {
  border-radius: calc(1rem - 1px) calc(1rem - 1px) 0 0;
}
.card-header .card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin: 0;
}

.card-body {
  padding: 1.25rem 1.25rem;
}

.card-footer {
  padding: 1.25rem 1.25rem;
  background-color: #fafafa;
  border-top: 1px solid #e5e5e5;
}
.card-footer:last-child {
  border-radius: 0 0 calc(1rem - 1px) calc(1rem - 1px);
}

.card-outline {
  border-top-width: 3px;
}
.card-outline.card-primary {
  border-top-color: #6610f2;
}
.card-outline.card-success {
  border-top-color: #22c55e;
}
.card-outline.card-warning {
  border-top-color: #fd7e14;
}
.card-outline.card-danger {
  border-top-color: #ef4444;
}
.card-outline.card-info {
  border-top-color: #3b82f6;
}

.widget-event {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.15s ease;
}
.widget-event:hover {
  border-color: #d4d4d4;
  box-shadow: 0 10px 15px -3px rgba(10, 10, 10, 0.1), 0 4px 6px -4px rgba(10, 10, 10, 0.1);
  transform: translateY(-2px);
}
.widget-event:hover .widget-user-header img {
  transform: scale(1.03);
}

.widget-user-header {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.widget-user-header img,
.widget-user-header .widget-user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.price-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #ffffff;
  color: #171717;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
}

.event-category {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e5e5;
}
.event-category.category-musica {
  background-color: rgba(102, 16, 242, 0.1);
  color: #6610f2;
}
.event-category.category-teatro {
  background-color: rgba(232, 62, 140, 0.1);
  color: #e83e8c;
}
.event-category.category-danza {
  background-color: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
}
.event-category.category-standup {
  background-color: rgba(253, 126, 20, 0.1);
  color: #fd7e14;
}
.event-category.category-mma {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.event-category.category-fiesta {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.event-category.category-convencion {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.event-category.category-cine_video {
  background-color: rgba(64, 64, 64, 0.1);
  color: #404040;
}
.event-category.category-var {
  background-color: #f5f5f5;
  color: #525252;
}

.event-info {
  padding: 1.25rem 1.25rem;
}
.event-info .event-title {
  font-size: 1rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.description-block {
  text-align: center;
}
.description-block .mes {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6610f2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.description-block .dia {
  font-size: 1.125rem;
  font-weight: 700;
  color: #6610f2;
  line-height: 1;
  display: block;
  margin: 0.125rem 0;
}
.description-block .ano {
  font-size: 0.75rem;
  color: #525252;
  font-weight: 400;
}
.description-block .description-header {
  font-size: 0.75rem;
  color: #525252;
  margin: 0;
}
.description-block .description-text {
  font-size: 0.875rem;
  color: #171717;
}
.description-block .description-longtext {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(102, 16, 242, 0.1);
  border-radius: 0.5rem;
  float: left;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.card-solid {
  border: none;
}
.card-solid .card-header {
  background-color: transparent;
  border-bottom: none;
}

.content-card-inner {
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 0;
}
.content-card-inner .card-body {
  padding: 1.5rem;
}

.search-container {
  padding: 1rem 1.5rem;
  background-color: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}
.search-container .input-group {
  max-width: 600px;
  margin: 0 auto;
}
.search-container .form-control {
  border-radius: 0.75rem 0 0 0.75rem;
  border: 1px solid #e5e5e5;
  padding: 0.75rem 1rem;
}
.search-container .form-control:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 3px rgba(102, 16, 242, 0.1);
}
.search-container .input-group-append .btn {
  border-radius: 0 0.75rem 0.75rem 0;
  border: 1px solid #e5e5e5;
  border-left: none;
  background-color: #ffffff;
}
.search-container .input-group-append .btn:hover {
  background-color: #f5f5f5;
}

.categories-container {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}
.categories-container .btn {
  margin: 0.25rem;
}

.card-stat,
.small-box {
  border-radius: 1rem;
  padding: 1.25rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}
.card-stat .card-stat__icon,
.card-stat .icon,
.small-box .card-stat__icon,
.small-box .icon {
  width: 48px;
  height: 48px;
  background-color: rgba(102, 16, 242, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #6610f2;
}
.card-stat .card-stat__value,
.card-stat .inner h3,
.small-box .card-stat__value,
.small-box .inner h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.25rem;
}
.card-stat .card-stat__label,
.card-stat .inner p,
.small-box .card-stat__label,
.small-box .inner p {
  font-size: 0.875rem;
  color: #525252;
  margin: 0;
}
.card-stat .card-stat__trend,
.small-box .card-stat__trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.card-stat .card-stat__trend.card-stat__trend--up,
.small-box .card-stat__trend.card-stat__trend--up {
  color: #22c55e;
}
.card-stat .card-stat__trend.card-stat__trend--down,
.small-box .card-stat__trend.card-stat__trend--down {
  color: #ef4444;
}

.card-stat__icon--primary,
.bg-primary .icon {
  background-color: rgba(102, 16, 242, 0.1);
  color: #6610f2;
}

.card-stat__icon--success,
.bg-success .icon {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.card-stat__icon--warning,
.bg-warning .icon {
  background-color: rgba(253, 126, 20, 0.1);
  color: #fd7e14;
}

.card-stat__icon--info,
.bg-info .icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.card-stat__icon--danger,
.bg-danger .icon {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

a.wrapper-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.wrapper-link:hover {
  text-decoration: none;
  color: inherit;
}

.form-control {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 0.5rem;
  border-color: #d4d4d4;
  padding: 0.5rem 0.75rem;
  transition: all 0.15s ease;
}
.form-control:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 0.2rem rgba(102, 16, 242, 0.15);
}
.form-control::placeholder {
  color: #737373;
}

.input-group .input-group-text {
  background-color: #f5f5f5;
  border-color: #d4d4d4;
  color: #525252;
}
.input-group .form-control:focus + .input-group-append .input-group-text,
.input-group .form-control:focus ~ .input-group-append .input-group-text {
  border-color: #6610f2;
}

.icheck-primary > input:checked + label::before,
.icheck-primary > input:checked + input[type=hidden] + label::before {
  background-color: #6610f2;
  border-color: #6610f2;
}

.icheck-pink > input:checked + label::before,
.icheck-pink > input:checked + input[type=hidden] + label::before {
  background-color: #e83e8c;
  border-color: #e83e8c;
}

.form-control.custom-select,
.custom-select {
  border-radius: 0.5rem;
  border-color: #d4d4d4;
}
.form-control.custom-select:focus,
.custom-select:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 0.2rem rgba(102, 16, 242, 0.15);
}

label {
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.form-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: #404040;
}

.is-valid .form-control, .is-valid.form-control {
  border-color: #22c55e;
}
.is-valid .form-control:focus, .is-valid.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.15);
}

.is-invalid .form-control, .is-invalid.form-control {
  border-color: #ef4444;
}
.is-invalid .form-control:focus, .is-invalid.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.15);
}

.alert {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 0.5rem;
  border: none;
  padding: 0.75rem 1rem;
}
.alert.alert-warning {
  background-color: rgba(253, 126, 20, 0.15);
  color: #c35a02;
  border-left: 4px solid #fd7e14;
}
.alert.alert-info {
  background-color: rgba(59, 130, 246, 0.15);
  color: #0a59da;
  border-left: 4px solid #3b82f6;
}
.alert.alert-primary {
  background-color: rgba(102, 16, 242, 0.15);
  color: #510bc4;
  border-left: 4px solid #6610f2;
}
.alert.alert-success {
  background-color: rgba(34, 197, 94, 0.15);
  color: #17843f;
  border-left: 4px solid #22c55e;
}
.alert.alert-danger {
  background-color: rgba(239, 68, 68, 0.15);
  color: #eb1515;
  border-left: 4px solid #ef4444;
}

.badge {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35em 0.65em;
  border-radius: 0.375rem;
}
.badge.badge-primary {
  background-color: #6610f2;
}
.badge.badge-pink {
  background-color: #e83e8c;
}
.badge.badge-warning {
  background-color: #fd7e14;
  color: #ffffff;
}

.badge-cat-teatro {
  background-color: #3b82f6;
  color: #ffffff;
}

.badge-cat-musica {
  background-color: #6f42c1;
  color: #ffffff;
}

.badge-cat-danza {
  background-color: #fd7e14;
  color: #ffffff;
}

.badge-cat-standup {
  background-color: #22c55e;
  color: #ffffff;
}

.badge-cat-convencion {
  background-color: #6610f2;
  color: #ffffff;
}

.badge-cat-fiesta {
  background-color: #e83e8c;
  color: #ffffff;
}

.badge-cat-mma {
  background-color: #fd7e14;
  color: #ffffff;
}

.badge-cat-generico {
  background-color: #e5e5e5;
  color: #404040;
  border: 1px solid #a3a3a3;
}

.btn-cat-teatro {
  color: #3b82f6;
  border-color: #3b82f6;
}
.btn-cat-teatro:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-cat-musica {
  color: #6f42c1;
  border-color: #6f42c1;
}
.btn-cat-musica:hover {
  background-color: #6f42c1;
  color: #ffffff;
}

.btn-cat-danza {
  color: #fd7e14;
  border-color: #fd7e14;
}
.btn-cat-danza:hover {
  background-color: #fd7e14;
  color: #ffffff;
}

.btn-cat-standup {
  color: #22c55e;
  border-color: #22c55e;
}
.btn-cat-standup:hover {
  background-color: #22c55e;
  color: #ffffff;
}

.btn-cat-convencion {
  color: #6610f2;
  border-color: #6610f2;
}
.btn-cat-convencion:hover {
  background-color: #6610f2;
  color: #ffffff;
}

.btn-cat-fiesta {
  color: #e83e8c;
  border-color: #e83e8c;
}
.btn-cat-fiesta:hover {
  background-color: #e83e8c;
  color: #ffffff;
}

.btn-cat-mma {
  color: #fd7e14;
  border-color: #fd7e14;
}
.btn-cat-mma:hover {
  background-color: #fd7e14;
  color: #ffffff;
}

.btn-cat-generico {
  color: #525252;
  border-color: #a3a3a3;
}
.btn-cat-generico:hover {
  background-color: #e5e5e5;
  color: #262626;
}

.main-header {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #262626;
  min-height: 64px;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.main-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header.navbar-white, .main-header.navbar-light {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom-color: #e5e5e5;
}
.main-header.navbar-white .navbar-brand, .main-header.navbar-light .navbar-brand {
  color: #171717;
}
.main-header.navbar-white .nav-link, .main-header.navbar-light .nav-link {
  color: #525252;
}
.main-header.navbar-white .nav-link:hover, .main-header.navbar-light .nav-link:hover {
  color: #171717;
}
.main-header.navbar-dark {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom-color: #262626;
}
.main-header.navbar-dark .navbar-brand {
  color: #ffffff;
}
.main-header.navbar-dark .nav-link,
.main-header.navbar-dark .navbar-nav .nav-link {
  color: #a3a3a3;
}
.main-header.navbar-dark .nav-link:hover, .main-header.navbar-dark .nav-link.active,
.main-header.navbar-dark .navbar-nav .nav-link:hover,
.main-header.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}
.main-header .container,
.main-header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .main-header .container,
  .main-header .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.layout-navbar-fixed .main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 0;
}
.navbar-brand .brand-image {
  height: 32px;
  width: auto;
  max-height: 33px;
}
.navbar-brand .brand-text {
  font-weight: 700;
}
.navbar-brand:hover {
  color: #ffffff;
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
.navbar-nav .nav-link {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a3a3a3;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.15s ease;
  position: relative;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #ffffff;
}
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #6610f2;
  border-radius: 9999px;
}

@media (min-width: 1024px) {
  .navbar-nav {
    gap: 2rem;
  }
}
.navbar-nav .btn {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
}
.navbar-nav .btn-outline-info {
  color: #6610f2;
  border-color: #6610f2;
}
.navbar-nav .btn-outline-info:hover {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
}

.navbar-nav.ml-auto,
.navbar-nav.navbar-no-expand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .form-control-navbar,
.navbar .form-control {
  border-radius: 0.75rem;
  border: 1px solid #d4d4d4;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
.navbar .form-control-navbar:focus,
.navbar .form-control:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 3px rgba(102, 16, 242, 0.1);
  outline: none;
}

.navbar-dark .form-control-navbar {
  background-color: #262626;
  border-color: #404040;
  color: #ffffff;
}
.navbar-dark .form-control-navbar::placeholder {
  color: #a3a3a3;
}
.navbar-dark .form-control-navbar:focus {
  background-color: #262626;
  border-color: #6610f2;
}

.navbar-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 4px;
  position: absolute;
  right: 5px;
  top: 9px;
  border-radius: 9999px;
}

.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
}
.navbar-toggler:focus {
  outline: none;
}
@media (min-width: 1024px) {
  .navbar-toggler {
    display: none;
  }
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

.navbar .dropdown-menu {
  border-radius: 0.75rem;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 15px -3px rgba(10, 10, 10, 0.1), 0 4px 6px -4px rgba(10, 10, 10, 0.1);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.navbar .dropdown-menu .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
}
.navbar .dropdown-menu .dropdown-item.active, .navbar .dropdown-menu .dropdown-item:active {
  background-color: #6610f2;
  color: #ffffff;
}
.navbar .dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
  border-color: #e5e5e5;
}

.main-footer {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  background-color: #171717 !important;
  color: #a3a3a3 !important;
  border-top: none !important;
  padding: 2rem 1.5rem !important;
}
.main-footer a {
  color: #a3a3a3 !important;
  text-decoration: none;
  transition: all 0.15s ease;
}
.main-footer a:hover {
  color: #ffffff !important;
}
.main-footer h5 {
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.main-footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.main-footer ul li {
  margin-bottom: 0.5rem;
}
.main-footer p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #a3a3a3;
}
.main-footer .row {
  margin-bottom: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.main-footer .col ul, .main-footer .col.links ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.main-footer .float-right,
.main-footer > strong,
.main-footer > span {
  color: #737373;
}

.main-footer.text-xs {
  font-size: 0.875rem;
  padding: 1rem;
}
.main-footer.text-xs .row {
  margin-bottom: 1rem;
}

.main-footer.footer-light {
  background-color: #ffffff;
  color: #525252;
  border-top: 1px solid #e5e5e5;
}
.main-footer.footer-light a {
  color: #525252;
}
.main-footer.footer-light a:hover {
  color: #6610f2;
}
.main-footer.footer-light h5 {
  color: #171717;
}

.main-footer .float-right {
  color: #737373;
  font-size: 0.875rem;
}

.main-footer > span {
  color: #737373;
  font-size: 0.75rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__description {
  font-size: 0.875rem;
  line-height: 1.625;
  color: #a3a3a3;
}

.footer__column-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: none;
  transition: all 0.15s ease;
}
.footer__links a:hover {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #262626;
}
.footer__bottom:only-child {
  padding-top: 0;
  border-top: none;
}

.footer__copyright {
  font-size: 0.875rem;
  color: #737373;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3a3a3;
  background-color: #262626;
  border-radius: 9999px;
  transition: all 0.15s ease;
}
.footer__social-link:hover {
  color: #ffffff;
  background-color: #404040;
}

.footer--simple .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer--simple .footer__links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.content-wrapper {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #fafafa;
}
.layout-top-nav .content-wrapper {
  margin-left: 0;
}

.content-header {
  padding: 1.5rem;
  padding-bottom: 0;
}
.content-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.content-header .breadcrumb {
  font-size: 0.875rem;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}
.content-header .breadcrumb a {
  color: #525252;
}
.content-header .breadcrumb a:hover {
  color: #6610f2;
}
.content-header .breadcrumb .breadcrumb-item.active {
  color: #737373;
}

.content {
  padding: 1.5rem;
}
.content > .container,
.content > .container-fluid {
  padding: 0;
}

.content-card-inner {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
  padding: 0;
  margin-bottom: 1rem;
}

.table {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.table th {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #525252;
  border-bottom-width: 2px;
}
.table td {
  vertical-align: middle;
}

.table-hover tbody tr:hover {
  background-color: rgba(102, 16, 242, 0.05);
}

.dataTables_wrapper {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.dataTables_wrapper .dataTables_filter input {
  border-radius: 0.5rem;
  border: 1px solid #d4d4d4;
  padding: 0.375rem 0.75rem;
}
.dataTables_wrapper .dataTables_filter input:focus {
  border-color: #6610f2;
  outline: none;
}
.dataTables_wrapper .dataTables_length select {
  border-radius: 0.5rem;
  border: 1px solid #d4d4d4;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 0.5rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #6610f2 !important;
  border-color: #6610f2 !important;
  color: #ffffff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #f5f5f5 !important;
  border-color: #d4d4d4 !important;
}

.content-header.hero {
  background: linear-gradient(135deg, #6610f2 0%, #4709ac 100%);
  color: #ffffff;
  text-align: center;
  padding: 4rem 2rem;
  padding-top: 5rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
@media (min-width: 768px) {
  .content-header.hero {
    padding: 5rem 3rem;
    padding-top: 6rem;
  }
}
.content-header.hero > div:first-child {
  width: 100%;
  display: flex;
  justify-content: center;
}
.content-header.hero #auca-logo-full {
  height: 80px;
  max-height: none;
  width: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
  display: block;
}
@media (min-width: 768px) {
  .content-header.hero #auca-logo-full {
    height: 100px;
  }
}
.content-header.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  max-width: 700px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .content-header.hero h1 {
    font-size: 2.75rem;
  }
}
.content-header.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 500px;
}
.content-header.hero .btn-main {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #ffffff;
  color: #6610f2;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(10, 10, 10, 0.1), 0 4px 6px -4px rgba(10, 10, 10, 0.1);
}
.content-header.hero .btn-main:hover {
  background-color: #f5f5f5;
  color: #6610f2;
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(10, 10, 10, 0.1), 0 8px 10px -6px rgba(10, 10, 10, 0.1);
}

.features {
  padding: 4rem 1rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .features {
    padding: 5rem 2rem;
  }
}
.features .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.features .col-md-3 {
  text-align: center;
  padding: 1.5rem;
  max-width: 280px;
}
.features .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #6610f2;
}
.features .feature-icon svg,
.features .feature-icon img {
  width: 100%;
  height: 100%;
}
.features h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.75rem;
}
.features p {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.625;
}

.feature-icon {
  fill: #6610f2;
}

#signup,
.cta-section {
  background-color: rgba(34, 197, 94, 0.1);
  padding: 3rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  #signup,
  .cta-section {
    padding: 4rem 2rem;
  }
}
#signup h2,
.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.75rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  #signup h2,
  .cta-section h2 {
    font-size: 1.875rem;
  }
}
#signup p,
.cta-section p {
  font-size: 1rem;
  color: #525252;
  margin-bottom: 1.5rem;
}
#signup .btn-main,
.cta-section .btn-main {
  box-shadow: 0 4px 6px -1px rgba(10, 10, 10, 0.1), 0 2px 4px -2px rgba(10, 10, 10, 0.1);
}

.contact-page .content-wrapper {
  background-color: #fafafa;
}
.contact-page .content-header.hero {
  min-height: auto;
  padding: 3rem 1.5rem;
}

.carousel {
  position: relative;
  overflow: hidden;
}
.carousel .carousel-inner {
  position: relative;
  width: 100%;
}
.carousel .carousel-item {
  position: relative;
  display: none;
  width: 100%;
}
.carousel .carousel-item.active {
  display: block;
}
.carousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 21/9;
}
@media (max-width: 767px) {
  .carousel .carousel-item img {
    aspect-ratio: 16/9;
  }
}
.carousel .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 100%);
  text-align: left;
}
@media (min-width: 768px) {
  .carousel .carousel-caption {
    padding: 3rem;
  }
}
.carousel .carousel-caption h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .carousel .carousel-caption h5 {
    font-size: 1.875rem;
  }
}
.carousel .carousel-caption p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171717;
  opacity: 0.8;
  transition: all 0.15s ease;
  z-index: 10;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: #ffffff;
}

.carousel-control-prev {
  left: 1rem;
}

.carousel-control-next {
  right: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 10;
}
.carousel-indicators li,
.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}
.carousel-indicators li.active,
.carousel-indicators button.active {
  background-color: #ffffff;
  width: 24px;
}

.home-page .content-wrapper,
.contact-page .content-wrapper {
  min-height: calc(100vh - 64px - 100px);
}

.home-page .content-wrapper {
  background-color: #ffffff;
}

#carousel-home {
  background-color: #171717;
  border-radius: 0;
  overflow: hidden;
}
#carousel-home .carousel-item img {
  opacity: 0.9;
}
#carousel-home .carousel-item.item-1 a {
  filter: grayscale(0.1) sepia(0.05);
}
#carousel-home .carousel-item.item-2 a {
  filter: grayscale(0.1) sepia(0.05) hue-rotate(72deg);
}
#carousel-home .carousel-item.item-3 a {
  filter: grayscale(0.1) sepia(0.05) hue-rotate(144deg);
}
#carousel-home .carousel-item.item-4 a {
  filter: grayscale(0.1) sepia(0.05) hue-rotate(216deg);
}
#carousel-home .carousel-item.item-5 a {
  filter: grayscale(0.1) sepia(0.05) hue-rotate(288deg);
}
#carousel-home .carousel-caption {
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.7));
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  text-align: left;
}
#carousel-home .carousel-caption h5 {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
#carousel-home .carousel-caption p {
  font-size: 0.875rem;
  margin-bottom: 0;
  opacity: 0.9;
}
#carousel-home .carousel-control-prev,
#carousel-home .carousel-control-next {
  width: 10%;
  opacity: 0.7;
}
#carousel-home .carousel-control-prev:hover,
#carousel-home .carousel-control-next:hover {
  opacity: 1;
}
#carousel-home .carousel-indicators {
  margin-bottom: 0.5rem;
}
#carousel-home .carousel-indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
}
#carousel-home .carousel-indicators li.active {
  background-color: #ffffff;
}

.search-container {
  margin-top: 1rem;
  padding: 0 1rem;
}
.search-container .form-control {
  border-radius: 0.5rem 0 0 0.5rem;
}
.search-container .btn {
  border-radius: 0 0.5rem 0.5rem 0;
}

.categories-container {
  padding: 0.5rem 1rem 1rem;
}
.categories-container .btn {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
}

.widget-event,
.card.widget-event {
  height: 100%;
  min-height: 400px;
  max-height: 490px;
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.15s ease;
}
.widget-event:hover,
.card.widget-event:hover {
  box-shadow: 0 4px 6px -1px rgba(10, 10, 10, 0.1), 0 2px 4px -2px rgba(10, 10, 10, 0.1);
  transform: translateY(-2px);
}

.widget-user-header.event-cover,
.event-cover {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.price-pill {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: rgba(23, 23, 23, 0.85);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.event-info,
.card-footer.event-info {
  background-color: #ffffff;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.event-info .event-date,
.card-footer.event-info .event-date {
  text-align: center;
  min-width: 50px;
}
.event-info .event-date .event-month,
.card-footer.event-info .event-date .event-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ef4444;
  letter-spacing: 0.05em;
}
.event-info .event-date .event-day,
.card-footer.event-info .event-date .event-day {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #171717;
}
.event-info .event-date .event-year,
.card-footer.event-info .event-date .event-year {
  font-size: 0.7rem;
  color: #737373;
}
.event-info .event-details,
.card-footer.event-info .event-details {
  flex: 1;
  min-width: 0;
}
.event-info .event-details h5, .event-info .event-details .event-title,
.card-footer.event-info .event-details h5,
.card-footer.event-info .event-details .event-title {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #171717;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-info .event-details p, .event-info .event-details .event-venue,
.card-footer.event-info .event-details p,
.card-footer.event-info .event-details .event-venue {
  font-size: 0.875rem;
  color: #525252;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5rem;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
}

.page-nav {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
}
.page-nav .pagination {
  margin-bottom: 0;
}
.page-nav .pagination .page-link {
  color: #6610f2;
  border-color: #d4d4d4;
}
.page-nav .pagination .page-link:hover {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
}
.page-nav .pagination .page-item.active .page-link {
  background-color: #6610f2;
  border-color: #6610f2;
}

.search-results-page .search-highlight {
  background-color: rgba(253, 126, 20, 0.3);
  padding: 0.1em 0.2em;
  border-radius: 2px;
  font-weight: 700;
}

.event-page .content-wrapper {
  background-color: #ffffff;
}

.header-image {
  height: 15rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (min-width: 768px) {
  .header-image {
    height: 20rem;
  }
}
.header-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.5));
}

.event-detail-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(10, 10, 10, 0.1), 0 2px 4px -2px rgba(10, 10, 10, 0.1);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.event-detail-card .card-body {
  padding: 1.5rem;
}

.event-title-main {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #171717;
  margin-bottom: 0.5rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #525252;
}
.event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.event-meta .meta-item i {
  color: #6610f2;
  width: 1rem;
}

.event-description {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.625;
  color: #404040;
}
.event-description h3, .event-description h4, .event-description h5 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.event-description p {
  margin-bottom: 1rem;
}
.event-description ul, .event-description ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.event-description ul li, .event-description ol li {
  margin-bottom: 0.5rem;
}

.ticket-selector {
  background-color: #f5f5f5;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.ticket-selector h4 {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #171717;
}

.ticket-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  transition: all 0.15s ease;
}
.ticket-option:hover {
  border-color: #6610f2;
}
.ticket-option.selected {
  border-color: #6610f2;
  background-color: rgba(102, 16, 242, 0.05);
}
.ticket-option .ticket-info .ticket-name {
  font-weight: 700;
  color: #171717;
}
.ticket-option .ticket-info .ticket-description {
  font-size: 0.875rem;
  color: #525252;
}
.ticket-option .ticket-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: #6610f2;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quantity-selector .btn-quantity {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: #e5e5e5;
  color: #404040;
  border: none;
}
.quantity-selector .btn-quantity:hover {
  background-color: #d4d4d4;
}
.quantity-selector .quantity-value {
  width: 40px;
  text-align: center;
  font-weight: 700;
}

.btn-buy {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  width: 100%;
  border-radius: 0.5rem;
}
.btn-buy:hover {
  background-color: #550bce;
  border-color: #510bc4;
  color: #ffffff;
}
.btn-buy:disabled {
  background-color: #a3a3a3;
  border-color: #a3a3a3;
}

.event-sidebar .info-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.event-sidebar .info-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.event-sidebar .info-card p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.event-sidebar .info-card p i {
  width: 1.25rem;
  color: #737373;
}

.static-page .content-wrapper,
.contact-page .content-wrapper {
  background-color: #ffffff;
}
.static-page .content,
.contact-page .content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.page-header h1 {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #171717;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: #525252;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.page-content {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.625;
  color: #404040;
}
.page-content h2, .page-content h3, .page-content h4 {
  color: #171717;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.page-content h2 {
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.page-content h3 {
  font-size: 1.25rem;
}
.page-content p {
  margin-bottom: 1rem;
}
.page-content ul, .page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content ul li, .page-content ol li {
  margin-bottom: 0.5rem;
}
.page-content a {
  color: #6610f2;
}
.page-content a:hover {
  color: #510bc4;
  text-decoration: underline;
}
.page-content blockquote {
  border-left: 4px solid #6610f2;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #525252;
  font-style: italic;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form .form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  color: #404040;
  margin-bottom: 0.5rem;
}
.contact-form .form-group .form-control {
  border-radius: 0.5rem;
}
.contact-form .form-group .form-control:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 0.2rem rgba(102, 16, 242, 0.15);
}
.contact-form .form-group textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.contact-form .btn-submit {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 700;
}
.contact-form .btn-submit:hover {
  background-color: #550bce;
  border-color: #510bc4;
}

.contact-info {
  background-color: #f5f5f5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 2rem;
}
.contact-info h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-info .info-item i {
  color: #6610f2;
  width: 1.25rem;
  margin-top: 0.25rem;
}
.contact-info .info-item span {
  color: #404040;
}
.contact-info .info-item a {
  color: #6610f2;
}
.contact-info .info-item a:hover {
  text-decoration: underline;
}

.terms-page .page-content h2 {
  counter-increment: section;
}
.terms-page .page-content h2::before {
  content: counter(section) ". ";
}
.terms-page .toc {
  background-color: #f5f5f5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.terms-page .toc h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.terms-page .toc ol {
  margin-bottom: 0;
  padding-left: 1.25rem;
}
.terms-page .toc ol li {
  margin-bottom: 0.5rem;
}
.terms-page .toc ol li a {
  color: #404040;
}
.terms-page .toc ol li a:hover {
  color: #6610f2;
}

.about-page .team-section {
  margin-top: 3rem;
}
.about-page .team-section h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.about-page .team-member {
  text-align: center;
  margin-bottom: 2rem;
}
.about-page .team-member .member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #e5e5e5;
}
.about-page .team-member .member-name {
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.25rem;
}
.about-page .team-member .member-role {
  font-size: 0.875rem;
  color: #525252;
}

:root {
  --indigo: #6610f2;
  --pink: #e83e8c;
  --orange: #fd7e14;
  --purple: #6f42c1;
  --primary: #6610f2;
  --accent: #e83e8c;
  --warning: #fd7e14;
  --font-family: Google Sans, Google Sans Flex, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

body {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wrapper,
.content-wrapper,
.main-header,
.main-footer {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
