html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    outline: none;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--txt);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.3px;
    font-family: 'Outfit', sans-serif;
}

a,
a:hover,
a:focus,
button,
button:hover {
    color: var(--pxa-primary);
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

svg,
svg path {
    -webkit-transition: var(--pxa-primary);
    -moz-transition: var(--pxa-primary);
    -ms-transition: var(--pxa-primary);
    -o-transition: var(--pxa-primary);
    transition: var(--pxa-primary);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

img {
    max-width: 100%;
}

.d-none {
    display: none !important;
}

ul,
p {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    line-height: 1.4;
}

iframe {
    width: 100%;
    border: none;
}

label.error {
    margin: 10px 0 0;
    font-weight: 500;
    color: var(--pxa-danger) !important;
}

input.error {
    border-color: var(--pxa-danger) !important;
}

span.error {
    color: var(--pxa-danger) !important;
}

textarea.error {
    border-color: var(--pxa-danger) !important;
}

select.error {
    border-color: var(--pxa-danger) !important;
}

label.error,
span.error {
    color: var(--pxa-danger) !important;
}


*::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

*::-webkit-scrollbar-track {
    background-color: #f5f7f9;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--pxa-primary);
    border-radius: 10px;
}

/*=============================
Notification Message  Style
=============================*/

.pxn-notification {
    position: fixed;
    right: -406px;
    bottom: 25px;
    padding: 15px 20px 15px 25px;
    overflow: hidden;
    max-width: 302px;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    background-color: var(--pxa-white-color);
    z-index: 8;
}

.pxn-notification-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.pxn-notification-icon {
    width: 40px;
}

.pxn-notification.success .pxn-notification-msg h4 {
    color: var(--pxa-success);
}

.pxn-notification.error .pxn-notification-msg h4 {
    color: var(--pxa-danger);
}

.pxn-notification.success {
    color: var(--pxa-success);
    box-shadow: 0px 24px 30px rgb(108 163 41 / 15%);
}

.pxn-notification.error {
    color: var(--pxa-danger);
    box-shadow: 0px 24px 30px rgb(232 26 70 / 15%);
}

.pxn-notification-msg h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: left;
}

.pxn-notification-msg {
    margin-bottom: 5px;
    width: calc(100% - 40px);
}

.pxn-notification-msg p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: left;
    color: var(--pxa-text-color);
    padding-top: 2px;
}

.pxn-notification-close {
    position: absolute;
    right: 25px;
    top: 10px;
    background: #0000;
}

.pxn-notification-close a {
    font-size: 15px;
    color: #737ca0;
    line-height: 1.4;
}

.pxn-notification.success,
.pxn-notification.error {
    right: 25px;
}


.pxa_oops_section {
    margin-top: 50px;
    text-align: center;
    min-height: 100vh;
  
  }
  .pxa_oops_section .pxa_oops_inner {
    padding: 100px;
    border-radius: 5px;
    background-color: #f8f9fa;
  
  }
  .pxa_oops_section .pxa_oops_inner h3 {
      font-size: 32px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--pxa-title-color);
      margin: 0;
  }
  .pxa_oops_section .pxa_oops_inner p {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.4;
      color: var(--pxa-text-color);
      margin: 15px 0 30px;
  }
  .pxa_oops_inner a {
      background-color:var(--pxa-primary);
      color:var(--pxa-white-color);
      font-size: 18px;
      display: inline-block;
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 5px;
      animation-name: zoomBtn;
      animation-duration: 0.5s;
      animation-timing-function: ease-out;
      animation-delay: 0;
      animation-direction: alternate;
      animation-iteration-count: infinite;
      animation-fill-mode: none;
      animation-play-state: running;
      transition: all 0.3s;
      text-decoration: none;
  }
  .pxa_oops_inner a:hover {
      color: #ffffff;
  }
  @keyframes zoomBtn {
      0% {
          transform: scale(1);
          background-color: var(--pxa-primary);
      }
      50% {
      }
      100% {
          transform: scale(1.1);
      }
  }
  @media only screen and (max-width: 991px) {
      .pxa_oops_section .pxa_oops_inner {
          padding: 30px 15px;
      }
      .pxa_oops_section .pxa_oops_inner h3 {
          font-size: 24px;
      }
      .pxa_oops_section .pxa_oops_inner p {
          font-size: 16px;
          margin: 10px 0 20px;
      }
      .pxa_oops_inner a {
          font-size: 15px;
      }
  }

