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

/* ─── Variables ──────────────────────────────────────── */
:root {
  --bg: #0f0f0f;
  --text: #f0f0f0;
  --accent: #c8ff00;
  --muted: #cccccc;
  --max-width: 1100px;
  --font: "Rajdhani", sans-serif;
  --heading: #7de8e8ef;
  --body-font: "Inter", sans-serif;
}

/* ─── Base ───────────────────────────────────────────── */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 1.125rem;
  line-height: 1.7;
}

h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.2;
  font-family: var(--font);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ─── Layout wrapper ─────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Header + Nav ───────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--accent);
  z-index: 100;
  padding: 1rem 2rem;
  font-family: var(--font);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

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

nav ul a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ─── Hero ───────────────────────────────────────────── */
#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  font-family: var(--font);
}

#hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

#hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--muted);
  margin-bottom: 0.1rem;
}

/* ─── Sections ───────────────────────────────────────── */
section {
  padding: 2rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

section p {
  max-width: 65ch;
}

/* ─── Services ───────────────────────────────────────── */
#services ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
  font-family: var(--body-font);
}

#services li {
  border: 1px solid var(--accent);
  padding: 2rem;
}

#services h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

#services p {
  color: var(--muted);
  font-size: 1rem;
}

/* ─── Contact ────────────────────────────────────────── */
#contact ul {
  list-style: none;
  margin-top: 1rem;
}

/* ─── Footer ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--accent);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
