body {
  font-family: "Roboto", sans-serif;
}

body {
  font-family: "Roboto", sans-serif;
}

.inner-container {
  width: 70%;
  margin: 0 auto;
  background: var(--color-light-brown);
}

.row {
  width: 80%;
  margin: 0 auto;
  padding: 3em 1em;
}

.list-group {
  padding-left: 1em;
}

/* CALL TO ACTION STARTS */

.contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3em;
}

.contact-us button {
  width: 60%;
  display: inline-block;
  position: relative;
  background: var(--color-raspberry-purple);
  font-size: 28px;
  padding: 15px;
  border: none;
  color: var(--color-misty-rose);
  cursor: pointer;
}

.contact-us button:hover {
  background: var(--color-misty-rose);
  color: var(--color-raspberry-purple);
}

.contact-us span {
  font-family: "Courgette", cursive;
}

.contact-us button::before,
.contact-us button::after {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--color-raspberry-purple);
}

.contact-us span::before,
.contact-us span::after {
  content: "";
  width: 3px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--color-raspberry-purple);
}

.contact-us button:hover::before,
.contact-us button:hover::after {
  width: 100%;
}

.contact-us button:hover span::before,
.contact-us button:hover span::after {
  height: 100%;
}

.contact-btn::before,
.contact-btn::after {
  transition-delay: 0s;
}

.contact-btn span::before,
.contact-btn span::after {
  transition-delay: 0.2s;
}

.contact-btn::before {
  right: 0;
  top: 0;
}

.contact-btn::after {
  left: 0;
  bottom: 0;
}

.contact-btn span::before {
  left: 0;
  top: 0;
}

.contact-btn span::after {
  right: 0;
  bottom: 0;
}

.contact-btn:hover::before,
.contact-btn:hover::after {
  transition-delay: 0.2s;
}

.contact-btn:hover span::before,
.contact-btn:hover span::after {
  transition-delay: 0s;
}

/* CALL TO ACTION ENDS */

/* 1ST SECTION STARTS */

.description {
  padding-bottom: 8em;
}

.description .container,
.details .container {
  border: 3px solid var(--color-white);
}

.description .row:not(:last-of-type) {
  border-bottom: 3px solid var(--color-white);
}

.description .row:last-of-type {
  padding-bottom: 4em;
}

/* 1ST SECTION ENDS */

/* 2ND SECTION STARTS */

.details {
  padding: 9em 0;
  background: var(--color-puce);
}

.details.fireworks .row:nth-of-type(2),
.details.chocolate .row:first-of-type,
.details.chocolate .row:nth-of-type(2),
.details.chocolate .row:nth-of-type(3),
.details.cheese .row:first-of-type,
.details.cheese .row:nth-of-type(2),
.details.cheese .row:nth-of-type(3) {
  border-bottom: 3px solid var(--color-white);
}

.black-border {
  border: 3px solid var(--color-black);
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.white-border {
  border: 3px solid var(--color-white);
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* 2ND SECTION ENDS */

.gallery {
  padding: 8em 0;
  min-height: 700px;
}

.gallery h2 {
  color: var(--color-raspberry-purple);
  padding-bottom: 1.5em;
}

/* MEDIA QUERIES */

@media all and (max-width: 1200px) {
  .inner-container {
    width: 80%;
  }
  .row {
    width: 90%;
  }
}

@media all and (max-width: 1024px) {
  .contact-us span {
    padding: 10px 40px;
  }
}

@media all and (max-width: 992px) {
}

@media all and (max-width: 768px) {
  .description .row:first-of-type p,
  .description .row:last-of-type p {
    text-align: center;
  }
  .details.chocolate .list-group:last-of-type,
  .details.cheese .list-group:last-of-type,
  .details.beverage .list-group,
  .details.fruit .list-group,
  .details.fireworks .list-group:first-of-type {
    padding-bottom: 1.3em;
  }
  .contact-us button {
    font-size: 20px;
    padding: 5px;
  }
  .contact-us button {
    width: 75%;
  }
}

@media all and (max-width: 576px) {
  .contact-us button {
    width: 90%;
  }
  .inner-container {
    width: 90%;
  }
  .row {
    width: 100%;
    padding: 3em 0;
  }
}
