/* ============================================
   Shotwell Solutions — Site Stylesheet
   ============================================ */

:root {
  --navy: #0f2a43;
  --navy-dark: #0a1f33;
  --accent: #1e88e5;
  --accent-hover: #1565c0;
  --text: #2b3a4a;
  --text-light: #5a6b7c;
  --bg-light: #f4f7fa;
  --white: #ffffff;
  --border: #dde5ec;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Banner strip ---------- */

.banner-strip {
  background: var(--white);
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.banner-strip img {
  max-width: 560px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.site-nav a {
  color: #cdd9e5;
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #123c5e 100%);
  color: var(--white);
  padding: 5rem 0 5.5rem;
  text-align: center;
}

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

.hero p {
  font-size: 1.2rem;
  color: #b8c8d8;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  margin-left: 0.75rem;
}

.btn-outline:hover {
  background: var(--accent);
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.1rem;
}

.page-hero p {
  color: #b8c8d8;
  max-width: 640px;
  margin: 0.5rem auto 0;
}

/* ---------- Sections ---------- */

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* ---------- Cards ---------- */

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(15, 42, 67, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(15, 42, 67, 0.12);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

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

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---------- Feature list (why choose us) ---------- */

.feature-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.feature-list li {
  padding: 0.85rem 0 0.85rem 2.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 0;
}

.cta-band h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: #b8c8d8;
  margin-bottom: 1.5rem;
}

/* ---------- Contact / Zoho form ---------- */

.form-embed {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(15, 42, 67, 0.06);
}

.form-embed iframe {
  width: 100%;
  border: none;
  min-height: 600px;
}

.form-placeholder {
  text-align: center;
  color: var(--text-light);
  padding: 3rem 1rem;
  border: 2px dashed var(--border);
  border-radius: 6px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}

/* ---------- Cyber awareness ---------- */

.tip-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.tip {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 4px rgba(15, 42, 67, 0.06);
}

.tip h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.tip p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: #9fb2c4;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

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

.site-footer h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: #9fb2c4;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #1d3a55;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- Mobile ---------- */

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.open {
    display: block;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: none;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}
