/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
}

/* LINKS */
a {
  text-decoration: none;
  color: #999;
  display: block;
}

a:hover {
  color: #dd3333;
}

/* DESKTOP LAYOUT */
.layout {
  display: flex;
}

/* STATIC SIDEBAR */
.sidebar {
  width: 260px;
  padding: 40px 40px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background: #fff;
}

.sidebar h1 {
  font-size: 24px;
  margin-bottom: 2px;
}
  
.sidebar h1 a {
  color: inherit;
  text-decoration: none;
  font: inherit;
}

h1 a,
h1 a:visited,
h1 a:hover,
h1 a:active {
  color: inherit;
  text-decoration: none;
  font: inherit;
}

h1 a:hover {
  color: #dd3333;
}


.sidebar .contact {
  font-size: 12px;
  color: #666;
  margin-bottom: 30px;
}

.sidebar h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

.sidebar a {
  margin-bottom: 6px;
  font-size: 12px;
}

.site-footer {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  opacity: 0.7;
}


/* SCROLLING CONTENT */
.content {
  margin-left: 260px;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 0px;
  height: 100vh;
  overflow-y: auto;
}

.content img {
  width: 100%;
  margin: 4px 0;
}

.text {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.inline-text a {
  display: inline;
}

/* MOBILE HEADER */
.mobile-header {
  display: none;
  border-bottom: 1px solid #ddd;
}

.mobile-brand {
  text-align: center;
  padding: 20px;
}

.mobile-brand h1 {
  font-size: 28px;
}

.mobile-brand p {
  font-size: 13px;
  color: #666;
}

/* MOBILE MENU BAR */
.mobile-menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

#hamburger {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  background: #fff;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.menu-section {
  border-bottom: 1px solid #ddd;
}

.menu-section h3 {
  padding: 15px 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.menu-section a {
  padding: 10px 20px;
  font-size: 14px;
  color: #999;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sidebar {
    display: none;
  }

  .layout {
    flex-direction: column;
  }

  .content {
    margin-left: 0;
    height: auto;
    overflow: visible;
    padding: 20px;
  }

  .mobile-header {
    display: block;
  }
}
