/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'PT Serif', serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
header {
  background-color: #030011ec;
  color: #f5f5f5;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img { height: 50px; }

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  margin-left: 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  color: #f5f5f5;
  transition: color 0.3s ease;
}
nav a:hover { color: #f1c40f; }

/* ===== FOOTER ===== */
.footer { background-color: #030011ec; color: #ddd; padding-top: 3rem; }

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2rem;
}

.footer-brand {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-logo { max-width: 200px; margin-bottom: 1rem; }
.footer-address { line-height: 1.6; font-size: 0.9rem; margin-bottom: 1rem; }

.social-icons { display: flex; gap: 0.8rem; }
.social-icons a {
  width: 36px; height: 36px; background-color: white;
  border-radius: 50%; display: flex; justify-content: center; align-items: center;
  transition: 0.3s ease;
}
.social-icons a img { width: 18px; height: 18px; }
.social-icons a:hover { background-color: #f1c40f; }

.footer-nav {
  display: flex; gap: 4rem; flex: 1 1 300px;
  margin-top: 1rem; flex-wrap: wrap;
}
.footer-nav .nav-header { font-weight: 600; margin-bottom: 1rem; }
.footer-nav a { display: block; color: #ddd; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-nav a:hover { text-decoration: underline; }

.footer-bottom {
  text-align: center; border-top: 1px solid #c2ae03;
  margin-top: 2rem; padding: 1rem 2rem;
  font-size: 0.8rem; color: #bbb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header { flex-direction: column; text-align: center; }
  nav { margin-top: 0.8rem; flex-direction: column; gap: 0.5rem; }
  nav a { margin: 0.3rem 0; }
  .footer .container { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { flex-direction: column; gap: 1.5rem; margin-top: 2rem; align-items: center; }
}
