:root {
  --primary: #0066cc;
  --secondary: #4caf50;
  --dark-bg: #121212;
  --dark-text: #e0e0e0;
  --accent-green: #28a745;
  --link-hover: #61dafb;
}

.logo {
  height: 225px;  /* smaller logo */
  width: auto;
  border-radius: 6px;
  display: block;
}


body {
  background-color: #121212;  /* dark background */
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  line-height: 1.6;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.container {
  text-align: center;
  padding: 2rem;
}

header {
  background: #1e1e1e;
  color: var(--dark-text);
  padding: 2rem 1rem;
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

nav a {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main section {
  background-color: #1f1f1f;  /* subtle dark block behind sections */
  margin: 2rem auto;
  padding: 2rem;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

h1, h2, h3 {
  font-weight: 700;  /* bolder headings */
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

ul {
  text-align: left;
  max-width: 600px;
  margin: 1rem auto;
  line-height: 1.8;
}

.btn {
  background-color: #4caf50;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #45a049;
}

.btn.secondary {
  background: var(--primary);
}

footer {
  background: #222;
  padding: 1rem;
  text-align: center;
  color: var(--dark-text);
}

/* Header flex layout */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  text-align: left;
}

/* Bigger, clearer contact links */
.contact-links {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.1rem;  /* increased from 0.9rem */
  font-weight: 600;
}

.contact-links a {
  color: var(--dark-text);
  text-decoration: none;
}

.contact-links a:hover {
  padding-right: 10rem;  /* adds some breathing room on the right */
  text-decoration: underline;
}

/* Emoji replacements with better visibility */
.contact-links a.email::before {
  content: "✉️ ";  /* bigger envelope emoji */
  font-size: 1.2rem;
}

.contact-links a.office-phone::before {
  content: "📗 ";  /* green book emoji as “friendly phone” alternative */
  font-size: 1.2rem;
}

.contact-links a.mobile-phone::before {
  content: "📱 ";
  font-size: 1.2rem;
}
