/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  /* scroll-behavior: smooth; java script instead*/
}

body {
  width: 100%;
  font-family: "Merriweather Sans", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #555;
  background-color: #fff;
}
.container {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.btn {
  display: block;
  padding: .6rem 1.2rem;
  background-color: orangered;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  text-decoration: none;
  width: 100%;
}

.btn:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
h1 {
  font-size: 3rem;
  letter-spacing: -1px;
  font-family: "Archivo Black";
  text-align: center;
  padding-top: 2rem;
  font-weight: 700;
  background: url("../pg.bkg.jpg");
  background-size: cover;
  background-clip: text;
}
h2 {
  font-size: 2rem;
  padding-bottom: 2rem;
}
h3 {
  font-size: 1.5rem;
  padding-bottom: 2rem;
}
h4 {
  font-size: 1.4rem;
  padding-bottom: 2rem;
}
h5 {
  font-size: 1.2rem;
  padding-bottom: 2rem;
}
p {
  font-size: 1rem;
  padding-bottom: 2rem;
}
.emphasis {
  font-style: italic;
}
/**************************/
/* HEADER CONTAINER */
/**************************/
.header-container {
  margin: 0;
  padding: 0;  
  width: 100%;
  height: 250px;
  background-image: url("../pg-bkg-sm.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #fff;
  display: flex;
  gap: 160px;
  flex-direction: column;
  align-items: center; 
}

.nav {
  display: flex;
  align-self: flex-start;
  width: 100%;
  height: auto;
}
.nav-ul {
  margin-top: 20px;   
  list-style: none;
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
}

.nav-link:link,
.nav-link:visited {
  display: flex;
  padding: 1rem 2rem;
  font-weight: 600;
  font-variant: small-caps;
  text-decoration: none;  
  color: #fff;
  font-size: 1.2rem;
}
.nav-link:hover,
.nav-link:active {
  background-color: rgba(255, 69, 0, 0.7);
  color: #000;
}
.top-button {
  display: flex;
  width: 100%;
  height: 30px;
  align-self: flex-end;
}
/**************************/
/* HERO CONTAINER */
/**************************/

.hero-container {
  width: 100%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  display: block;
  background-color: #fff;
}
.hero-text {
  width: 100%;
  padding-top: 0;
}
 
/**************************/
/* SECTION MAIN CONTAINER */
/**************************/
.main-description {
  width: 100%;
  height: auto;
  background-image: url("../pg-bkg-lg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: 500;
  line-height: 1.9;
}
.tagline {
  padding: 5% 5% 5% 10%;
    display: block;
        width: 100%;         
        background-color: bisque;
}
.m-d-1 {
  padding: 5% 10%;
}
.main-description-indent {
  width: 100%;
  padding: 3rem 5%;
  background-color: bisque;
  color: #333;
}
/**************************/
/* SECTION ASIDE */
/**************************/
.aside-container {
  width: 100%;
  height: auto;
  background-color: #555;
}
.aside-text {
  padding: 7%;
  padding-top: 10%;
  border: none;
  color: #fff;
  line-height: 2;
}
.aside-text p {
  font-size: 1.4rem;
}
figure {
  display: block;
  height: auto;
  padding: 5%;
  text-align: center;
}
figure img {
  width: 50%;
  height: auto;
}
figcaption {
  font-size: 1rem;
}

/**************************/
/* SECTION TESTIMONIALS */
/**************************/
.testimonials-container {
  width: 100%;
  height: auto;
  background-color: #fff;;
}
.testimonial-subheading {
  font-size: 3rem;
  color: #bbb;
  padding-left: 5%;
  padding-top: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
.testimonials {
  padding: 5% 9%;
  padding-bottom: 10%;
  font-size: 1.3rem;
}
.testimonial-name {
  font-size: 0.9rem;
  padding-top: 0.8rem;
}
/**************************/
/* SECTION ABOUT */
/**************************/
.about-us-section {
  width: 100%;
  height: auto;
  background-image: linear-gradient(to right top, #fff, rgb(247, 147, 71));
} 

.who { 
  background-image: url("../achterberg-masonry.jpg");
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat; 
  padding: 11rem 7% 8rem;
  display: block;   
}

/**************************/
/* SECTION GALLERY */
/**************************/
.gallery-section {
  width: 100%;
  background-color: #000;
  height: auto;
  padding-bottom: 1rem;
}
.gallery {
  width: 90%;
  margin: 0 auto;
  padding: 5%;
}
.gallery img {
  width: 90%;
}
.gallery-head-text {
  color: #eee;
  text-align: center;
  padding-top: 7rem;
}

/**************************/
/* SECTION FOOTER */
/**************************/
.footer {
  width: 100%;
  height: auto;
  background-color: #000;
  padding-top: 6rem;
}
.footer-top {
  width: 100%;
  background-color: #000;
  height: auto;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-logo {
  width: 100%;
  height: auto;
  padding: 3rem auto;
}
.footer-logo img {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  display: block;
}
.footer-nav {
  width: 100%;
  height: auto;
  background-color: #333;
}
.footer-nav-list {
  width: 100%;
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer-link:link,
.footer-link:visited {
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  font-variant: small-caps;
}
.footer-link:hover,
.footer-link:active {
  color: red;
  background-color: #000;
}
.contact {
  width: 100%;
  margin-top: 0;
  background-color: bisque;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  height: auto;
  padding-top: 3rem;
  padding-bottom: 10rem;
  padding-left: 10%;
}
