*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --black: rgb(10, 10, 10);
  --grey: #43494e;
  --light-grey: #b3b3b3; /* As used in the logo */
  --dark-grey: #666; /* As used in the logo */
  --white: #efefef;
  --gold: #ffd42a;
  --complementary: #3e13af;

  --fs-xl: 4rem;
  --fs-600: 2.6rem;
  --fs-500: 2rem;
  --fs-450: 1.5rem;
  --fs-400: 1rem;
  --fs-300: 0.8rem;
}

@font-face {
  font-family: "rousseau_decobold";
  src: url("media/fonts/rousseaudeco-webfont.woff2") format("woff2"),
    url("media/fonts/rousseaudeco-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.bold-gold {
  font-weight: 700;
  color: var(--gold);
}

body {
  font-family: "Limelight", cursive;
}

/* HEADER HERO */

.header-wrapper {
  background-color: #333;
}

#header {
  /* height: 100vh; */
  margin: 0 auto;
  max-width: 1200px;
  font-family: "Montserrat";
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  align-items: center;
}

.header-logo-nav-div {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-logo {
  width: 85%;
}

.mini-contact {
  margin-top: 0.8rem;
  font-size: var(--fs-300);
  color: #efefef;
}

.mini-contact:before {
  margin-right: 5px;
  content: "\260e";
  width: 0.9rem;
}

.mini-contact > a {
  color: var(--white);
  letter-spacing: 2px;
}

nav {
  margin-top: 1rem;
  width: 100%;
  display: flex;
}

.nav-link {
  height: 2rem;
  font-family: "Montserrat";
  letter-spacing: 1px;
  font-weight: 500;
  display: flex;
  flex-basis: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background-color: var(--white);
  transition: all 0.2s;
  border-left: 3px solid var(--black);
}

.nav-link:first-child {
  border: none;
}

.nav-link:hover {
  background-color: var(--dark-grey);
  color: var(--gold);
  flex-grow: 1.3;
  letter-spacing: 2px;
}

.header-text {
  margin: 2rem 0;
  padding: 0.8rem;
  align-self: flex-start;
  font-size: var(--fs-00);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  /* text-align: center; */
  hyphens: auto;
}

.call-to-action {
  height: 10rem;
  width: 100%;
  background-image: url("media/heroimg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-button {
  padding: 1rem;
  height: 80%;
  width: 80%;
  background-color: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: rousseau_decobold;
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  transition: all 0.4s;
}

.call-to-action-button:hover {
  height: 100%;
  width: 100%;
}

a {
  text-decoration: none;
}

h2 {
  font-size: var(--fs-600);
}

#header,
#contact-map-footer {
  background: #333;
  color: #fff;
}

/* SERVICES PRICES */
#services-prices {
  background: var(--grey);
  color: var(--gold);
  padding: 1em 0;
}

.services-heading {
  font-family: "Limelight";
  font-size: var(--fs-450);
  line-height: 0.9;
  margin-bottom: 1.5em;
  text-transform: uppercase;
  text-align: center;
}

/* SERVICE CARDS */

.service {
  /* Horizontal offset - Vertical Offset - Blur - scale (radius) - color */
  box-shadow: 0 20px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  margin-bottom: 2em;
}

.service img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  /* filter: grayscale(100); */
}

.service-box {
  padding: 2em;
  color: var(--white);
  font-family: "Montserrat";
}

.service-box h3 {
  margin-bottom: 0.2em;
  font-size: var(--fs-450);
}

.service-details,
.service--subheading {
  list-style: none;
  /* margin-bottom: 3em; */
}

.service--subheading {
  margin-bottom: 1.8em;
}

.service-details {
  margin-top: 1.5em;
}

.service-details li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75em;
  margin-bottom: 1em;
}

.service-details li:last-child {
  margin-bottom: 0;
}

.indent {
  text-indent: 1em;
}

.price {
  font-weight: 800;
}

/* TESTIMONIAL */
#testimonials {
  background: var(--white);
  color: var(--black);
  padding-top: 1em;
}

