@charset "utf-8";

/* =========================
   GLOBAL RESET + BOX MODEL
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  background-color: #f5f5f5;
  background-image: url(background.png);
  overflow-x: auto; /* allow horizontal scroll instead of layout collapse */
}

/* =========================
   IMAGES
   ========================= */
img {
  max-width: 100%;
  height: auto;
}

/* =========================
   TYPOGRAPHY
   ========================= */
p {
  margin: 0 10px 12px 10px;
  text-align: left;
  color: #333333;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.section-title {
  color: green;
}

h1, h2 {
  margin-left: 10px;
  color: #333333;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

h3 {
  text-align: center;
  color: #333333;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}

/* =========================
   LINKS
   ========================= */
a {
  text-decoration: none;
  color: #333333;
}

a:hover {
  color: green;
}

/* =========================
   PAGE LAYOUT (GRID)
   ========================= */
div.wrapbox {
  width: 982px;
  min-width: 982px; /* prevents zoom collapse */
  margin: 10px auto;
  background-color: #eeeeee;
  box-shadow: 0 0 15px black;
  border: 1px solid #555555;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;

  display: grid;
  grid-template-columns: 605px 365px;
  grid-auto-rows: auto;
  column-gap: 10px;
}

/* Full width rows */
div.bannerbox,
div.cities,
div.copy {
  grid-column: 1 / span 2;
}

/* =========================
   BANNER
   ========================= */
div.bannerbox {
  height: 85px;
  border-bottom: 3px solid #eeeeee;
}

div.bannerbox1 {
  width: 100%;
  height: 85px;
  overflow: hidden;
}

div.bannerbox1 img {
  width: 100%;
  height: 85px;
  object-fit: cover;
}

/* =========================
   LEFT COLUMN (TEXT)
   ========================= */
div.textbox {
  background-color: white;
  margin: 10px 0 10px 10px;
  padding: 10px 0;
}

/* =========================
   RIGHT COLUMN (CONTACT)
   ========================= */
div.contactbox {
  background-color: white;
  margin: 10px 10px 10px 0;
  padding-bottom: 15px;
}

/* Gray contact panel */
div.contactbox2 {
  width: 300px;
  margin: 10px auto 0 auto;
  background-color: #f5f5f5;
  box-shadow: 0 0 10px gray;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 8px;
}

/* Center phone/email */
p.contact-text {
  margin: 0;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

/* =========================
   LOGOS (MATCH ORIGINAL)
   ========================= */

/* ISA + WSNLA side by side */
div.isa {
  text-align: center;
  width: 335px;
  margin: 25px auto 0 auto;
  font-size: 0; /* removes whitespace gap */
}

div.isa a,
div.isa img {
  display: inline-block;
  vertical-align: middle;
}

div.isa a {
  margin: 0 6px;
}

/* ASCA centered below */
div.ASCA {
  text-align: center;
  width: 335px;
  margin: 15px auto;
  font-size: 0;
}

div.ASCA a,
div.ASCA img {
  display: inline-block;
}

/* Keep logos + fungus inside white column */
div.imgbox {
  width: 100%;
  background-color: white;
  margin-top: 20px;
}

/* =========================
   HORIZONTAL DIVIDER
   ========================= */
div.hr {
  height: 10px;
  background-color: #eeeeee;
  margin: 10px 0;
}

/* =========================
   FOOTER
   ========================= */
div.cities,
div.copy {
  text-align: center;
  font: 10px arial, sans-serif;
  color: #333333;
  margin: 10px 0;
}











