/* =========================================
   mySRD base styles
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { height: 100%; }

body, input, button, select, textarea {
  font-family: 'Lexend Deca', 'Lexend Deca Fallback', sans-serif !important;
}

body {
  background: #f4f6f8;
  color: #1f2937;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   Header
   ========================================= */
.site-header {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.header-top-bar {
  background: #0b1424;
  color: #fff;
  padding: 9px 0;
  font-size: 13px;
}

.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-top-bar .top-bar-left,
.header-top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-top-bar a {
  color: #fff;
  opacity: 0.9;
}
.header-top-bar a:hover { opacity: 1; text-decoration: none; }

.header-main {
  background: #fff;
  padding: 16px 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-area img.logo {
  height: 42px;
  width: auto;
}

.logo-text {
  border-left: 1px solid #d1d5db;
  padding-left: 16px;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 20px;
  color: #0b1424;
  font-weight: 700;
  display: block;
  letter-spacing: -0.01em;
}

.logo-text small {
  font-size: 13px;
  color: #6b7280;
  display: block;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .header-top-bar { font-size: 12px; }
  .header-top-bar .top-bar-left,
  .header-top-bar .top-bar-right { gap: 14px; }
  .mobile-hide { display: none !important; }
  .logo-area img.logo { height: 32px; }
  .logo-text strong { font-size: 17px; }
  .logo-text small { font-size: 12px; }
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: #0b1424;
  color: #cbd5e1;
  padding: 32px 0 20px;
  font-size: 14px;
  flex-shrink: 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.site-footer a { color: #93c5fd; }
.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.site-footer .copy {
  font-size: 12px;
  color: #94a3b8;
}
