:root {
  --primary-color: #cdac81;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin:0;
}

a{
  color: var(--primary-color);
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

header {
  background: #f3f2f1;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  height: 40px;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
  color: #333;
}
nav a.active {
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: underline;
}
nav a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* footer {
  bottom: 0;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
} */

footer {
  background: #f3f2f1;
  padding: 1rem;
  text-align: center;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.footer-content {
  text-align: center;
  font-size: 0.9rem;
  width: 100%;
}

.button {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  text-decoration: none;
}

header, footer {
  background: #f3f2f1;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Hide nav and show hamburger on mobile */
@media (max-width: 800px) {
  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #f3f2f1;
    padding: 1rem;
    border-radius: 8px;
    position: absolute;
    top: 60px; /* Adjust to your header height */
    right: 1rem;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  nav.show {
    display: flex;
    z-index: 1;
  }

  #menu-toggle {
    display: block !important;
  }

  .header-inner {
    position: relative; /* so nav absolute is relative to this */
  }
}
