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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background: #faf8f5;
  color: #333;
}

/* Header */
.site-header {
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #6b4e3d;
}

/* Navigation */
.nav-links a {
  margin-left: 1rem;
  text-decoration: none;
  color: #6b4e3d;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b4e3d;
}

/* Page layout */
.content {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.site-footer {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  color: #777;
  font-size: 0.9rem;
}

/* Google form iframe */
.form-container iframe {
  width: 100%;
  height: 800px;
  border: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background: white;
    width: 200px;
    padding: 1rem;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: none;
    flex-direction: column;
  }

  .nav-links a {
    margin: 0.5rem 0;
  }

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

  .menu-toggle {
    display: block;
  }
}
