/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f3e9;   /* beige everywhere */
  color: #333;
  line-height: 1.6;
}

/* Optional: if you still want to keep the construction image faintly visible */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/construction-bg.jpg") no-repeat center center fixed;
  background-size: cover;
  opacity: 0.15;   /* faint overlay so beige is dominant */
  z-index: -1;
}

/* Header / nav bar */
header {
  background: rgba(51, 51, 51, 0.95);
  padding: 10px 0;
}

header .container {
  width: 90%;
  margin: auto;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
  color: #ff7f50;
}

/* Logo */
.logo-container {
  text-align: center;
  margin: 20px 0;
}

.logo-main {
  width: 300px;
  height: auto;
}

/* Intro */
.intro {
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 900px;
}

/* Services */
.services {
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 1200px;
}

.service {
  margin-bottom: 40px;
  text-align: center;
}

.service img {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 10px;
}

.service h2 {
  color: #ff7f50;
  font-size: 1.5em;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(51, 51, 51, 0.9);
  color: #fff;
  margin-top: 20px;
}