.pxa_events_section {
    padding: 80px 0;
}

.pxa_event_card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pxa_event_card:hover {
    transform: translateY(-5px);
}

.event_image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event_type_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.event_type_badge.paid {
    background: var(--pxa-primary);
}

.event_type_badge.free {
    background: var(--pxa-success);
}

.event_content {
    padding: 20px;
}

.event_content h3 {
    margin-bottom: 15px;
    color: var(--pxa-title-color);
    font-size: 20px;
}

.event_details {
    margin-bottom: 15px;
}

.event_details .detail {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--pxa-text-color);
}

.event_details .detail i {
    margin-right: 10px;
    color: var(--pxa-primary);
}

.event_description {
    margin-bottom: 20px;
    color: var(--pxa-text-color);
    line-height: 1.5;
}

.pxa_pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Hero Section */
.pxa_hero_section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.6));
    z-index: 1;
}

.pxa_hero_section .container {
    z-index: 2;
}

.pxa_hero_content {
    color: #fff;
}

.pxa_hero_content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pxa_hero_content p {
    font-size: 20px;
    opacity: 0.9;
}

/* Filter Section */
.pxa_filter_section {
    margin-bottom: 40px;
}

.pxa_filter_wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.pxa_search_box input {
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    padding: 12px 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.pxa_search_box input:focus {
    border-color: var(--pxa-primary);
    box-shadow: 0 0 0 3px rgba(var(--pxa-primary-rgb), 0.1);
}

.pxa_filter_buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.pxa_filter_btn {
    padding: 8px 20px;
    border: 2px solid var(--pxa-primary);
    border-radius: 20px;
    background: transparent;
    color: var(--pxa-primary);
    transition: all 0.3s ease;
}

.pxa_filter_btn:hover,
.pxa_filter_btn.active {
    background: var(--pxa-primary);
    color: #fff;
}

/* Events Cards */
.pxa_event_card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pxa_event_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.event_image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pxa_event_card:hover .event_image img {
    transform: scale(1.1);
}

.video-play-btn {
    display: none;
}

.event_type_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event_type_badge.paid {
    background: var(--pxa-primary);
}

.event_type_badge.free {
    background: var(--pxa-success);
}

.event_content {
    padding: 25px;
}

.event_content h3 {
    margin-bottom: 15px;
    color: var(--pxa-title-color);
    font-size: 22px;
    font-weight: 600;
}

.event_details {
    margin-bottom: 20px;
}

.event_details .detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--pxa-text-color);
}

.event_details .detail i {
    width: 20px;
    margin-right: 10px;
    color: var(--pxa-primary);
}

.duration {
    color: #666;
    margin-left: 5px;
}

.event_description {
    margin-bottom: 20px;
    color: var(--pxa-text-color);
    line-height: 1.6;
}

.event_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticket-info {
    color: var(--pxa-primary);
    font-size: 14px;
}

.ticket-info i {
    margin-right: 5px;
}

/* No Events State */
.pxa_no_events {
    padding: 60px 20px;
}

.no-events-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.pxa_no_events h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pxa_no_events p {
    color: #666;
}

/* Pagination */
.pxa_pagination {
    margin-top: 50px;
}

/* Card Hover Effects */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Button Styles */
.btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
}

.btn-lg {
    padding: 1rem 2rem;
}

.btn i {
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* Search Input */
.input-group-text {
    color: var(--pxa-primary);
}

.form-control:focus {
    border-color: var(--pxa-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--pxa-primary-rgb), 0.25);
}

/* Filter Buttons */
.btn-group .btn {
    border-width: 2px;
}

.btn-group .btn.active {
    background-color: var(--pxa-primary);
    border-color: var(--pxa-primary);
    color: #fff;
}

/* Card Styles */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
    max-width: 100%;
}

