@charset "UTF-8";
/* -------------------------------------------------------------
   Excalibur Sealants — FINAL REFINED VERSION (white header taller)
   ------------------------------------------------------------- */

body {
  position: relative;
  background: url(../images/brick.jpg) repeat center top;
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* --- HEADER STRUCTURE --- */
#masthead {
  position: relative;
  height: 215px; /* total height of white + green sections */
  margin-top: 0px; /* moves everything down slightly */
  z-index: 1;
}

/* --- WHITE BAR --- */
#white-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px; /* was 130px — +10 for better vertical spacing */
  background-color: #ffffff;
  z-index: 2;
}

/* --- GREEN BAR --- */
#green-bar {
  position: absolute;
  top: 140px; /* directly below the white header */
  left: 0;
  right: 0;
  height: 65px;
  background: linear-gradient(to bottom, #537756 0%, #4e7d51 50%, #537756 100%);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

/* --- LOGO CONTAINER --- */
#logo-container {
    position: relative;
    top: -204px; /* adjust freely to center text in green bar */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 400px;
    text-align: center;
    pointer-events: none;
}

/* --- LOGO IMAGE --- */
.logo {
  display: block;
  width: 372px;
  height: auto;
  margin: 0 auto;
  pointer-events: none;
}

/* --- MAIN WHITE TRANSLUCENT BOX --- */
#content-box {
    width: 658px;
    height: 400px;
    margin-top: -107px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 80px; /* visually balanced below header */
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px 60px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- TEXT & LINKS --- */
.contact-content {
  color: #000;
  font-size: 16px;
  line-height: 1.6em;
  text-align: center;
  width: 100%;
  max-width: 700px;
}

.contact-content a,
.backto a {
  color: #006633;
  font-weight: bold;
  text-decoration: none;
}
.contact-content a:hover,
.backto a:hover {
  text-decoration: underline;
}

.backto {
  margin-bottom: 25px;
  text-align: center;
}
