/* public/css/layout.css — HEADER, FOOTER, CONTAINERS */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  backdrop-filter: blur(12px);
  z-index: 1000;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { height: 46px; object-fit: contain; }

/* Right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

/* Footer */
footer {
  margin-top: auto;
  padding: 2.5rem 1rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}
.copyright { color: var(--text-light); font-weight: 500; }
.footer-links { display: flex; align-items: center; gap: 1.8rem; }
.footer-links a { color: #e30613; text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; color: #ff1a26; }
.separator { color: var(--text-light); }

/* Responsive */
@media (max-width: 768px) {
  .header { flex-direction: column; gap: 1.2rem; text-align: center; }
  .header-right { gap: 1rem; }
  .footer-content { flex-direction: column; text-align: center; }
}