/*
Theme Name: Archer
Author: Patrik Bergqvist
Description: Tema till Archer Affärsnätverk
Version: 1.2
*/


body {
  font-family: sans-serif;
  margin:0;
  padding: 0;
  line-height: 1.5;
}

.content-area {
  display: flex; 
  justify-content: center; 
  padding: 2rem;
  padding-bottom: 5rem;
}

.entry-title {
  font-size:2rem;
}

/* Header */
header {
  background-color: #fff;
}
header .logo {
  display: block;
  height:80px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner h1 a {
  color: white;
  text-decoration: none;
}

#menu-toggle {
  font-size: 3rem;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  margin-top:-10px;
  margin-right: 20px;
  width:50px !important;
}

.close-container {
  display: flex;
  justify-content: end;
}

#close-menu {
  color: black;
  font-size: 3rem;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  width:50px !important;
  margin-right: 0px;
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 998;
}

/* Side Menu */
#side-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  color: black;
  transition: right 0.3s;
  z-index: 999;
  box-sizing: border-box;
  padding-left:20px;
  padding-right: 20px;
}

#side-menu .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

#side-menu .menu li {
  margin: 0;
  padding:15px 0px;
  list-style: none;
  border-bottom: solid 1px #ddd;
  font-size: 1.2rem;
}

#side-menu .menu li a {
  color: black;
  text-decoration: none;
}

/* Active State */
#side-menu.active {
  right: 0;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}
