/* Base Styles */
body {
  font-family: 'Cormorant SC, Times New Roman, Sans-Serif;
  font-size: 20px;
  line-height: 1.6;
  color: #957d60;
  background-color: #f2eade;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: Caveat, sans-serif;
  color: #111111;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }

/* Links */
a {
  color: #957d60;
  text-decoration: underline;
  transition: all 0.2s ease;
}
a:hover {
  color: #ffffff;
}

/* Layout Container */
.container, main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
}

/* Cards / Boxes */
.card, .box, section {
  background: #f2eade;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 1.5em;
  margin-bottom: 1.5em;
}

/* Buttons */
.button, button, .btn {
  display: inline-block;
  background: #957d60;
  color: #ffffff;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 8px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.button:hover, button:hover, .btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Header */
header {
  background: #111111;
  color: #f2eade;
  padding: 2em;
  text-align: center;
}
header h1 {
  color: #f2eade;
  margin: 0;
}
header p {
  color: #f2eadecc;
  margin: 0.5em 0 0 0;
}

/* Navigation */
nav a {
  color: #957d60;
  margin: 0 1em;
  text-decoration: none;
}
nav a:hover {
  color: #ffffff;
}

/* Footer */
footer {
  text-align: center;
  padding: 2em;
  color: #957d6099;
  font-size: 0.9em;
}