/* =========================
   HOME PAGE OVERRIDES ONLY
   ========================= */

/* Prevent grid cards stretching vertically */
.content-grid {
  align-items: start;
}

/* -------------------------
   CONTENT CARDS
------------------------- */
.content-card {
  overflow: hidden;
}

/* -------------------------
   UPCOMING SHOWS
------------------------- */

.upcoming-shows-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.show-item {
  background: rgba(10, 25, 41, 0.6);
  border-radius: 10px;
  padding: 18px;
  border-left: 4px solid var(--radio-orange);
  display: flex;
  gap: 14px;
  align-items: center;
  transition: all 0.25s ease;
}

.show-item:hover {
  background: rgba(10, 25, 41, 0.8);
  transform: translateX(4px);
}

.show-presenter {
  font-size: 0.95rem;
  color: var(--radio-light);
}

.show-time {
  font-size: 0.85rem;
  color: var(--radio-orange);
  font-weight: 600;
}

/* -------------------------
   HOMEPAGE NEWS ONLY
------------------------- */

#homeNews .news-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  background: rgba(10, 25, 41, 0.65);
  border-radius: 12px;
  padding: 16px;
  border-left: 4px solid var(--radio-orange);
  align-items: center;
  transition: 0.2s ease;
}

#homeNews .news-item:hover {
  background: rgba(10, 25, 41, 0.85);
  transform: translateY(-2px);
}

#homeNews .news-thumb {
  width: 170px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}

#homeNews .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* News text */
#homeNews .news-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--radio-cream);
  margin-bottom: 6px;
}

#homeNews .news-time {
  font-size: 0.85rem;
  color: var(--radio-light);
  opacity: 0.85;
}

#homeNews .news-summary {
  font-size: 0.95rem;
  color: var(--radio-light);
  line-height: 1.5;
}

/* -------------------------
   RECENTLY PLAYED
------------------------- */

.recently-played-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 150px);
  gap: 18px;
  justify-content: center;
}

.track-card {
  width: 150px;
  background: #1b2d45;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

/* -------------------------
   MOBILE FIXES
------------------------- */

@media (max-width: 700px) {

  #homeNews .news-item {
    grid-template-columns: 1fr;
  }

  #homeNews .news-thumb {
    width: 100%;
    height: 180px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}


/* -------------------------
   SCHEDULE PAGE
------------------------- */

.schedule-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(10, 25, 41, 0.65);
  border-radius: 12px;
  border-left: 4px solid var(--radio-orange);
  transition: 0.2s ease;
}

.schedule-card:hover {
  background: rgba(10, 25, 41, 0.85);
  transform: translateX(3px);
}

/* ================= EVENTS SUBMIT FORM ================= */

.submit-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.submit-section h2 {
  color: #ff6a00;
  margin-bottom: 15px;
}

.submit-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.submit-section input,
.submit-section textarea {
  background: #0f172a;
  border: 1px solid #1f2937;
  color: #e5e7eb;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
}

.submit-section input:focus,
.submit-section textarea:focus {
  outline: none;
  border-color: #ff6a00;
  box-shadow: 0 0 0 2px rgba(255,106,0,0.25);
}

.submit-section textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-section button {
  background: #ff6a00;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.submit-section button:hover {
  background: #ff8533;
}

#formFeedback {
  margin-top: 10px;
  font-size: 14px;
}

#formFeedback.success {
  color: #4ade80;
}

#formFeedback.error {
  color: #f87171;
}
.application-card {
  color: #fff;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  opacity: 0.9;
}

.faq-question {
  cursor: pointer;
  user-select: none;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #ff6a00;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.about-section {
  background: #1D3557;
  color: #f1f5f9;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  padding: 30px;
  margin: 25px 0;
}

.about-section .card-title {
  color: #ff6a00;
  text-align: center;
}

.about-section p {
  line-height: 1.7;
  margin-bottom: 1.5em;
}

.about-section strong {
  color: #ff6a00;
}

.cta-button:hover {
  background: #e55c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,106,0,0.6);
}

/* ================= Adverts FORM ================= */

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff8c1a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.price-card {
  background: linear-gradient(145deg, #122b45, #0f2338);
  border-radius: 14px;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255,106,0,0.25);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.price-card .desc {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff6a00;
}

.price .per {
  font-size: 0.9rem;
  margin-left: 5px;
  opacity: 0.8;
}

.monthly {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Featured Card */
.price-card.featured {
  border: 2px solid #ff6a00;
  background: linear-gradient(145deg, #1b3556, #132a44);
}

.badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: #ff6a00;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: bold;
}

.badge.limited {
  background: #e11d48;
}

/* Launch Glow */
.price-card.launch {
  border: 2px dashed #e11d48;
}


.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(145deg, #132c46, #0e2236);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.pricing-table thead {
  background: linear-gradient(90deg, #ff6a00, #ff8c1a);
  color: white;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
}

.pricing-table th {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.pricing-table td {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pricing-table tbody tr:hover {
  background: rgba(255,106,0,0.08);
  transition: 0.3s ease;
}

/* Highlight Most Popular */
.featured-row {
  background: rgba(255,106,0,0.12);
  border-left: 4px solid #ff6a00;
}

.featured-row:hover {
  background: rgba(255,106,0,0.2);
}

/* Launch Row */
.launch-row {
  border-left: 4px dashed #e11d48;
}

/* Price Styling */
.price {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ff6a00;
}

/* Badges */
.badge {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  border-radius: 20px;
  background: #ff6a00;
  color: white;
  font-weight: 600;
}

.badge.limited {
  background: #e11d48;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .price {
    font-size: 1rem;
  }
}
/* ================= News FORM ================= */

.read-more {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: #1e293b;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.read-more:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
