/*
Theme Name: Black Pearl Red Default
Template: blankslate
Author: Nexus Instruments
Description: A default red + black WRX-styled child theme built from Blankslate.
Version: 1.0
*/

/* Import parent theme */
@import url("../blankslate/style.css");

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0f0f0f;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Links */
a {
  color: #ff4b2b;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ff7b61;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #ff4b2b;
  margin: 1em 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

/* Container */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.hero-card {
  background: linear-gradient(to bottom right, #0a0a0a, #1e1e1e);
  color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
  border-left: 5px solid #ff4b2b;
  border-right: 5px solid #ff4b2b;
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 900px;
}

.hero-card h1 {
  font-size: 2.75rem;
  color: #ff4b2b;
}

.hero-card .tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6b4b;
  margin-bottom: 0.5rem;
}

.hero-card .sub-tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #ff4b2b;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #000;
}

.hero-card .ai-tag {
  font-size: 1rem;
  color: #bbb;
  margin-top: 1.5rem;
}

/* Build Cards */
.build-cards-container {
  background: #121212;
  padding: 40px 20px;
}
.build-card {
  background: #1e1e1e;
  border-left: 5px solid #ff4b2b;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
}
.build-card h3 {
  color: #ff4b2b;
  font-size: 1.3rem;
}

/* Timeline */
.timeline {
  border-left: 3px solid #ff4b2b;
  padding-left: 20px;
}
.timeline-entry {
  margin-bottom: 30px;
  position: relative;
}
.timeline-entry::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #ff4b2b;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 5px;
}

/* Tables */
.wp-block-table {
  width: 100%;
  background: #1e1e1e;
  color: #f0f0f0;
  border-collapse: collapse;
  margin: 20px auto;
}
.wp-block-table th,
.wp-block-table td {
  padding: 12px 16px;
  border: 1px solid #333;
}
.wp-block-table thead th {
  background: #0f0f0f;
  color: #ff4b2b;
}

/* Footer */
footer#footer {
  background-color: #0f0f0f;
  padding: 40px 20px;
  color: #f0f0f0;
  text-align: center;
  font-size: 0.95rem;
  border-top: 4px solid #ff4b2b;
  font-family: 'Segoe UI', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-card h1 {
    font-size: 2rem;
  }
  .build-card {
    padding: 15px;
  }
  .wp-block-table {
    width: 95%;
  }
}
