:root {
  --c-primary: #763513;
  --c-secondary: #cb8933;
  --c-secondary-light: #feeb9e;
  --c-grey00: #fff;
  --c-grey80: #383032;
  --c-grey100: #000;
  --border-radius: 20px;
  --ff-base: "Jost", sans-serif;
  --ff-heading: "Cormorant", serif;
  --z-bottom: 10;
  --z-middle-bottom: 100;
  --z-middle-top: 180;
}

.body {
  background: var(--c-grey80);
  color: var(--c-grey00);
  font-family: var(--ff-base);
}

.header {
  padding: 20px 0;
  background: rgba(56, 48, 50, 0.6);
  position: relative;
  z-index: var(--z-middle-top);
}

.h1,
h2 {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 70px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.h2 {
  font-size: 50px;
  margin-bottom: 30px;
}

.logo {
  font-family: var(--ff-heading);
  font-size: 30px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-grey00);
}

.nav__link:hover {
  color: var(--c-secondary);
}

.nav__link--active {
  border-bottom: 1px solid var(--c-primary);
  padding-bottom: 3px;
  display: inline-block;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--c-grey00);
  border-radius: var(--border-radius);
  border: none;
  transition: all 0.2s ease-in;
  text-align: center;
}

.btn:hover {
  transition: all 0.2s ease-in;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--c-secondary) !important;
}

.btn--primary:hover {
  background-color: var(--c-secondary-light);
  color: var(--c-grey80);
}

.hero {
  margin-top: -85px;
  position: relative;
  z-index: var(--z-bottom);
  height: 100vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slogan {
  position: absolute;
  color: var(--c-secondary-light);
  font-size: 50px;
  bottom: 30px;
  right: 30px;
  font-weight: 300;
  padding: 50px;
  background: rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.form-control {
  color: var(--c-grey80);
  margin-bottom: 15px;
}

.form-control input,
.form-control textarea {
  padding: 10px 15px;
  border-radius: var(--border-radius);
  width: 100%;
}

.feedback {
  width: 400px;
}

.feedback .btn {
  width: 100%;
}

.h2 {
  font-family: var(--ff-heading);
}

.success-message {
  display: none;
  text-align: center;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.5;
}

.success-message--active {
  display: block;
}

.collection-card {
  display: grid;
  grid-template-columns: 2fr 4fr;
  height: 400px;
  margin-bottom: 120px;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.collection-card > * {
  min-width: 0;
}

.collection-card--inverse {
  grid-template-columns: 4fr 2fr;
}

.collection-card--inverse .collection-card__image {
  order: 2;
}

.collection-card--inverse .collection-card__data {
  transform: translate(30px, -20px);
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card__data {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--c-grey00);
  color: var(--c-grey80);
  transform: translate(-30px, 20px);
}

.collection-card__name {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 300;
}
