/*
Theme Name: Sertbas Elektronik
Theme URI: https://sertbaselektronik.com.tr/
Author: Sertbas Elektronik
Description: Sertbas Elektronik kurumsal ses ve goruntu sistemleri icin tek sayfa WordPress temasi.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: sertbas-elektronik
*/

:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #dbe3ee;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --deep: #0b1f35;
  --blue: #153e75;
  --teal: #0f766e;
  --amber: #b45309;
  --green: #166534;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  text-transform: uppercase;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main {
  min-width: 0;
}

section[id],
.venue-category {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: auto;
  height: clamp(44px, 5vw, 56px);
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  min-width: 0;
  color: #293241;
  font-size: 15px;
  font-weight: 650;
}

.main-nav a {
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.header-action,
.button-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(21, 62, 117, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section .button-secondary,
.contact-section .button-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--blue);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(500px, calc(100svh - 176px));
  overflow: hidden;
  background: var(--deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 31, 53, 0.93), rgba(11, 31, 53, 0.74) 48%, rgba(11, 31, 53, 0.28));
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: hero-slide-fade 30s infinite;
}

.hero-slide-1 {
  background-image: url("assets/portfolio/hero-slide-collage.webp");
}

.hero-slide-2 {
  background-image: url("assets/portfolio/hero-slide-mango.webp");
  animation-delay: 6s;
}

.hero-slide-3 {
  background-image: url("assets/portfolio/hero-slide-dandy.webp");
  animation-delay: 12s;
}

.hero-slide-4 {
  background-image: url("assets/portfolio/hero-slide-conference.webp");
  animation-delay: 18s;
}

.hero-slide-5 {
  background-image: url("assets/portfolio/hero-slide-qlounge.webp");
  animation-delay: 24s;
}

@keyframes hero-slide-fade {
  0%,
  16% {
    opacity: 1;
  }

  21%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(11, 31, 53, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: 64px 0 56px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee7df;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: clamp(56px, 8vw, 88px) clamp(20px, 4vw, 56px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.capability-copy h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.section-heading p:not(.eyebrow),
.capability-copy p:not(.eyebrow),
.contact-section p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.stats-section {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.stat-card,
.project-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.stat-card {
  min-height: 180px;
  padding: 24px;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 950;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.stat-card:nth-child(2) strong {
  color: var(--teal);
}

.stat-card:nth-child(3) strong {
  color: var(--amber);
}

.stat-card:nth-child(4) strong {
  color: var(--green);
}

.reference-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1040px, 100%);
  margin: 24px auto 0;
}

.reference-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #ffffff;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.area-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.area-card:hover,
.area-card:focus-visible {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
  transform: translateY(-2px);
}

.area-card:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: 3px;
}

.area-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 620;
  object-fit: cover;
  background: var(--soft);
}

.area-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.area-body span,
.project-topline span,
.project-topline small {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.area-body h3,
.project-card h3,
.process-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
}

.area-body ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.area-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.area-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.venue-section {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venue-stack {
  display: grid;
  gap: 0;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.venue-category {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(24px, 4vw, 48px);
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.venue-category:first-child {
  padding-top: 0;
  border-top: 0;
}

.venue-category:last-child {
  padding-bottom: 0;
}

.venue-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 900;
}

.venue-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.venue-facts {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.venue-facts li {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #344054;
  font-weight: 760;
  line-height: 1.45;
}

.venue-facts li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.venue-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.venue-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 620;
  object-fit: cover;
  background: #e6edf5;
}

.venue-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.venue-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.venue-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.project-section {
  background: var(--deep);
  color: #ffffff;
}

.project-section .section-heading h2 {
  color: #ffffff;
}

.project-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.project-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  color: var(--ink);
}

.project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 620;
  object-fit: cover;
  background: #e6edf5;
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.project-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.project-topline small {
  max-width: 130px;
  color: #718096;
  text-align: right;
}

.project-card strong,
.project-count-link {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.project-count-link {
  width: fit-content;
  border-bottom: 2px solid rgba(21, 62, 117, 0.3);
  padding-bottom: 3px;
}

.project-count-link:hover,
.project-count-link:focus-visible {
  color: var(--teal);
  border-bottom-color: currentColor;
}

.project-count-link:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.22);
  outline-offset: 4px;
  border-radius: 4px;
}

.location-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    visibility 160ms ease;
}

