/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- Body ---------- */
body {
  font-family: Arial, sans-serif;
  background-color: #f2f5f5;
  color: #000000;
}

/* ---------- Navigation ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff;
  border-bottom: 2px solid #0f6f73;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #0f6f73;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
}

.nav-links a:hover {
  color: #0f6f73;
}

/* ---------- Hero Banner ---------- */
.hero {
  background-image: url("images/background2.png");
  background-size: cover;
  background-position: center;
  height: 365px;
  

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.hero h1 {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
}

.hero p {
  font-size: 16px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px 14px;
}

/* ---------- Main Content ---------- */
main {
  max-width: 1000px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 40px;
}

/* ---------- Intro ---------- */
.intro {
  margin-bottom: 40px;
}

.intro h2 {
  color: #0f6f73;
  margin-bottom: 12px;
}

.intro p {
  line-height: 1.6;
  max-width: 700px;
}

/* ---------- Featured Work ---------- */
.featured {
  margin-bottom: 50px;
}

.featured h2 {
  color: #0f6f73;
  margin-bottom: 20px;
}

.featured-images {
  display: flex;
  gap: 20px;
}

.featured-images img {
  width: 100%;
  max-width: 300px;
  border: 2px solid #0f6f73;
  background-color: #ffffff;
}

.featured-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  opacity: 0.85;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}


/* ---------- Columns ---------- */
.columns {
  display: flex;
  gap: 20px;
}

.column {
  background-color: #e9f3f3;
  padding: 25px;
  border: 1px solid #0f6f73;
}

.column h3 {
  color: #0f6f73;
  margin-bottom: 10px;
}

.column p {
  line-height: 1.5;
}


/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-top: 2px solid #0f6f73;
  margin-top: 40px;
  color: #555555;
}
