/*
Theme Name: Barracks Media Theme (Editable Home)
Author: Barracks Media INC.
Description: Same as the original, but front page now supports content editing.
Version: 1.6
License: GNU General Public License v2 or later
Text Domain: barracks-media-theme
*/

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

body {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

#hamburger-toggle {
  display: block;
  font-size: 32px;
  background: none;
  border: none;
  color: #000;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

#site-navigation {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 8px;
  z-index: 500;
}

#site-navigation.active {
  display: flex;
}

#site-navigation a {
  color: #fff;
  text-decoration: none;
  margin: 8px 0;
}
