@font-face {
  font-family: merriweather-regular;
  src: url(../fonts/merriweather-regular.woff2);
}

@font-face {
  font-family: endalian;
  src: url(../fonts/endalian.woff2);
  font-weight: normal;
}

@font-face {
  font-family: treasure;
  src: url(../fonts/treasure.woff2);
  font-weight: normal;
}

body {
  font-family: 'merriweather-regular', sans-serif;
  font-size: 24px;
  background-color: #F2ECDE;
  background: url(../images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
}

.logo {
  display: block;
  width: 200px;
  margin: 0 auto;
}

h1 {
  color: #653715;
  margin: 5px;
  font-size: 30px
}

p {
  margin: 10px;
  font-size: 16px;
}

.introSection, .businessesSection {
  max-width: 1000px;
  margin: 10px auto;
}

.businessesSection .businessGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding: 0;
  gap: 20px
}

.businessTitle {
  display: flex;
}

.businessTitle h3 {
  color: #653715;
  margin: 10px 5px;
  font-size: 22px;
}

.lodgingDiamond + h3 {
  color: #b67668
}

.foodDiamond + h3 {
  color: #b0b47d
}

.activitiesDiamond + h3 {
  color: #98aeb8
}

.lodgingTitle, .foodTitle, .activitiesTitle {
  font-family: 'endalian', sans-serif;
  font-size: 24px;
  z-index: 1;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.lodgingTitle span, .foodTitle span, .activitiesTitle span {
  z-index: 1;
  color: #fdfcfc;
  letter-spacing: 1px;
  font-weight: initial;

}

.lodgingTitle span {
  transform: rotate(-2deg);
  margin-top: 5px;
}

.foodTitle span {
  transform: rotate(1deg);
  margin-top: 0px;
}

.activitiesTitle span {
  transform: rotate(-2deg);
  margin-top: 7px;
}

.lodgingTitle {
  width: 118px;
}

.lodgingTitle:after {
  content: "";
  position: absolute;
  display: flex;
  background: url(../images/lodging-title.svg);
  width: 118px;
  height: 42px;
}

.foodTitle {
  width: 252px;
}

.foodTitle:after {
  content: "";
  position: absolute;
  display: flex;
  background: url(../images/food-title.svg);
  width: 252px;
  height: 43px;
}

.activitiesTitle {
  width: 132px;
}

.activitiesTitle:after {
  content: "";
  position: absolute;
  display: flex;
  background: url(../images/activities-title.svg);
  width: 132px;
  height: 41px;
}

.lodgingDiamond, .foodDiamond, .activitiesDiamond {
  z-index: 1;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 40px;
}

.lodgingDiamond span, .foodDiamond span, .activitiesDiamond span {
  font-family: 'treasure', sans-serif;
  font-size: 18px;
  z-index: 1;
  display: flex;
  padding-top: 2px;
}

.lodgingDiamond {
  color: #AF6657;
}

.foodDiamond {
  color: #A9AD6F;
}

.activitiesDiamond {
  color: #8EA5B1;
}

.lodgingDiamond:after {
  content: "";
  background: url(../images/lodging-diamond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 36px;
  position: absolute;
  z-index: 0;
  display: flex;
}

.foodDiamond:after {
  content: "";
  background: url(../images/food-diamond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 36px;
  position: absolute;
  z-index: 0;
  display: flex;
}

.activitiesDiamond:after {
  content: "";
  background: url(../images/activities-diamond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 36px;
  position: absolute;
  z-index: 0;
  display: flex;
}

.detailSheet {
  display: flex;
}

.detailSheet ul {
  font-size: 16px;
  list-style: none;
  line-height: 27px;
  color: #936747;
}

.detailSheet ul li a {
  display: flex;
  align-items: center;
}

.detailSheet ul li.address a:before {
  content: "";
  background: url(../images/address.svg);
  background-size: 100%;
  flex: 20px 0 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
}

.detailSheet ul li.phone a:before {
  content: "";
  background: url(../images/phone.svg);
  background-size: 100%;
  flex: 20px 0 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
}

.detailSheet ul li.web a:before {
  content: "";
  background: url(../images/web.svg);
  background-size: 100%;
  flex: 20px 0 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
}


.detailSheet ul li a {
  color: #9a7558;
}

.reportIssue {
  text-align: center;
  width: 100%;
  display: inline-block;
  font-size: 12px;
  color: #663815;
}

.contactBar {
  display: flex;
  list-style: none;
  font-size: 12px;
  color: #663815;
  background: #6638151c;
  justify-content: center;
  margin: 0;
  padding: 5px;
}

.contactBar li {
  margin: 0 5px;
}

.contactBar li a {
  font-weight: bold;
  color: #663815;
}

@media screen and (max-width: 667px) and (orientation: portrait) {
  .introSection, .businessesSection {
    padding: 0 20px;
  }
  .businessesSection .businessGrid {
    grid-template-columns: 1fr;
  }
}