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

html {
  scroll-padding-top: 100px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #fffef7;
  color: #3e2723;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Navigation */
header {
  background: rgba(109, 76, 65, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4a574;
  text-decoration: none;
  letter-spacing: 1px;
  padding-left: 0;
  gap: 0.25rem;
}

.logo img {
  background: transparent;
  border-radius: 8px;
  padding: 5px;
  height: 80px;
  width: auto;
}

.logo span {
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #f5deb3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4a574;
}

.mobile-menu-btn {
  display: none;
}

/* TODO everything between nav and footer */

/* Footer */
footer {
  background: rgba(109, 76, 65, 0.95);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #d4a574;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: #d7ccc8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d4a574;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  color: #a1887f;
}

@media (max-width: 968px) {

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #d4a574;
    cursor: pointer;
    padding: 0.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(109, 76, 65, 0.95) !important;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 999;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }
}
