/* ============================================================
   ROLL SHOW — CLEAN GLOBAL STYLE (NO BACKGROUND CONTROL)
   ============================================================ */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');


/* ============================================================
   GLOBAL RESET
   ============================================================ */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000; /* PURE BLACK BEHIND YOUR IMAGE */
  color: white;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* Every page’s content sits ABOVE the background image */
.landing-page,
.auth-container,
.header,
.footer {
  position: relative;
  z-index: 5;
}


/* ============================================================
   HEADINGS
   ============================================================ */

h1, h2, h3, .logo, .cta {
  font-family: "Lobster", cursive;
  letter-spacing: 0.5px;
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}


/* ============================================================
   LINKS + BUTTONS
   ============================================================ */

a {
  color: white;
  text-decoration: underline;
}

button {
  cursor: pointer;
}


/* ============================================================
   HEADER
   ============================================================ */

.header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
}

.logo {
  font-size: 32px;
  font-weight: 400;
}

.nav a {
  margin-left: 20px;
  font-weight: 600;
}

#themeToggle {
  margin-left: 20px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid white;
  background: none;
  color: white;
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  padding: 120px 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero .subtitle {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 300;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 22px;
  transition: 0.2s;
  backdrop-filter: blur(3px);
}

.cta:hover {
  background: rgba(255,255,255,0.35);
}


/* ============================================================
   SHOW GRID + CARDS
   ============================================================ */

.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px 40px;
}

.show-card {
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.2s;
}

.show-card:hover {
  transform: translateY(-4px);
}


/* ============================================================
   FORMS
   ============================================================ */

.auth-container {
  display: flex;
  justify-content: center;
  padding: 100px 20px;
}

.auth-box {
  width: 100%;
  max-width: 420px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.4);
  color: white;
}

.btn-primary {
  margin-top: 30px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.2s;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.35);
}
