/* ===== Sechpoint Brochure Website — Base Styles ===== */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1a3a5c;
  --color-primary-light: #2c5f8a;
  --color-accent: #e8a838;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-text: #333333;
  --color-text-light: #666666;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --spacing-unit: 1rem;
  --max-width: 1100px;
  --border-radius: 6px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- Header / Navigation --- */
.site-header {
  background: var(--color-primary);
  padding: 0 var(--spacing-unit);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-accent);
}

/* --- Main Content --- */
.content {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--spacing-unit);
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  padding: 4rem 0 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Cards / Highlights --- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
}

.card h2 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

/* --- Page Header --- */
.page-header {
  text-align: center;
  padding: 2rem 0;
}

.page-header h1 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--color-text-light);
}

/* --- About --- */
.about-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* --- Services --- */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
}

.service-item h2 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

/* --- Contact --- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-detail {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
}

.contact-detail h2 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-detail a {
  color: var(--color-primary-light);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* --- Footer --- */
.site-footer {
  text-align: center;
  padding: 1.5rem var(--spacing-unit);
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: auto;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 0.75rem 0;
    gap: 0.5rem;
  }

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