.container {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-text-box {
  font-family: "Montserrat";
}

.testimonial-heading {
  font-family: "Limelight";
  font-size: var(--fs-450);
  line-height: 0.9;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  text-align: center;
}

.testimonial-sub-heading {
  font-size: var(--fs-400);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2em;
  text-align: center;
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-text {
  font-size: var(--fs-300);
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 1em;
  text-align: center;
}

.testimonial-name {
  margin-bottom: 1em;
  font-size: var(--fs-300);
}

.testimonial-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 5px;
}

/* GALLERY */

#gallery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: var(--black); */
  padding: 4em 0;
}

.gallery-heading {
  font-family: "Limelight";
  font-size: var(--fs-450);
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
  margin-bottom: 1em;
}

.gallery-img-box,
.gallery-extended {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: 1em;
  margin: 1em;
}

.image--container {
  text-align: center;
}

.gallery-item--name {
  color: var(--grey);
  font-size: var(--fs-400);
}

.gallery-extended {
  display: none;
}

.gallery-extended.open {
  display: grid;
}

.gallery-expand---button {
  margin-top: 1em;
  left: 43%;
  width: 5em;
  height: 5em;
  font-family: "Montserrat";
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  color: var(--black);
  border: 2px solid black;
  transition: all 0.4s;
}

.gallery-expand---button:hover {
  background-color: var(--grey);
  color: var(--white);
}

.gallery-expand---btn---less {
  display: none;
}

.gallery-expand---btn---less.open {
  display: initial;
}

.gallery-expand---btn---more.open {
  display: none;
}

.gallery-item {
  /* justify-self: center; */
  /* filter: grayscale(100%); */
  /* padding-bottom: 2em; */
  /* box-shadow: 0 3.4rem 5.3rem rgba(0, 0, 0, 0.075); */
  /* transition: all 0.5s; */
  min-width: 0;
  /* -webkit-mask-image: linear-gradient(rgb(0 0 0 / 1), rgb(0 0 0 / 0.5)); */
  border: 23px;
  border-image-slice: 40 0 40 0;
  border-image-width: 20px 20px 20px 20px;
  border-image-outset: 0px 0px 0px 0px;
  border-image-repeat: stretch stretch;
  border-image-source: url("/media/headquarters-logo-white-7.svg");
  border-style: solid;
}

.img {
  filter: grayscale(100);
  transition: all 1s;
}

.color-img {
  filter: grayscale(0);
}

.icon {
  color: var(--gold);
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
}

#contact {
  overflow: hidden;
  text-align: center;
  color: var(--black);
  background-color: var(--black);
  color: var(--white);
  font-family: Montserrat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-heading {
  font-family: "Limelight";
  font-size: var(--fs-450);
  line-height: 0.9;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  text-align: center;
}
.contact-sub-heading {
  padding: 0 1rem;
  font-size: var(--fs-400);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2em;
  text-align: center;
}

.contact-information {
  line-height: 2rem;
}

.contact-phone {
  font-size: var(--fs-450);
  color: var(--gold);
}

.contact-map {
  margin: 2rem;
}

#footer {
  height: 3rem;
  background-color: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 59em) {
  :root {
    --fs-xl: 3.8rem;
    --fs-600: 4.6rem;
    --fs-500: 3.5rem;
    --fs-450: 2.6rem;
    --fs-400: 1.7rem;
    --fs-300: 1rem;
  }

  .header-content {
    margin: 4rem;
    width: 85%;
    background-color: var(--dark-grey);
    display: flex;
  }

  /* .line {
    border-bottom: 4px solid var(--gold);
    display: block;
  } */

  .header-text {
    margin: auto 3rem;
    width: 45%;
    font-size: 1.2rem;
    font-weight: 700;
  }

  .call-to-action {
    height: 30rem;
    width: 600px;
    flex-grow: 1;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5em;
  }

  .gallery-img-box,
  .gallery-extended {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-img-box--preview {
    flex-direction: row;
  }

  .testimonial {
    display: initial;
  }

  .testimonial-text {
    text-align: initial;
  }

  .contact-information {
    text-align: left;
  }

  .contact-content {
    /* width: 30%; */
    display: flex;
    align-items: center;
  }
}
