/* style.css */

/* Base styles */
body {
  margin: 0;
  font-family: 'Century Gothic', sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
  font-size: 16px;
}

/* Header */
header {
  text-align: center;
  padding: 20px 10px;
  background: linear-gradient(135deg, #111, #1a1a1a);
}

header img {
  max-width: 200px;
  height: auto;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;   /* allows wrapping on smaller screens */
  gap: 12px;         /* consistent spacing */
  background-color: #111;
  padding: 10px 0;
}

nav a {
  color: #1e90ff;    /* logo blue */
  text-decoration: none;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
  background-color: #222;
}

nav a.active {
  background-color: #666;
  color: #fff;
}

/* Section blocks */
section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

section h2 {
  text-align: center;
  color: #c1e7ee;
  margin-bottom: 20px;
  font-size: 1.8em;
}

section p {
  line-height: 1.6;
}

/* Services list */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
  padding: 12px;
  background-color: #111;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Contact info (homepage) */
.contact-info {
  text-align: center;
  margin-top: 20px;
  font-size: 1.2em;
  color: #c1e7ee;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background-color: #111;
  font-size: 1em;
}

footer a {
  color: #c1e7ee;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  nav {
    gap: 8px;
  }

  nav a {
    padding: 6px 10px;
    font-size: 1em;
  }
/* Mobile hero button fix */
@media (max-width: 768px) {
  .hero .cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #c1e7ee; /* brand colour */
    color: #0d0d0d;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
  }
}
