/* style.css */
/* Place this file in the site root (e.g. public_html/style.css) */

:root {
  --text-color: #444444;
  --accent-color: #D4A017;
  --background-color: #FAF9F5;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 20px;
}
.container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
header, footer {
  text-align: center;
  margin-bottom: 20px;
}
nav {
  position: relative;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-color);
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
img.logo {
  max-width: 100%;
  height: auto;
}
h2, h3 {
  color: var(--accent-color);
  margin-bottom: 0.5em;
}
section {
  margin-bottom: 1.5em;
}
.columns {
  columns: 2;
  column-gap: 1.5em;
}

@media (max-width: 600px) {
  .container {
    padding: 10px;
  }
  .nav-toggle {
    display: block;
  }
  nav ul {
    flex-direction: column;
    display: none;
  }
  nav ul.show {
    display: flex;
  }
  .columns {
    columns: 1;
  }
}