/* Base styles for Rebel Art Marketing Lab */

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f5f5f5;
  background-color: #0f0f0f;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.2;
  font-weight: bold;
}

a {
  color: #00e0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #111827 100%);
  padding: 60px 20px;
  text-align: center;
}

/* Hero with banner image */
.hero-banner {
  background-image: url('assets/hero_banner.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  position: relative;
}
.hero-banner::after {
  /* dark overlay to improve text readability */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.hero-banner > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background-color: #e11d48;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #be123c;
}

.coupon-note {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro ul {
  list-style-type: disc;
  padding-left: 20px;
}

.modules-preview .module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.module-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 20px;
  min-height: 160px;
}

.module-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #f472b6;
}

.access-note {
  font-style: italic;
  color: #9ca3af;
  margin-top: 15px;
  text-align: center;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.inspiration-grid img {
  width: 100%;
  border-radius: 6px;
}

/* Template grid */
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.template-grid img {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #1f2937;
  transition: transform 0.2s ease;
}

.template-grid img:hover {
  transform: scale(1.03);
}

/* Form styles */
form {
  margin-top: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

textarea, input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #374151;
  border-radius: 4px;
  background-color: #111827;
  color: #f5f5f5;
}

textarea:focus, input[type="text"]:focus {
  outline: none;
  border-color: #e11d48;
}

nav {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

nav a {
  color: #f472b6;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #1f2937;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Call to action section */
.cta {
  text-align: center;
  background-color: #111827;
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 8px;
}

.cta h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f472b6;
}

.cta p {
  margin-bottom: 20px;
}

/* Testimonials section */
.testimonials {
  padding: 40px 20px;
  background-color: #1f2937;
  border-radius: 8px;
  margin-top: 40px;
}

.testimonials blockquote {
  margin: 20px 0;
  padding-left: 20px;
  border-left: 4px solid #e11d48;
  font-style: italic;
}

.testimonials footer {
  margin-top: 10px;
  color: #9ca3af;
}

/* FAQ section */
.faq {
  padding: 40px 20px;
  background-color: #111827;
  border-radius: 8px;
  margin-top: 40px;
}

.faq h2 {
  margin-bottom: 20px;
  color: #f472b6;
}

.faq h3 {
  margin-top: 20px;
  color: #f472b6;
}

/* Payment options styling */
.payment-options {
  margin-top: 20px;
}

.payment-options h3 {
  margin-bottom: 10px;
}

.stripe-wrapper {
  margin-top: 15px;
}

.btn.secondary {
  background-color: #2563eb;
}

.btn.secondary:hover {
  background-color: #1e40af;
}