/* Again.com.au placeholder site styles
   Influenced by Start Bootstrap Freelancer (MIT)
   Lightweight, no external dependencies */

:root {
  --primary: #18bc9c; /* teal similar to Freelancer */
  --primary-dark: #139a82;
  --dark: #2c3e50;
  --light: #ecf0f1;
  --text: #2d3436;
  --muted: #7f8c8d;
  --maxw: 960px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  background: var(--dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav {
  display: flex;
  gap: 16px;
}
.nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}
.nav a:hover { opacity: 1; }

/* Hero */
.hero {
  background: var(--primary);
  color: #fff;
  padding: 72px 0 56px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 8px;
}
.hero p {
  margin: 0 auto 20px;
  max-width: 720px;
  opacity: 0.95;
}
.btn {
  display: inline-block;
  background: #fff;
  color: var(--dark);
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn.primary {
  background: var(--dark);
  color: #fff;
}
.btn.primary:hover { background: #1b2a3a; }
.btn:hover { filter: brightness(0.98); }

/* Section */
.section { padding: 48px 0; }
.section h2 { margin-top: 0; }

/* Divider star (influence from Freelancer) */
.divider {
  margin: 24px auto 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  width: min(420px, 80%);
}
.divider::before,
.divider::after {
  content: "";
  height: 4px;
  background: #fff;
  opacity: 0.5;
  border-radius: 3px;
}
.star {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 24px 0;
  text-align: center;
}
.site-footer a { color: #fff; opacity: 0.9; }
.site-footer a:hover { opacity: 1; }
.footer-nav { justify-content: center; margin-top: 8px; }

/* Utility */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.brand .logo { height: 28px; width: auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Content pages */
.page-header {
  background: var(--light);
  border-bottom: 1px solid #dde1e3;
  padding: 28px 0;
}
.main { padding: 28px 0 56px; }

/* Responsive */
@media (max-width: 640px) {
  .nav { gap: 10px; font-size: 15px; }
}
