/* ROBAT TV — Public Landing Page Styles
   Applies to /public/index.html (the signed-out home page).
*/

.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #292929;
}

/* --- Header: logo left, Sign In button right ---------------------------- */

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

.landing-page .logo-container {
  text-align: left;
  padding: 0.4rem 0;
}

.landing-page .header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Reuse .header-signin-link from style.css for consistency. */

/* --- Hero with two signup cards ---------------------------------------- */

.landing-hero {
  padding: 3rem 1rem 4rem;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('../images/Posters_Background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.landing-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.landing-hero-eyebrow {
  text-align: center;
  color: #0094c2;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.landing-hero-title {
  text-align: center;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.landing-hero-title span {
  color: #0094c2;
}

.landing-hero-tagline {
  text-align: center;
  color: #cccccc;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.landing-signup-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.landing-card {
  background-color: rgba(20, 20, 20, 0.92);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.landing-card:hover {
  border-color: #0094c2;
  transform: translateY(-2px);
}

.landing-card-eyebrow {
  color: #888;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.landing-card-title {
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.landing-card-price {
  color: #0094c2;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  line-height: 1;
}

.landing-card-price .period {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 0.25rem;
}

.landing-card-price-note {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
}

.landing-card-desc {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.landing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.landing-card-features li {
  color: #cccccc;
  font-size: 0.92rem;
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  line-height: 1.4;
}

.landing-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0094c2;
  font-weight: 700;
}

.landing-card-cta {
  display: inline-block;
  text-align: center;
  background-color: #0094c2;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.02em;
}

.landing-card-cta:hover {
  background-color: #00b8f0;
  transform: translateY(-1px);
}

.landing-card--creator .landing-card-cta {
  background-color: #4a4a4a;
}

.landing-card--creator .landing-card-cta:hover {
  background-color: #666666;
}

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 780px) {
  .landing-signup-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .landing-hero-title {
    font-size: 1.85rem;
  }
  .landing-hero-tagline {
    font-size: 1rem;
  }
}

/* --- Reactivation banner (signed-in but no active subscription) -------- */

.reactivate-banner {
  background: linear-gradient(90deg, #b8860b 0%, #cd9e2a 100%);
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.85rem 1rem;
}

.reactivate-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reactivate-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reactivate-banner-text strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.reactivate-banner-text span {
  font-size: 0.95rem;
  opacity: 0.85;
}

.reactivate-banner-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.reactivate-banner-cta {
  background: #1a1a1a;
  color: #ffd479;
  border: none;
  padding: 0.6rem 1.15rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 120ms ease;
}

.reactivate-banner-cta:hover:not(:disabled) {
  background: #000;
}

.reactivate-banner-cta:disabled {
  opacity: 0.6;
  cursor: default;
}

.reactivate-banner-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 0.55rem 0.95rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 120ms ease;
}

.reactivate-banner-secondary:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.08);
}
