/* styles.css – ONLY shared styles (nav, footer, resets) */
:root {
  --gray: #2c2c2c;
  --white: #ffffff;
}
*,
*::before,
*::after { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-wrapper { flex: 1; display: flex; flex-direction: column; }

/* NAVIGATION */
nav {
  background: var(--gray);
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}
.logo img { height: 50px; }
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2rem;
  transition: color .3s;
}
.nav-links a:hover { color: #5c9ce5; }

/* FOOTER */
footer {
  background: var(--gray);
  color: #aaa;
  padding: 3rem 5% 2rem;
  margin-top: auto;
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  align-items: center;
}
.footer-contact a { color: #5c9ce5; text-decoration: none; }
.footer-social a {
  color: #aaa;
  font-size: 1.8rem;
  margin: 0 1rem;
  transition: .3s;
}
.footer-social a:hover { color: #5c9ce5; }

@media (max-width: 640px) {
  .nav-links { margin-top:1rem; width:100%; justify-content:center; }
  .footer-container { grid-template-columns:1fr; text-align:center; }
}