/* --------- Base styles --------- */
:root {
  --primary: #e64626;
  --secondary: #2222ee;
  --light: #f8fafc;
  --dark: #0f172a;
  --gray: #64748b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: white;
}

a {
  text-decoration: none;
  color: var(--secondary);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 0;
}

/* --------- Header --------- */
.site-header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo h1 {
  margin: 0;
  font-size: 1.2rem;
}

.logo span {
  font-size: 0.75rem;
  color: var(--gray);
}

nav a {
  margin-left: 1.5rem;
  font-weight: 500;
}

/* --------- Hero --------- */
.hero {
  position: relative;
  color: white;
  padding: 5rem 0;
  background-image:
    linear-gradient(
      to top right,
/*      rgba(30, 58, 138, 0.5),
      rgba(37, 99, 235, 0.5)*/
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.3)
    ),
    url("datingscout-AuC9RiKvClA-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero p {
  max-width: 600px;
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
  margin-top: 2rem;
}

/* --------- Buttons --------- */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 1rem;
  color: black;
}

.btn-primary {
  background: white;
}

.btn-secondary {
  border: 2px solid black;
  background: white;
}

/* --------- Sections --------- */
.section {
  padding: 2rem 0 3rem;
}

.section-alt {
  background: var(--light);
}

.section-highlight {
  background: #eef2ff;
  text-align: center;
}

.section-high2 {
  background: #eef2ff;
  margin-top: -3rem;
}

.section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.spons_h3 {
  padding-bottom: 0.8rem;
}

/* --------- Grid & Cards --------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-style: groove;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.card h4 {
  margin-top: 0;
}

/* --------- Pricing --------- */
.pricing-card {
  max-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* --------- FAQ --------- */
details {
  margin-bottom: 1rem;
}

summary {
  font-weight: 600;
  cursor: pointer;
}

/* --------- Footer --------- */
.site-footer {
  background: var(--dark);
  color: #cbd5f5;
  padding: 2rem 0;
  text-align: center;
}

.site-footer a {
  color: #93c5fd;
}

/* --------- Responsive --------- */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  nav a {
    margin-left: 1rem;
  }
}
