:root {
  --primary-color: #47B581;
  --bg-color: #fff0ca;
  --text-color: #3E2511;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 18px;
  background: var(--bg-color);
  color: var(--text-color);
  font-weight: 600;
  @media (max-width: 1200px) {
    font-size: 16px;
  }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
  @media (max-width: 1200px) {
    padding: 0 30px;
  }
}

h1, h2, h3 {
  margin-top: 0;
  font-family: 'Nerko One', cursive;
  font-weight: 400;
  color: var(--text-color);
  text-transform: uppercase;
}

h1 {
  font-size: 66px;
  line-height: 66px;
  margin-bottom: 20px;
  @media (max-width: 1200px) {
    font-size: 46px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}

h2 {
  font-size: 35px;
  margin-bottom: 20px;
  @media (max-width: 1200px) {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

p {
  margin: 30px 0;
  @media (max-width: 1200px) {
    margin: 15px 0;
  }
}

header .container {
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;  
  @media (max-width: 1200px) {
    padding: 20px;
  }
}
.logo {
  height: 120px;
  @media (max-width: 1200px) {
    height: 90px;
  }
}
nav {
  display: flex;
  gap: 1.5rem;
}
nav a {
  font-family: 'Nerko One', cursive;
  font-weight: 400;
  font-size: 26px;
  color: var(--text-color);
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.2s;
}
@media (max-width: 1200px) {
  nav a:not(.btn) {
    display: none;
  }
}
a.btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Nerko One', cursive;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  @media (max-width: 1200px) {
    font-size: 24px;
  }
}

section {
  padding: 100px 0;
  @media (max-width: 1200px) {
    padding: 20px 0 100px 0;
  }
}
section a.btn {
  font-size: 24px;
  display: inline-block;
}

section.with-image {
  display: flex;
  align-items: center;
  gap: 60px;
  @media (max-width: 1200px) {
    flex-direction: column;
  }
}
section.with-image img {
  max-width: 450px;
  @media (max-width: 1200px) {
    order: -1;
    max-width: 100%;
  }
}

section#auberge {
  text-align: center;
}

.auberge-cards {
  display: flex;
  gap: 60px;
  margin-top: 50px;
  @media (max-width: 1200px) {
    flex-direction: column;
  }
}
.auberge-card img {
  margin-bottom: 30px;
  @media (max-width: 1300px) {
    width: 300px;
  }
  @media (max-width: 1200px) {
    width: 200px;
  }
}

section#team {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  padding-top: 0;
  @media (max-width: 1200px) {
    flex-wrap: wrap;
  }
}
.team-member {
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  @media (max-width: 1200px) {
    width: 100px;
  }
}
.team-member h3 {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 15px;
  text-transform: none;
}
.team-member img {
  display: block;
}
.team-member div {
  font-size: 14px;
}

section#jaca {
  text-align: center;
  padding-top: 0;
  padding-bottom: 60px;
}
img.jaca {
  width: 130px;
}

footer {
  padding: 30px 0;
  font-size: 16px;
  background: #FFE0A2;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  @media (max-width: 1200px) {
    flex-direction: column;
  }
}
.footer-left {
  display: flex;
  gap: 40px;
  @media (max-width: 1200px) {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer-left-content, .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  @media (max-width: 1200px) {
    flex-direction: column;
  }
}
.footer-right {
  align-items: flex-end;
  gap: 10px;
  @media (max-width: 1200px) {
    align-items: center;
    margin-top: 40px;
  }
}
.footer-right a {
  text-decoration: none;
  margin-left: 10px;
}
.logo-footer {
  height: 80px;
}

@media (max-width: 1200px) {
  .hide-sm {
    display: none;
  }  
}

