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

html, body {
  height: 100%;
  overflow-y: auto;  
  font-family: 'Arial', sans-serif;
  background-color: #ece8e1;
  color: #2c2c2c;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #f5f3ef;
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-bottom: 1px solid #dcd8d2;
}

.site-header .logo {
  font-size: 2rem;
  font-weight: bold;
  color: #2c2c2c;
  text-decoration: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-hero {
  font-family: Raleway,sans-serif;
  font-size: 26px;
  cursor: pointer;
  text-decoration: none;
  color: black;
}

.navbar-nav {
  list-style: none;
  display: flex;
}

.navbar-nav li {
  margin-left: 0.5rem;
}

.navbar-nav li a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
  background-color: #dcd8d2;
  color: #1a1a1a;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  border: none;
  background: none;
}

.navbar-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #2c2c2c;
  margin: 4px 0;
  transition: all 0.3s;
}

.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: #f5f3ef;
  padding: 0.8rem;
  font-size: 0.9rem;
  color: #4d4d4d;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.03);
  z-index: 100;
  border-top: 1px solid #dcd8d2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.admin-btn {
  background-color: #2c2c2c;
  color: #f5f3ef;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.admin-btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

main {
  margin-top: 70px;    
  margin-bottom: 40px; 
  min-height: calc(100vh - 110px); 
  display: block;      
}

@media (max-width: 600px) {
    .navbar-hero {
      display: none;
    }
}