/*
Theme Name: Supply4u Business Verification
Theme URI: https://supply4u.com
Author: Supply4u
Author URI: https://supply4u.com
Description: A clean WordPress business verification website theme for Supply4u, a mobile app development business.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: supply4u
*/

:root {
  --bg: #f7f9fc;
  --text: #162033;
  --muted: #5b667a;
  --card: #ffffff;
  --border: #dde5f0;
  --primary: #1d9fd0;
  --primary-dark: #087aa5;
  --accent: #eaf8ff;
  --purple: #5c4fa3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 20, 35, 0.92), rgba(20, 98, 140, 0.88)),
    url("assets/images/hero-code.jpg") center/cover no-repeat;
  min-height: 720px;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(29, 159, 208, 0.35), transparent 35%);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 178px;
  max-width: 44vw;
  height: auto;
}

.simple-header .brand-logo {
  width: 150px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: #ffffff;
  font-weight: 700;
  opacity: 0.96;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(1120px, 92%);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header .eyebrow { color: #bdeeff; }

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}

h3 { margin: 0 0 10px; font-size: 1.15rem; }

.hero-text {
  margin: 24px 0 0;
  font-size: 1.1rem;
  color: #e7f7ff;
  max-width: 700px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-block;
  background: #ffffff;
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.button.secondary {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.55);
}

.hero-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  padding: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.hero-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.section {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: center;
}

.section.alt {
  display: block;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-text p,
.section.alt p,
.entry-content p {
  color: var(--muted);
}

.feature-image {
  width: 100%;
  min-height: 310px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(22,32,51,0.13);
}

.card,
.contact-card,
.app-card,
.legal-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(22,32,51,0.07);
}

.check-list { padding-left: 20px; margin: 0; }
.check-list li { margin: 10px 0; }

.app-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.app-card {
  overflow: hidden;
  padding: 0;
}

.app-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.app-card-content {
  padding: 22px;
}

.app-card p { color: var(--muted); }

.store-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-links a {
  background: var(--accent);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.contact-card {
  border-left: 6px solid var(--primary);
}

.footer {
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #ffffff;
}

.legal-page {
  width: min(850px, 92%);
  margin: 0 auto;
  padding: 48px 0 72px;
}

.legal-page h1 {
  font-size: 2.5rem;
  letter-spacing: -0.04em;
}

.legal-page .updated {
  color: var(--muted);
  margin-bottom: 32px;
}

.legal-section { margin-top: 18px; }

.simple-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.simple-header .brand,
.simple-header .nav-links a { color: var(--text); }

@media (max-width: 900px) {
  .site-header { min-height: auto; padding-bottom: 72px; }
  .nav { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; }
  .hero-card img { height: 300px; }
  .section { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
}
