/* ===== INFINITY MINDS GLOBAL DARK THEME (FIXED) ===== */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #0b0f1a;
  color: #f1f5f9;
}

/* Headings */
h1, h2, h3 {
  color: #a855f7;
}

/* Paragraph text */
p {
  color: #cbd5e1;
}

/* Cards */
.card {
  background-color: #111827;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.15);
  transition: 0.3s ease;
  color: #e5e7eb;
}

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

/* ===== FIXED BUTTONS ===== */
button,
.btn {
  background-color: #4c1d95;   /* darker purple */
  color: #ffffff;              /* white text for contrast */
  padding: 12px 28px;
  border: 2px solid #4c1d95;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

button:hover,
.btn:hover {
  background-color: #3b0764;
  border-color: #3b0764;
}

/* Focus for accessibility */
button:focus,
.btn:focus {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* Links */
a {
  color: #c084fc;   /* lighter purple for better contrast */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Why Section */
.why-section {
  background-color: #111827;
  padding: 60px 20px;
}

.why-section h2 {
  color: #a855f7;
}

.why-section p,
.why-section li {
  color: #cbd5e1;
}

/* ===== TUTORIAL CARD ===== */
.tutorial-card {
  background: #111827;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;

  width: 300px;
  max-width: 500px;

  text-align: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tutorial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(168, 85, 247, 0.4);
}

/* ===== DESCRIPTION TEXT ===== */
.tutorial-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== WATCH BUTTON ===== */
.watch-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: linear-gradient(45deg, #a855f7, #9333ea);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;

  transition: all 0.3s ease;
}

.watch-btn:hover {
  background: linear-gradient(45deg, #9333ea, #7e22ce);
  transform: scale(1.05);
}

/* ===== MARCH 1 SPECIAL SECTIONS ===== */

/* Launch Banner */
.launch-banner {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-bottom: 1px solid #1f2937;
}

.launch-banner h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
}

.launch-banner p {
  font-size: 16px;
  color: #e0e7ff;
}

/* Phase 2 Section */
.phase-two {
  padding: 60px 20px;
  text-align: center;
  background-color: #111827;
}

.phase-two h2 {
  margin-bottom: 15px;
}

.phase-two p {
  max-width: 700px;
  margin: 10px auto;
}

/* Founder Section */
.founder-note {
  padding: 60px 20px;
  text-align: center;
  background-color: #0f172a;
}

.founder-note p {
  max-width: 750px;
  margin: 10px auto;
  font-size: 16px;
}