.card-img-wrapper {
    height: 160px;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-body {
    padding: 1rem !important;
}

.card-footer {
    padding: 1rem !important;
    padding-top: 0 !important;
}

.card-title {
    font-size: 1rem; /*!important;*/
    margin-bottom: 0.5rem !important;
    line-height: 1.3;
}

.card-text {
    font-size: 0.813rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.card-body .text-muted {
    font-size: 0.75rem;
    margin-bottom: 0.35rem !important;
}

.card-body .text-muted i {
    font-size: 0.813rem;
    width: 15px;
}

.card-body .mb-3 {
    margin-bottom: 0.75rem !important;
}

.card-body .mb-2 {
    margin-bottom: 0.35rem !important;
}

/* Badge Styles */
.badge {
    padding: 0.4em 0.8em;
    font-size: 0.8rem;
}

/* Empty State */
.display-1 {
    font-size: 5rem;
}

/* Pagination */
.pagination {
    gap: 0.5rem;
}

.page-link {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--pxa-primary);
    border: none;
}

.page-link:hover {
    background-color: var(--pxa-primary);
    color: #fff;
}

.page-item.active .page-link {
    background-color: var(--pxa-primary);
    border-color: var(--pxa-primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        border-radius: 0.375rem !important;
        margin-bottom: 0.5rem;
    }
    
    .pxa_hero_section {
        min-height: 400px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Event Badge Styles */
.event-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 10px;
    gap: 4px;
}

.event-badge i {
    font-size: 9px;
}

.event-badge.bg-primary {
    background: rgba(var(--pxa-primary-rgb), 0.95) !important;
}

.event-badge.bg-success {
    background: rgba(var(--pxa-success-rgb), 0.95) !important;
}

/* Improve image overlay gradient for better badge visibility */
.card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 2;
}

/* Adjust button size */
.card .btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.813rem;
}

.card .badge {
    padding: 0.35em 0.65em;
    font-size: 0.75rem;
}

/* Grid Adjustments */
.row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

/* Hover Effect */
.hover-shadow:hover {
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .col-md-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Event Details Styles */
.event-header {
    background-color: var(--pxa-primary);
    min-height: 200px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.event-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 1;
}

.event-header .container {
    position: relative;
    z-index: 2;
}

.event-main-image {
    height: 300px;
    object-fit: cover;
}

.event-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--pxa-text-color);
}

.venue-info h6 {
    color: var(--pxa-title-color);
    margin-bottom: 0.5rem;
}

/* Social Share Buttons */
.btn-outline-primary:hover,
.btn-outline-info:hover,
.btn-outline-success:hover {
    color: #fff;
}

/* Breadcrumb Styles */
.breadcrumb-item a {
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #fff !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-header {
        min-height: 180px;
    }
    
    .event-main-image {
        height: 200px;
    }
    
    .event-meta {
        font-size: 0.9rem;
    }
}

/* Related Events */
.related-events .card-img-wrapper {
    height: 140px;
}

/* Event Type Badge Styles */
.event-type-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    background: rgba(var(--pxa-primary-rgb), 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
    color: #fff;
    pointer-events: none;
}

.event-type-badge i {
    font-size: 12px;
}

.event-type-badge.bg-success {
    background: rgba(var(--pxa-success-rgb), 0.95) !important;
}

/* Remove any existing gradient overlays */
.position-relative::after {
    display: none;
}

/* Reset image z-index */
.card-img-top {
    z-index: 1;
}

/* Ensure the container has proper positioning */
.position-relative {
    position: relative !important;
    overflow: hidden;
}

/* Add a dark overlay for better badge visibility */
.position-relative::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
    z-index: 5;
    pointer-events: none;
}

/* Remove old badge styles */
.badge.position-absolute {
    display: none;
}

/* Adjust main image container */
.event-main-image {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

/* Position relative container */
.position-relative {
    overflow: hidden;
}

/* Event Hero Section */
.pxa_hero_section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.6));
    z-index: 1;
}

.pxa_hero_section .container {
    z-index: 2;
}

.event-highlight-item {
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    font-size: 1.1rem;
}

.event-type-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .pxa_hero_section {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.6));
    }

    .event-highlight-item {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .pxa_hero_section {
        min-height: 400px;
    }

    h1.display-4 {
        font-size: 2.5rem;
    }

    .event-highlight-item {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
}

/* Ticket Modal Styles */
.ticket-option {
    transition: all 0.2s ease;
}

.ticket-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
}

.ticket-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-icon i {
    font-size: 1.25rem;
}

.quantity-selector {
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}

.quantity-selector input {
    height: 38px;
    font-weight: 600;
    background: transparent !important;
}

.quantity-selector button {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.quantity-selector button:hover {
    background-color: var(--pxa-primary);
    border-color: var(--pxa-primary);
    color: #fff;
}

.quantity-selector button i {
    font-size: 0.875rem;
}

.price-tag {
    white-space: nowrap;
}

/* Disable number input spinners */
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-selector input[type=number] {
    -moz-appearance: textfield;
}

/* Loading animation */
.loading {
    position: relative;
}

.loading:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success animation */
.success-animation {
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

