/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8fff9;
  height: 100%;
  padding-top: 90px;
  color: #2d742d;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 60, 0, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 100px;
  margin-right: 10px;
  margin-top: -15px;
  width: 100px;
}

.firm-name {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  margin-top: 12px;
  gap: 20px;
  align-items: center;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #00ff88;
  color: #004400;
}

main {
  padding-top: 25px;
  padding-bottom: 40px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* HERO SECTION */
.ongoing-hero {
  background: url('../images/ongoing-site.jpeg') center/cover no-repeat;
  padding: 100px 20px 60px;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 8px #003300;
}

.ongoing-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ongoing-hero p {
  font-size: 1.2rem;
}

/* CONTENT SECTION */
.ongoing-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  
  gap: 20px;
  justify-content: center;
}

.site-card {
  flex: 1 1 300px;
  background-color: #e6f2e6;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  padding-bottom: 50px;
  box-shadow: 0 4px 12px rgba(0, 60, 0, 0.1);
  transition: transform 0.2s ease;
}

.site-card:hover {
  transform: translateY(-5px);
  
}

.site-card h2 {
  margin-bottom: 10px;
  color: #2d742d;
}

.site-card p {
  font-size: 1rem;
  color: #445533;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 15px;
  background-color: rgba(0, 60, 0, 0.9);
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 60, 0, 0.95);
    width: 100%;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .ongoing-hero h1 {
    font-size: 2rem;
  }

  .ongoing-hero p {
    font-size: 1rem;
  }

  .site-card {
    flex: 1 1 100%;
  }
}
