/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
nav ul {
  display: flex;
  gap: 22px;
}
nav ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s;
}
nav ul li a.active { border-bottom: 2px solid #111; }
nav ul li a:hover { color: #000; }

/* ===== Hero ===== */
.hero {
  height: 100vh;
  background: url("../images/hallwardsky.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero > div {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.hero p {
  font-size: 1.4rem;
}

/* ===== Section Base ===== */
.section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
  background: #fff;
}
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.service-card {
  display: block;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card div {
  padding: 20px;
}
.service-card h3 {
  margin-bottom: 10px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* ===== About ===== */
.about-section img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 25px;
  object-fit: cover;
}
.about-section p {
  margin-bottom: 20px;
  color: #333;
}

/* ===== Contact ===== */
.contact-hero {
  background: url("../images/greyclouds.jpg") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.contact-hero > div {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: auto;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #222;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #000;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 40px;
  background: #fafafa;
  color: #555;
  margin-top: 60px;
  font-size: 0.95rem;
}

/* ===== Split Images ===== */
.split-image img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}
