html, body {
  user-select: none;
  caret-color: transparent;
}

/* Prevent any element from showing a caret */
* {
  caret-color: transparent;
}

/* Allow normal behavior for form elements and links */
input, textarea, button, select, a[href] {
  user-select: auto;
  caret-color: auto;
}
body, h1, h2, h3, h4, p, a, ul, li, label, input, textarea, button, nav {
  font-family: 'Forum', serif;
  background-color: #2f322d;
  color: #ccc;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  color: #eee;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.2rem;
  color: #ddd;
  text-align: center;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #0e0e0e;
}

.nav-center a, .social-right a {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.6rem;
  font-size: 1rem;
}

.nav-center a:hover, .social-right a:hover {
  color: #fff;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  color: #eee;
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 2rem;
  color: #aaa;
}

.contact-box-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem 4rem;
}

.spacer {
  flex: 0 0 100px; /* adjust this to push further right */
}

.contact-box {
  background-color: #181818;
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  flex: 1 1 400px;
  width: 100%;
}

.contact-box h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-box label {
  margin-bottom: 0.4rem;
  display: block;
  font-size: 1rem;
  color: #bbb;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #ccc;
  margin-bottom: 1rem;
  font-family: 'Forum', serif;
}

.contact-box button {
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #202020;
  color: #fff;
  border: 1px solid #444;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
}

.contact-box button:hover {
  background-color: #333;
}

.orc-side {
  flex-shrink: 0;
}

.orc-image {
  width: 234px !important;
  height: 407px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px #000);
}


 .social-footer {
      text-align: center;
      margin-top: 4rem;
      padding-bottom: 2rem;
    }

    .social-footer a {
      display: inline-block;
      margin: 0.3rem;
      font-size: 1.3rem;
      color: white;
      padding: 0.4rem 0.8rem;
      border-radius: 4px;
      text-decoration: none;
      background-color: #202020;
      box-shadow: 0 0 8px #ff3333;
      transition: all 0.2s;
    }

    .social-footer a:hover {
      background-color: #444;
      box-shadow: 0 0 12px #ff4444;
    }


footer {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  padding-bottom: 2rem;
}

@media (max-width: 900px) {
  .contact-box-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .orc-image {
    margin-top: 2rem;
    width: 234px !important;
    height: 407px !important;
  }

  .spacer {
    display: none;
  }
body {
  user-select: none;
}

body * {
  caret-color: transparent !important;
  outline: none !important;
}

input, textarea, button, select, a[href] {
  user-select: auto;
  caret-color: auto !important;
  outline: revert !important;
}

}

