
/* General styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-image: url('wood.jpg');
    background-repeat: repeat-y;
    background-size: auto 100%;
    background-position: center;
    background-attachment: fixed;
    background-color: #2b0f0a;
    background-size: cover;
    color: #f5e9d3;
    text-align: center;
}

/* Container for wood layout */
.wood-background {
    display: flex;
    justify-content: center;
}

/* Main content panel */
.content-wrapper {
    width: 90%;
    max-width: 768px;
    background-color: #2b0f0a;
    min-height: 100vh;
    max-width: 900px;
    margin: 0 auto;
    background-color: #3d1d1d; /* dark background behind content */
    box-shadow:
        -15px 0 30px rgba(0, 0, 0, 0.5), /* Left shadow */
        15px 0 30px rgba(0, 0, 0, 0.5);  /* Right shadow */
    padding: 0;
}

/* Header */
.site-header {
    background-color: #701f1f;
    padding: 1em 0;
}

.title {
    font-size: 3em;
    line-height: 1.2;
    margin: 0;
    color: #f5e9d3;
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: .8em;
    margin-top: 0em;
    border-top: 2px solid #d2a659;
    border-bottom: 2px solid #d2a659;
    padding: 0.5em 0;
    font-weight: bold;
    flex-wrap: wrap;
}

.nav-bar a {
    color: #f5e9d3;
    text-decoration: none;
}

/* Hero image */
.hero-image {
    text-align: center;
    margin: 2em 0;
}

.hero-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: none;
}

/* Welcome section */
.welcome-section h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.welcome-section p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    font-style: italic;
}

/* Call to action button */
.cta-button {
    background-color: #701f1f;
    color: #f5e9d3;
    padding: 1em 2em;
    text-decoration: none;
    font-weight: bold;
    border: none;
    display: inline-block;
    margin-bottom: 2em;
}

.button-54 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  border: 3px solid;
  padding: 0.25em 0.5em;
  box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-54:active {
  box-shadow: 0px 0px 0px 0px;
  top: 5px;
  left: 5px;
}

@media (min-width: 768px) {
  .button-54 {
    padding: 0.25em 0.75em;
  }
}