.location-modal:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 53, 0.68);
  backdrop-filter: blur(8px);
}

.location-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(780px, calc(100svh - 32px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.location-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}

.location-panel-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 950;
}

.location-panel-header p:not(.eyebrow) {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--blue);
  font-weight: 850;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(21, 62, 117, 0.35);
  background: #f3f7fb;
}

.location-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.location-stat {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.location-stat strong {
  display: block;
  color: var(--blue);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  font-weight: 950;
}

.location-stat span {
  display: block;
  margin-top: 9px;
  color: #344054;
  font-weight: 800;
}

.location-section-stack {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
}

.location-list-section {
  min-width: 0;
}

.location-list-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.location-list-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.location-list-heading span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 0;
  padding-left: 24px;
}

.location-list li {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px 10px 8px;
  background: #ffffff;
  color: #344054;
  font-weight: 720;
  line-height: 1.35;
}

.location-list li::marker {
  color: var(--teal);
  font-weight: 900;
}

.location-list li span {
  overflow-wrap: anywhere;
}

.project-card p {
  margin: auto 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.capability-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.capability-item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.capability-item span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.capability-item:nth-child(3n) span {
  background: var(--amber);
}

.capability-item:nth-child(4n) span {
  background: var(--blue);
}

.capability-item p {
  margin: 0;
  color: #344054;
  font-weight: 700;
  line-height: 1.45;
}

.process-section {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.process-card {
  padding: 22px;
}

.process-card span {
  display: inline-flex;
  color: var(--teal);
  font-size: 14px;
  font-weight: 950;
}

.process-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  gap: 28px;
  align-items: center;
  padding: clamp(56px, 8vw, 88px) clamp(20px, 6vw, 80px);
  background: #eef6f5;
  border-bottom: 1px solid #c9dddb;
}

.contact-section > div:first-child {
  width: min(760px, 100%);
}

.contact-actions {
  display: grid;
  gap: 12px;
  justify-self: end;
  width: min(360px, 100%);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 36px clamp(20px, 4vw, 56px);
  background: #111827;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: thin;
  }

  .stats-grid,
  .project-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .venue-category,
  .capability-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 118px;
  }

  section[id] {
    scroll-margin-top: 118px;
  }

  .venue-category {
    scroll-margin-top: 118px;
  }

  .site-header {
    gap: 10px 14px;
    min-height: 82px;
    padding: 12px 16px 8px;
  }

  .brand-logo {
    height: 42px;
  }

  .header-action {
    min-height: 40px;
    padding: 10px 14px;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: min(590px, calc(100svh - 132px));
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(11, 31, 53, 0.9), rgba(11, 31, 53, 0.72) 60%, rgba(11, 31, 53, 0.44));
  }

  .hero-slide {
    background-position: 38% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 56px 0 46px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 16px;
  }

  .section-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .section-heading h2,
  .capability-copy h2,
  .contact-section h2 {
    font-size: 31px;
  }

  .stats-grid,
  .area-grid,
  .venue-gallery,
  .project-grid,
  .capability-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: auto;
  }

  .project-card {
    min-height: 250px;
  }

  .location-modal {
    padding: 12px;
  }

  .location-panel {
    max-height: calc(100svh - 24px);
  }

  .location-panel-header,
  .location-stat-grid,
  .location-list {
    grid-template-columns: 1fr;
  }

  .location-panel-header {
    gap: 16px;
  }

  .modal-close {
    justify-self: start;
  }

  .location-list-heading {
    display: grid;
    gap: 6px;
  }

  .location-list {
    padding-left: 22px;
  }

  .project-topline {
    display: grid;
  }

  .project-topline small {
    max-width: none;
    text-align: left;
  }

  .contact-section {
    padding: 56px 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide-1 {
    opacity: 1;
  }
}


body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
