/* Root variables for easy color adjustments */
:root {
  --primary-color: #0a0a0a;
  --secondary-color: #131313;
  --accent-color: #e63946;
  --highlight-color: #fdd60b;
  --text-color: #333333;
  --bg-color: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

/* Utility containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background-color: var(--primary-color);
  border-bottom: 4px solid var(--accent-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.logo img {
  display: block;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--highlight-color);
}

/* Hero section */
.hero {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #bf2e3b;
}

.btn-secondary {
  background-color: var(--highlight-color);
  color: #000000;
}

.btn-secondary:hover {
  background-color: #e7c007;
  color: #000;
}

/* Threat section */
.threat-section {
  background-color: #f5f5f5;
  padding: 3rem 0;
}

.threat-section h2 {
  margin-top: 0;
  font-size: 2rem;
  color: var(--primary-color);
}

.threat-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.threat-image {
  flex: 1 1 300px;
}

.threat-image img {
  width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
}

.threat-text {
  flex: 1 1 300px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.threat-text p {
  margin-top: 0.5rem;
}

/* Reviews summary and list */
.reviews-summary,
.review-list {
  padding: 3rem 0;
}

.reviews-summary h2,
.review-list h1 {
  margin-top: 0;
  font-size: 2rem;
  color: var(--primary-color);
}

.review-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 1.5rem;
}

.review-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.review-card h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.review-list .review-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

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

.review-item h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.review-item p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}

/* Call to action */
.cta {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
}

.cta h2 {
  margin-top: 0;
  font-size: 2rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

/* Page content for about, reviews, disclaimer, submit */
.page-content {
  padding: 3rem 0;
}

.page-content h1 {
  margin-top: 0;
  font-size: 2rem;
  color: var(--primary-color);
}

.page-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.5rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: #666666;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background-color: var(--primary-color);
  color: #cccccc;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-nav a {
  color: #bbbbbb;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.disclaimer-text {
  margin-bottom: 0.5rem;
}

/* Responsive navigation */
@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
    background-color: var(--primary-color);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem 0;
  }
  .nav-menu ul.show {
    display: flex;
  }
  .nav-menu li {
    text-align: center;
    padding: 0.5rem 0;
  }
  /* Simple hamburger toggle (icon created via CSS) */
  .nav-toggle {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
  }
  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: transform 0.3s ease;
  }
  .nav-toggle span {
    top: 13px;
  }
  .nav-toggle::before {
    top: 5px;
  }
  .nav-toggle::after {
    bottom: 5px;
  }
  .nav-toggle.open span {
    transform: scaleX(0);
  }
  .nav-toggle.open::before {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.open::after {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-container {
    position: relative;
  }
}