/*
Theme Name: Aviator Hamburg Local
Version: 0.1.0
Description: Local development theme for Aviator Hamburg before Divi is installed.
*/

:root {
  --avh-ink: #101820;
  --avh-muted: #536171;
  --avh-paper: #f4f7fa;
  --avh-line: #dce4ec;
  --avh-blue: #3fb4d8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--avh-ink);
  background: var(--avh-paper);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(20px, 6vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 13, 18, 0.94);
  color: #f8fafc;
}

.site-brand {
  display: grid;
  gap: 0;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-brand span {
  color: var(--avh-blue);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-brand strong {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #c9d3df;
  font-size: 14px;
}

.site-nav a {
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a:hover {
  color: #ffffff;
}

.site-nav-login {
  color: #ffffff;
  font-weight: 800;
}

.site-main > .wp-block-post-title,
.site-main > h1.entry-title {
  display: none;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 6vw, 72px);
  background: #0c1218;
  color: #b8c2cf;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #ffffff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.site-footer a {
  color: #d9e3ee;
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
