/* Global styles for Lay‑It‑Down Wholesale public site */

/* Base palette */
:root {
  --color-navy: #15466B;        /* primary dark/navy used in hero and accents */
  --color-black: #05070A;       /* near‑black for deep backgrounds */
  --color-slate: #4A5B6B;       /* muted slate for body text */
  --color-white: #FFFFFF;       /* pure white for text on dark */
  --color-off-white: #F4F6F8;   /* off‑white for light backgrounds */
  --color-accent: #2C6E91;      /* steel‑blue accent from logo */
  --color-amber: #C2410C;       /* optional accent */
}

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

html {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.5;
  color: var(--color-slate);
  background-color: var(--color-off-white);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--color-white);
}

header .logo img {
  height: 40px;
  margin-right: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
}

nav a:hover {
  text-decoration: underline;
}

main {
  flex: 1;
}

/* Hero section */
.hero {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 4rem 1rem;
  text-align: center;
}

.hero .hero-logo {
  max-width: 260px;
  margin: 0 auto 1.5rem auto;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-off-white);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons a {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-white);
  background-color: var(--color-accent);
}

.cta-buttons a.secondary {
  background-color: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

/* Sections */
section {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.features {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}

.feature-card {
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-slate);
}

.built-for {
  text-align: center;
}

.built-for h2 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.built-for p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.status {
  text-align: center;
  background-color: var(--color-white);
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status h3 {
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 1rem 2rem;
  font-size: 0.8rem;
  text-align: center;
}

footer a {
  color: var(--color-accent);
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive typography */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}