
.site-header {
  width: 766px;
  height: 258px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  border-top: 3px solid #b72100;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}


.header-main {
  display: flex;
  height: 220px;
  width: 100%;
}


.logo-area {
  width: 250px;
  height: 100%;
  background: #fff repeating-linear-gradient(
    -45deg,
    #ffffff,
    #ffffff 2px,
    #f2f2f2 2px,
    #f2f2f2 4px
  );
  padding: 15px 20px;
  box-sizing: border-box;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 42px;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Brush Script MT', cursive, sans-serif;
  font-size: 46px;
  color: #000;
  line-height: 0.8;
}

.logo-subtitle {
  font-weight: 900;
  font-size: 26px;
  color: #b72100;
  letter-spacing: 1px;
  line-height: 1;
}

.tagline {
  margin: 0;
  font-style: italic;
  font-family: Georgia, serif;
  font-size: 22px;
  color: #444;
  line-height: 1.1;
  text-align: right;
}


.banner-area {
  width: 516px;
  height: 100%;
  position: relative;
 
  background: url('images/header_bg.PNG') center/cover no-repeat;
}


.overlay-stripes {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  display: flex;
}

.overlay-stripes span {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
}

.overlay-stripes span:nth-child(2) {
  background: rgba(0, 0, 0, 0.1);
}

.overlay-stripes span:nth-child(3) {
  background: rgba(0, 0, 0, 0.35);
}


.powtorz-badge {
  position: absolute;
  right: 0;
  bottom: 10px;
  background-color: #b72100;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 12px 3px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.header-nav {
  height: 38px;
  background-color: #b72100;
  width: 100%;
}

.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100%;
}

.header-nav li {
  flex: 1;
  height: 100%;
}

.header-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
  transition: background-color 0.2s ease;
}

.header-nav a:hover,
.header-nav a.active {
  background-color: #8e1a00;
}