/*
Theme Name: Department Child Theme
Template: astra
Version: 1.0.0
Description: Custom department frontend theme.
Author: Department Website
*/

:root {
  --dept-blue: #003b71;
  --dept-light: #f5f7fa;
  --dept-text: #1f2933;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dept-text);
  background: white;
}

.dept-header {
  width: 100%;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 999;
}

.dept-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dept-logo {
  font-weight: 700;
  font-size: 20px;
  color: var(--dept-blue);
  text-decoration: none;
}

.dept-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dept-menu a {
  text-decoration: none;
  color: var(--dept-text);
  font-weight: 500;
}

.dept-menu a:hover {
  color: var(--dept-blue);
}

.dept-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 28px;
}

.dept-full-page {
  width: 100%;
  min-height: 80vh;
}

.dept-footer {
  border-top: 1px solid #e5e7eb;
  padding: 28px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 768px) {
  .dept-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .dept-menu {
    flex-direction: column;
    gap: 10px;
  }
}