.page__header hr {
  text-align: center;
  margin: 1.5rem auto;
}

.mainContent {
  height: 100%;
}

.pointer {
  cursor: pointer;
}

.bg-white {
  background-color: #fffffb !important;
}

/* ---------------- Ticket Card (small grid style) ---------------- */
.ticket-card {
  height: 400px;
  cursor: pointer;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 280px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;

  .card-head {
    height: 65%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #c8a3740a;

    .card-img-top {
      height: 100%;
      object-fit: contain;
      width: 100%;
      border-radius: 8px 8px 0 0;
    }
  }

  .card-body {
    width: 100%;
    text-align: left;
    padding: 10px 10px 20px;

    .card-title {
      font-size: 18px;
      color: #303030;
      margin-top: 0;
      text-transform: capitalize;
    }

    .card-text {
      font-size: 20px;
      color: #303030;
      margin-top: 5px;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .list-group-flush {
      margin-top: 10px;
      color: #9f9f9f;
      font-size: 14px;
    }

    .btn {
      width: 100%;
    }
  }
}

.ticket-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  transform: scale(1.05);
}

/* ---------------- Display Card (large layout) ---------------- */
.display-card {
  min-height: 400px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;

  .card-head {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;

    .card-img-top {
      height: 90%;
      border-radius: 8px 8px 0 0;
      background-size: contain;
    }

    a {
      width: 100%;
    }

    img {
      height: 100%;
      width: 100%;
      max-height: 500px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #ddd;
    }
  }

  .card-body {
    width: 100%;
    padding: 10px;

    .card-title {
      font-size: 40px;
      font-weight: bold;
      color: #303030;
      text-transform: uppercase;
      letter-spacing: 2px;

      @media (max-width: 768px) {
        font-size: 30px;
      }
    }

    .ticket-price {
      margin: 10px 0;
      font-weight: 600;
      font-size: 24px !important;
      color: #c8a374;
    }

    .card-desc {
      font-size: 14px;
      color: #303030;
      margin: 10px 0;
      line-height: 1.5;
    }

    .list-group-flush {
      margin: 10px 0;
      font-size: 18px;
      line-height: 1.5;

      .list-group-item {
        font-size: 18px;
        font-weight: bold;

        span {
          font-weight: 500;
        }
      }
    }

    .card-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;

      .buyBtn {
        font-size: 12px;
      }
    }

    .qty-input {
      max-width: 100px;
      height: 48px;
      width: 100%;
    }
  }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
  .display-card {
    flex-direction: column;
    align-items: center;

    .card-head {
      width: 100%;
      height: auto;

      .card-img-top {
        width: 100%;
        height: 100%;
      }

      img {
        max-height: 250px;
      }
    }

    .card-body {
      padding: 0;
      text-align: left;
    }
  }

  .card-actions {
    place-items: end;
    position: relative !important;
  }
}

/* ---------------- Layout Grid ---------------- */
.flex--menus {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  padding: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .flex--menus {
    justify-content: center;
  }
}