/* Centurion Solutions — simplified one-page site
   Palette kept from the original design:
   orange #f7941e / #f57a0d / #c35e00, black #000, cream #f1f2c6 */

:root {
  --orange: #f7941e;
  --orange-dark: #f57a0d;
  --bg: #fbf8f4;
  --text: #333;
  --text-dim: #6b6b6b;
  --black: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--orange-dark);
}

a:hover {
  color: var(--black);
}

h1,
h2,
h3 {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: bold;
  margin: 0 0 0.6em;
}

h2 {
  font-size: 1.7rem;
  color: var(--orange-dark);
}

p {
  margin: 0 0 1.1em;
}

/* header */

.site-header {
  background: var(--black);
  padding: 24px 20px;
  text-align: center;
}

.site-header .logo {
  display: inline-block;
  margin: 0 auto;
}

/* main / watermark */

main {
  position: relative;
  overflow: hidden;
}

.worldmap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 90vw);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  pointer-events: none;
}

/* hero */

.hero {
  position: relative;
  padding: 90px 20px 50px;
  text-align: center;
}

.hero .tagline {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--orange-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* about / contact */

.about,
.contact {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 20px 60px;
  text-align: center;
}

.about {
  color: var(--text-dim);
}

.contact {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}

.contact .email {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* footer */

.site-footer {
  background: var(--black);
  color: var(--text-dim);
  text-align: center;
  font-size: 0.85rem;
  padding: 24px 20px;
}

.site-footer .copyright {
  color: var(--orange);
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 16px 40px;
  }

  .hero .tagline {
    font-size: 1.6rem;
  }

  .about,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
