/* Header/Nav full width */
header {
  background:#121414;
  padding:20px 40px;
  border-bottom:2px solid #2a2f2a;
  display:flex;
  justify-content: space-between;
  align-items: center;
  width:100%;
  box-sizing:border-box;
}

header h1 {
  color:#e6851a;
  margin:0;
  font-size:32px; /* bigger site title */
}

nav {
  display:flex;
  gap:30px;
}

nav a {
  color:#eee;
  font-size:20px; /* bigger menu text */
  font-weight:bold;
  text-decoration:none;
  padding:10px 15px;
  transition: background 0.3s, color 0.3s;
  border-radius:6px;
}

nav a:hover {
  background:#e6851a;
  color:black;
}

/* Make hero, camera-grid, and other content match width */
.hero, .features, .camera-grid, .logs, #map {
  max-width:1200px;
  margin:0 auto;
}
footer .footer-content {
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
  align-items:center;
}

footer .footer-top {
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

footer .socials {
  display:flex;
  gap:15px;
}

footer .social-icon {
  display:flex;
  justify-content:center;
  align-items:center;
  width:35px;
  height:35px;
  background:#f4a261;
  color:black;
  font-weight:bold;
  border-radius:50%;
  text-decoration:none;
  transition: transform 0.3s;
}

footer .social-icon:hover {
  transform: scale(1.2);
  background:#e76f51;
}

footer .footer-links a {
  color:#f4a261;
  text-decoration:none;
}

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

/* Mobile responsiveness */
@media screen and (max-width:768px) {
  footer .footer-content {
    align-items:center;
    text-align:center;
  }
  footer .footer-top {
    flex-direction:column;
  }
}

