:root {
  --green: #13989F;
  --red: #D74D53;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2a2a2a;
}
a {
  color: var(--red);
}
.logo img {
  width: 80%;
}
.navbar {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.lang {
  text-decoration: underline;
}
.book-btn a {
  color:var(--green);
}
.hero {
  background-image: url('/images/motovun1.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  color: white;
}
.cta-button {
  background-color: var(--green);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
}
.btn-warning {
  background-color: var(--red)!important;
  border: none;
  border-radius: 0;
  font-weight: bold;
}

.text-warning {
  color: var(--red)!important;
}

.services-line {
  height: 4px; 
  width: 40px;
  background-color:var(--green);
  margin: 0 auto;
}
.service-border {
  border: 1px solid aliceblue;
}
.fa.fa-home {
	font-size:1.2rem;
	margin-top: 0.3rem;
	/*margin-right: -50px;*/
}

.fa:hover {
	color:grey;
}
.services .fa {
  margin: 0.3em 0 0 auto;
  font-size: 4em;
  color: var(--green);
}
footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 2rem;
}