/* Container */
.ticketing-container {
  max-width: 100%;
  margin: 0 auto;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  color: #333;
}

/* Headings */
.ticketing-container h1,
.ticketing-container h2,
.ticketing-container h3 {
  font-family: "Source Serif Pro", sans-serif;
}

.ticketing-main-title {
  text-align: center;
  font-size: 66px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #1e1e1e;
}

/* Cards */
.ticketing-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.ticketing-card {
  background-color: #f4efea;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.ticketing-card:hover {
  background: #fce7b1;
}


.ticketing-card .desclaimer {
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1e1e1e;
  font-style: italic;
}

/* .highlight-card {
    background-color: #fce7b1;
} */

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

.card-header h2 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 600;
}

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.card-price {
  font-size: 78px;
  font-family: "Source Serif Pro", sans-serif;
  margin: 0;
  font-weight: 600;
  color: #1e1e1e;
}

.card-desc {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  font-family: "Source Serif Pro", sans-serif;
}

.btn-dark {
  background-color: #1f2124;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-yellow {
  background-color: #f0c32b !;
  color: #000;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn-yellow:hover {
  background-color: #e0b320;
}

.ticketing-cards-wrapper .btn-dark {
  background: #1e1e1e !important;
  color: #fff;
  border: none;
  font-family: "Poppins", Sans-serif;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
}

.ticketing-cards-wrapper .btn-yellow,
.btn-submit {
  background: #f3b339 !important;
  background: linear-gradient(
    120deg,
    rgba(243, 179, 57, 1) 0%,
    rgba(254, 242, 117, 1) 100%
  );
  color: #000 !important;
  border: none !important;
  font-family: "Poppins", Sans-serif;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
}

/* Two columns */
.ticketing-two-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.col-title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input[readonly] {
  background-color: #f0f0f0;
  cursor: not-allowed;
}

.payment-method-group .radios {
  display: flex;
  gap: 20px;
}

.payment-method-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* File Upload Box */
.file-upload-box {
  border: 2px dashed #e0d8c8;
  background-color: #fbf8f0;
  padding: 40px 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.file-upload-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.btn-submit {
  background-color: #f0c32b;
  color: #000;
  border: none;
  padding: 15px 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #e0b320;
}

.disclaimer-text {
  font-size: 12px;
  margin-top: 15px;
  color: #666;
}

.disclaimer-text a {
  color: #333;
  font-weight: bold;
}

/* Instructions Col */
.instruction-desc {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.payment-box {
  border: 1px solid #e0e0e0;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  border-radius: 5px;
}

.payment-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
}

.zelle-logo {
  background-color: #7417ea;
  font-size: 12px;
}

.cashapp-logo {
  background-color: #00d632;
  font-size: 20px;
}

.payment-box button {
  border: none;
  background: #fff !important;
  padding: 0;
  width: 30px;
  height: 30px;
}

.payment-details {
  flex-grow: 1;
  margin-left: 15px;
  font-size: 14px;
}

.payment-details strong {
  display: block;
  margin-bottom: 4px;
}

.copy-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.info-alert-box {
  background-color: #fbf8f0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
  margin: 30px 0;
  border: 1px solid #c5c5c5;
}

.alert-icon {
  width: 80px;
  height: 40px;
}

.info-alert-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.event-highlights {
  background-color: #141824;
  color: white;
  padding: 30px;
  border-radius: 5px;
}

.event-highlights h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 1px;
}

.highlights-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  gap: 10px;
  font-family: "Source Serif Pro", sans-serif;
}

.highlight-item span[class^="icon-"] {
  font-size: 24px;
  color: #f0c32b;
  width: 40px;
  height: 40px;
}

.highlight-item span[class^="icon-"] img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}


.ticketing-card:hover .btn-dark {
  background-image: linear-gradient(
    140deg,
    #f3b339 0%,
    #fef275 100%
  ) !important;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .ticketing-main-title {
    font-size: 36px;
  }

  .card-price {
    font-size: 58px;
  }
  .ticketing-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .ticketing-two-cols {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
