/* Global */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  background-color: #f4f4f4; /* pageBGColor */
}

.container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

ul {
  margin: 0;
  padding: 0;
}

.dark {
  float: left;
  padding: 15px;
  background: rgba(37, 89, 87, 1); /* darkBannerColor */
  color: rgb(211, 182, 120); /* lightText */
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid rgb(214, 71, 58); /* pageTopHighlight */
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.dark a {
  text-decoration: underline;
  color: rgb(211, 182, 120); /* lightText */
}

.span-accent {
  font-weight: bold;
  color: rgb(214, 71, 58); /* pageTopHighlight */
}

.header-return {
  background: pink;
  text-align: center;
}

/* Header Section */
header {
  background: rgba(37, 89, 87, 1); /* darkBannerColor */
  color: rgb(232, 235, 241);
  padding-top: 30px;
  min-height: 70px;
  text-shadow: 0.15em 0.15em 0.2em rgb(4, 41, 19); /* textShadow */
  border-bottom: rgb(214, 71, 58) 3px solid; /* pageTopHighlight */
}

header a {
  color: rgb(211, 182, 120); /* lightText */
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

header li {
  display: inline;
  padding: 0 20px 0 20px;
}

header #branding {
  float: left;
}

header #branding h1 {
  margin: 0;
}

header nav {
  float: right;
  margin-top: 10px;
}

header .highlight,
header .current a {
  color: rgb(214, 71, 58); /* pageTopHighlight */
  font-weight: bold;
}

header a:hover {
  color: #cccccc;
  font-weight: bold;
}

/* Showcase Section */
#showcase {
  background-image: url("../img/dental-showcase2.png");
  background-color: #cccccc;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
}

#showcase h1 {
  margin-top: 100px;
  color: white;
  font-size: 2.5em;
  margin-bottom: 10px;
  text-shadow: 0.1em 0.1em 0.5em rgb(4, 41, 19); /* textShadow */
}

#showcase p {
  font-size: 20px;
  color: white;
  text-shadow: 0.1em 0.1em 0.5em rgb(4, 41, 19); /* textShadow */
}

/* Welcome Section */
#welcome {
  color: rgb(116, 39, 33); /* darkText */
  margin-top: 10px;
  margin-bottom: 20px;
}

#welcome h1 {
  text-align: center;
}

#welcome .boxes {
  width: 90%;
  margin: auto;
}

#welcome .box1 {
  float: left;
  /* text-align: left; */
  width: 45%;
  margin: 0 10px 0 0;
}

#welcome .box2 {
  float: left;
  /* text-align: left; */
  width: 45%;
  margin: 0 0 0 10px;
}

/* Services Section */
#services {
  overflow: auto;
  padding: 0 0 10px 0;
  color: rgb(211, 182, 120); /* lightText */
  background: rgba(37, 89, 87, 1); /* darkBannerColor */
}

#services h1 {
  text-align: center;
}

#boxes {
  margin-top: 10px;
}

#services .box {
  float: left;
  text-align: center;
  width: 30%;
  padding: 5px 5px 20px 5px;
  /* padding: 10px; */
}

#services a {
  /* text-decoration: none; */
  color: rgb(211, 182, 120); /* lightText */
}
#services .box:hover {
  color: rgb(214, 71, 58); /* pageTopHighlight */
}

#services .box img {
  width: 40px;
  height: 40px;
}

/* Samples Page */
.sample-text {
  width: 80%;
  margin: 10px 10px 0px 10px;
  text-align: left;
  float: left;
}
.sample-text .highlight {
  /* color: var(--pageHighlight); */
  color: white;
  font-weight: bold;
  text-shadow: 0.15em 0.15em 0.2em black;
}

.sample-img {
  margin: 10px 10px 10px 10px;
  float: right;
}

/* Address Section */
#address {
  background: rgba(215, 201, 170, 1); /* lightBannerColor */
}
/* Main-col */
#google-map {
  float: left;
  width: 65%;
  /* border: 1px solid black; */
}

/* Main-col */
article#main-col {
  float: left;
  width: 60%;
}
/* Sidebar / Address */
aside#sidebar {
  float: right;
  width: 30%;
  margin-top: 10px;
}
article img {
  width: 40px;
}
aside li {
  margin-left: 40px;
}

/* Footer Section */
footer {
  /* margin-top: 20px; */
  border-top: rgba(238, 235, 211, 1) 3px solid; /* pageBottomHighlight */
  color: rgb(211, 182, 120); /* lightText */
  background-color: rgba(37, 89, 87, 1); /* darkBannerColor */
  padding-right: 10px;
  text-align: right;
  text-shadow: 0.15em 0.15em 0.2em rgb(4, 41, 19); /* textShadow */
}

/* Media Queries */
@media (max-width: 768px) {
  header #branding,
  header nav,
  header nav li,
  #services h1,
  #services ul,
  #services .box,
  #welcome .box1,
  #welcome .box2,
  article#main-col,
  aside#sidebar {
    float: none;
    text-align: center;
    width: 100%;
  }

  #welcome .box1,
  #welcome .box2 {
    width: 95%;
  }

  #google-map {
    float: none;
    width: 95%;
  }

  header {
    padding-bottom: 20px;
  }

  #showcase h1 {
    margin-top: 30px;
  }
}
