* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --medium: #737373;
  --golden: #f7d08a;
  --blue: #9bb7d4;
  --peachy: #e8a87c;
  --dark: #5e5e5e;
  --light: #f6faff;
}
/* UTILITIES */
.container {
  display: block;
  max-width: 1140px;
  margin: 0 auto;
}
.btn {
  padding: 1rem 1.5rem;
  background-color: var(--peachy);
  border-radius: 2px;
  color: #333;
  text-decoration: none;
}
.btn:hover {
  opacity: 0.9;
  color: #fff;
}
body {
  font-family: 'Roboto', sans-serif;
  background: var(--light);
  /* font-family: 'Source Sans Pro', sans-serif; */
}
.lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--medium);
}

/* Nav */
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* padding: 1rem 0; */
  z-index: 60;
  background: #444;
  color: #fff;
  height: 63px;
}
nav .container {
  width: 70vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
nav .container .logo a {
  font-size: 22px;
  text-transform: uppercase;
  color: #f4f4f4;
  text-decoration: none;
}
nav .container .logo a:hover {
  color: var(--golden);
}

nav .container ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100%; */
}

ul li a {
  padding: 2rem 1.5rem;
  color: #fff;
  text-decoration: none;
}
.selected {
  background-color: #333;
  color: var(--peachy);
}

ul li a:hover {
  background-color: #e8a87c;
  color: #444;
}
/* SECTIONS */
#main {
  background: url(/img/hotel.jpg) no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  position: relative;
}
#main::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
#main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
  gap: 2.9rem;
  position: relative;
}
#main .tag__line {
  font-size: 42px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #eeee;
  /* opacity: 0.7; */
  /* max-width: 55vw; */
  line-height: 0.9;
  text-transform: capitalize;
}
.highlight {
  color: var(--peachy);
  text-transform: capitalize;
}
#main .lead {
  font-family: 'Roboto', sans-serif;

  /* max-width: 80vw; */
  font-size: 16.6px;
  color: var(--light);
  opacity: 0.85;
}
/* SERVICES */
#services .container {
  padding: 2rem;
}
.sub__heading {
  text-align: center;
  font-size: 26px;
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0 0 1rem 0;
}
.lead {
  text-align: center;
  font-size: 16px;
}
.services__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.services__container .services {
  background-color: #1f1f1f;
  border-radius: 10px 10px 0 0;
  /* height: 350px; */
  padding: 0 0 30px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--peachy);
}
.services img {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  filter: saturate(0.5);
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid var(--peachy);
}
.services img:hover {
  filter: saturate(1);
}
.services .services__heading {
  margin: 1rem 0;
  text-align: center;
  color: var(--peachy);
  font-size: 18px;
}

.services .sub__para {
  /* text-align: center; */
  padding: 0 20px;
  color: #ccc;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.5;
}
footer {
  padding: 30px 0;
  color: #f4f4f4;
  background-color: #222;
  border-top: 2px solid var(--peachy);
}
footer p {
  text-align: center;
}
footer .owner {
  color: #e8a87c;
  /* text-transform: uppercase; */
  font-size: 17px;
  /* text-decoration: ; */
  text-decoration: underline #ccc 1px;
}

/* ABOUT PAGE */
#about {
  height: 77.5vh;
}
#about .heading {
  text-align: center;
  margin: 5rem 0 4rem 0;
  font-size: 28px;
}

#about .content {
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  height: 100%;
}
#about .content img {
  width: 50%;
  height: 100%;
  flex-basis: 100px;
  flex-grow: 1;
  flex-shrink: 0;
}
#about .content .about {
  background-color: rgba(0, 0, 0, 0.8);
  /* height: 22.7vh; */
  padding: 2rem;
}
#about .content .about .sub__heading {
  color: var(--peachy);
}
.content img {
  filter: saturate(0.3);
  transition: all 0.3s ease-in-out;
}
.content img:hover {
  filter: saturate(0.7);
}
.content .about .lead {
  text-align: start;
  line-height: 1.8;
  opacity: 0.85;
  color: #f4f4f4;
}

@media(max-width:768px){
  .services__container{
    flex-direction:column
  }
}
