@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
@import "./header.css";
@import "./footer.css";
@import "./main-pages.css";
@import "./main-sections.css";

:root {
  --main-font-color: #5b4c45;
}

/*************************************************
UNIVERSAL RESET
*************************************************/

* {
  box-sizing: border-box;
  line-height: 1.618;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  color: var(--main-font-color);
  font-family: "Source Sans Pro", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
p,
blockquote,
figure,
form,
fieldset,
input,
legend,
pre,
abbr,
button {
  margin: 0;
  padding: 0;
}

pre,
code,
address,
caption,
th,
figcaption {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
}

fieldset,
iframe {
  border: 0;
}

caption,
th {
  text-align: left;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*************************************************
UNIVERSAL TYPOGRAPHY
*************************************************/

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  line-height: 1.618;
  font-family: "Source Sans Pro", sans-serif;
}

/*************************************************
STANDARD PAGE
*************************************************/

hgroup.title-banner {
  background-color: #f4f4f4;
  min-height: 144px;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
}

hgroup.title-banner > div.title-banner-content {
  max-width: 1216px;
  width: 100%;
  padding: 0rem 1.618rem;
}

/*************************************************
  COMPONENT: UNIVERSAL CONTACT FORM - MEDIA QUERIES
  *************************************************/
  
  /* RESPONSIVE ----------------
  For Mobile: Portrait
  --------------------------- */
  
  @media only screen and (max-width: 767px) and (orientation: portrait) {

    hgroup.title-banner > div.title-banner-content {
      text-align: center;
    }

  }
  
  /* RESPONSIVE ----------------
  For Mobile: Landscape
  --------------------------- */
  
  @media only screen and (max-width: 767px) and (orientation: landscape) {
  }
  
  /* RESPONSIVE ----------------
  For Desktops and Tablets
  --------------------------- */
  
  @media only screen and (min-width: 768px) {
  }