/* Ultra Clean RUNIT-Style CSS */

:root {
  --black: #000000;
  --white: #ffffff;
  --highlight: #9ACD32; /* Single green highlight color */
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-weight: 400;
}

/* Header */
.navbar {
  background-color: var(--white) !important;
  border-bottom: none;
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--black) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--black) !important;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
  color: var(--highlight) !important;
}

/* Main Content */
.main-content {
  padding-top: 120px;
}

/* Hero Section */
.hero-section {
  background-color: var(--white);
  padding: 8rem 0;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Black Section */
.black-section {
  background-color: var(--black);
  color: var(--white);
  padding: 4rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  line-height: 0.9;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Button - Green highlight for visibility */
.btn-primary {
  background-color: var(--highlight) !important;
  border: 2px solid var(--highlight) !important;
  color: var(--black) !important;
  padding: 1rem 2.5rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
}

.btn-primary:hover {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}

/* Black Section */
.signup-section {
  background-color: var(--black);
  color: var(--white);
  padding: 5rem 0 8rem 0;
}

.signup-section h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.signup-section p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* Form */
.signup-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  font-size: 1rem;
}

.signup-form button {
  padding: 1rem 2rem;
  background-color: var(--white);
  color: var(--black);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

/* Language Toggle */
.language-toggle img {
  width: 24px;
  height: 24px;
  margin: 0 0.5rem;
  cursor: pointer;
  opacity: 0.7;
}

.language-toggle img:hover {
  opacity: 1;
}

/* Footer */
footer {
  background-color: var(--black) !important;
  color: var(--white) !important;
  padding: 3rem 0 !important;
  position: relative !important;
  z-index: 200 !important;
}

footer p {
  color: var(--white) !important;
}

footer a {
  color: var(--white) !important;
  text-decoration: underline !important;
}

footer a:hover {
  color: var(--highlight) !important;
}

/* Hide any CSS code text that appears on page - but not the footer */
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--white);
  z-index: 100;
}

/* Force hide any CSS-like text */
*:contains("quick-navigation"),
*:contains("background-color"),
*:contains("padding"),
*:contains("border"),
*:contains(".preview"),
*:contains(".quick") {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Table Styling */
.table {
  border: 2px solid #000;
  margin-top: 2rem;
}

.table th {
  border: 1px solid #000;
  padding: 1rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

.table td {
  border: 1px solid #000;
  padding: 1rem;
  vertical-align: top;
  line-height: 1.4;
}

.table td strong {
  display: block;
  margin-bottom: 0.5rem;
}

.table-responsive {
  border: none;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.1;
  }
  
  .signup-form {
    flex-direction: column;
  }
  
  .navbar-brand {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .table {
    font-size: 0.9rem;
  }
  
  .table th,
  .table td {
    padding: 0.5rem;
  }
}

/* Content Section */
.content-section {
  background-color: var(--white);
  padding: 5rem 0 8rem 0;
}

/* Examples Section */
.example-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.example-item {
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.example-item:last-child {
  border-bottom: none;
}

.example-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.example-item p {
  margin-bottom: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
}

.example-item strong {
  font-weight: 500;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-item {
  padding: 2rem;
  text-align: center;
  border: 1px solid #eee;
}

.pricing-item.featured {
  border: 2px solid var(--black);
  background-color: var(--white);
}

.pricing-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.pricing-item p {
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.pricing-item strong {
  font-weight: 500;
}

/* Section Spacing Adjustments */
section#examples {
  margin-top: 5rem;
}

section#pricing {
  margin-top: 5rem;
}