body {
  background-color: #412615;
  font-family: 'Gochi Hand';
  color: #f4f1ed;
  margin: 0;
  padding: 0;
  background-image: url('/images/stars.jpg');
  background-size: cover;
  background-position: center;
}


h1 {
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #f4f1ed;
}

.content-box h2 {
  color: #f4f1ed;
  font-weight: 600;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #a58f86;
  padding-bottom: 4px;
}


.wrapper {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;  /* a bit more padding for breathing room */
  background-color: rgba(65, 38, 21, 0.85); /* dark brown with transparency */
  border: 1px solid #a58f86; /* softer border like header */
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4); /* a little stronger shadow for depth */
  border-radius: 12px;
}


header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #999;
}

header {
  background-color: #412615;
  color: #412615;
  padding: 1.5rem;
  border: 2px solid #a58f86;
  margin-bottom: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 5;
}

#divdecor {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 110px;
  transform: rotate(13deg);
  z-index: 10;
  pointer-events: none;
}



h1 {
  font-size: 2.5rem;
  margin: 0;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  text-decoration: none;
  color: #d6c9bc;
  margin: 0 0.5rem;
  font-weight: 600;
}

nav a:hover {
  color: #f4f1ed;
  text-decoration: underline;
}


.content-box {
  background-color: rgba(65, 38, 21, 0.6); /* more transparent */
  border: 1px solid #a58f86; /* softer, matching header */
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(165, 143, 134, 0.3); /* subtle warm glow */
  color: #f4f1ed; /* lighter text */
}


ul {
  padding-left: 1.2rem;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: brown;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6a4e42;
  color: #f4f1ed;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(106, 78, 66, 0.6);
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.center-box {
  text-align: center;
  margin-top: 2em;
}

.btn:hover {
  background-color: #7b5f52;
}

/* Already in your referenced CSS */
/* For two columns side-by-side with responsive fallback */
.responsive-two-column-grid {
    display: block;
    margin-top: 1.5rem;
}

.responsive-two-column-grid > * {
    padding: 1rem;
}

@media (min-width: 768px) {
    .responsive-two-column-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* paper texture and style */
.inner {
    background-color: #000;
    border: 1px solid #111;
    padding: 1rem;
    margin: 2rem 0;
    background: url(/images/brownstars.jpg);
    background-size: 93%;
    background-position: -0px -50px;
    border-radius: 3px;
    color: #3d2b1f;
}

/* box style */
.box1 {
  background-color: #000;
  background-image: url(/images/paper2.jpg);
  background-repeat: no-repeat;
  background-size: cover; /* or try 'contain' or specific % */
  background-position: center top; /* shift it vertically */
  border: 1px solid #111;
  padding: 1rem;
  border-radius: 4px;
  color: #412615;
  margin-bottom: 1.5em;  /* increase bottom margin for spacing */
}
.box1 {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

#divdecor {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 110px;
  transform: rotate(13deg);
  pointer-events: none;
  z-index: 10;
}

.request-box {
  background: url(/images/paper2.jpg);
  border: 1px solid #412615;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  color: #412615;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.request-box h3 {
  font-family: 'Georgia', serif;
  margin-bottom: 1rem;
}

.request-box form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.request-box label {
  font-weight: bold;
}

.request-box select,
.request-box textarea {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: 'Georgia', serif;
}

.request-box button {
  background-color: #412615;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-family: 'Georgia', serif;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.request-box input,
.request-box select,
.request-box textarea {
  color: #412615; /* or white if your background is dark */
  background-color: #fff8f2; /* optional: soft paper-like bg */
}


.request-box button:hover {
  background-color: #694c39;
}
