/* 💥💥💥 GLOBAL 💥💥💥 */
* {
  box-sizing: border-box;
}
body {
  margin:0;
  font-family: "Poppins", sans-serif;
  color:#555555;
}
img {
  display: block;
  max-width:100%;
}

/* Containers */
.wrapper {
  width: 1300px;
  margin: auto;
  padding:50px 0;
}
.half {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

/* Titles & paragraphs */

.sup-title {
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
}
.sup-title::after {
  content:'';
  width: 30px;
  height: 1px;
  background:#000;
  display: block;
  margin: 10px auto 50px;
}
h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
}
h3 {
  font-size: 32px;
}
p {
  margin-bottom: 30px;
  line-height: 24px;
  font-size: 14px;
}

/* GLOBAL | BTN */
.btn {
  display: inline-block;
  padding:15px 30px;
  font-weight: 600;
  text-decoration: none;
  transition:.3s all ease-in-out;
}
.btn-ghost {
  border-width: 2px;
  border-style: solid;
}
.btn-ghost--light {
  border-color:#fff;
  color:#fff;
}
.btn-ghost--light:hover {
  background:rgba(255,255,255,0.75);
}
.btn-ghost--dark {
  border-color:#555555;
  color:#555555;
}
.btn-ghost--dark:hover {
  background:#ABA9A9;
  color:#fff;
  border-color:#ABA9A9;
}



/* 💥💥💥 HEADER 💥💥💥 */

/* Header | Navigation */
.main-nav {
  background:#F6F4F4;
  padding:5px 0;
  position: fixed;
  top:0;
  width: 100%;
  z-index:2;
}
.main-nav .wrapper {
  width: 1300px;
  margin: auto;
  position: relative;
  padding: 0;
}
.main-nav a {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  color:#555555;
  font-size: 14px;
  font-weight: bold;
  transition:.3s all ease-in-out;
}
.main-nav a.active, .main-nav a:hover {
  color:#88B7BD;
}
.main-nav a+a {
  margin-left: 30px;
}
.main-nav img {
  width: 170px;
}
.main-nav .wrapper div {
  position: absolute;
  top:5px;
  right: 0;
}

/* Header | Hero */
.hero {
  margin-top: 75px;
  background:url('../img/Frontage-banner-cropped.jpg') center bottom/cover;
  text-align: center;
  padding:200px 0;
  color:#fff;
}
.hero > * {
  position: relative;
  z-index:1;
}
.hero h1 {
  font-size: 60px;
  font-weight: normal;
}
.cta {
  position: relative;
}
.cta::before {
  content:'';
  width: 100%;
  height: 100%;
  position: absolute;
  background:rgba(27, 27, 27, 0.3);
  top:0;
  left:0;
}

/* Header | Form */
form {
  background:#F6F4F4;
  text-align: center;
  padding:10px 0 20px;
}
.form-element {
  display: inline-block;
  vertical-align: bottom;
  width: 350px;
  text-align: left;
  margin:0 10px;
}
.form-element > * {
  display: block;
  width: 100%;
}
input {
  border:none;
  height: 40px;
  padding-left:15px;
  padding-right:15px;
}
[type="submit"] {
  background:#555555;
  color:#fff;
}

/* 💥💥💥 MAIN SECTIONS 💥💥💥 */

/* Section | Welcome */
.welcome {
  text-align: center;
}

.welcome .half__txt{
  margin-right: 50px;
}
.welcome__img {
  width:calc(50% - 50px);
  height: 544px;
}
.welcome__img img {
  height: 100%;
  object-fit: cover;
}

/* Section | Details */
.details {
  background:#FAFAFA;
}
.details .half {
  height: 600px;
}
.half__img {
  background-size:cover;
  background-position:center;
}
.half__color {
  background:#DEE2EC;
}
.details .half__txt {
  padding:100px 50px;
}
.sleeps {
  background-image:url('../img/Premier-suite-Room-7-bed.jpg')
}
.breakfast {
  background-image:url('../img/Dining-room-Full-Yorkshire-close.jpg');
}
.local {
  background-image:url('../img/Sign-1.jpg');
}

/* Section | Rooms */
.room-card {
  width:calc((100% - 40px) / 3);
  display: inline-block;
  vertical-align:top;
  background:pink;
  height: 100px;
}
.room-card:nth-of-type(3n + 2) {
  margin:0 20px 20px;
}