:root {
  --brand-bg-dark: #000;
  --card-bg: #1e1e1e;
  --brand-color-gold: #b69459;
  --button-padding: 10px 70px;
}

/* ------------ general styles  ------------ */
body {
  background: var(--brand-bg-dark);
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}
img {
  height: auto;
  max-width: 100%;
}
h2 {
  color: var(--brand-color-gold);
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
}
a {
  color: var(--brand-color-gold);
}
a:hover {
  color: var(--brand-color-gold);
  opacity: 0.8;
}

/* ------------ boostrap overrides  ------------ */

.row {
  --bs-gutter-x: 2rem;
}

.btn {
  font-size: 24px;
}
.btn-primary,
.btn-primary:focus {
  background: #000 !important;
  border-color: #000 !important;
  border-radius: 10px;
  color: #fff;
  padding: var(--button-padding);
}
.btn-primary:active,
.btn-primary:hover {
  background: #000 !important;
  border-color: #000 !important;
}
.btn-secondary,
.btn-secondary:focus {
  background: #b69459 !important;
  border-color: #b69459 !important;
  border-radius: 10px;
  color: #000;
  padding: var(--button-padding);
}
.btn-secondary:active,
.btn-secondary:hover {
  background: #b69459 !important;
  border-color: #b69459 !important;
}

.card {
  background: var(--card-bg, #1e1e1e);
  color: #fff;
}
.card img {
  height: auto;
  width: 100%;
}

/* ------------ hero  ------------ */

.home-hero {
  background-image: url(../img/hero-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 485px;
  position: relative;
}
.home-hero__heading {
  color: #000;
  font-size: 64px;
  font-weight: bold;
  left: 50%;
  position: absolute;
  text-align: center;
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 100;
}
.home-hero__sub {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  font-size: 24px;
  left: 50%;
  line-height: 38px;
  max-width: 990px;
  position: absolute;
  text-transform: uppercase;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 70%;
  z-index: 100;
}
.home-hero__diamond {
  left: 50%;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* ------------ contact  ------------ */
.contact {
  background: #393939;
}
.contact-form {
  background: #000;
  border-radius: 10px;
}

/* ------------ misc  ------------ */
.obligation {
  background: #393939;
  font-size: 24px;
  line-height: 1.5;
}
.proudly-serving {
  color: var(--brand-color-gold);
}
.tel {
  color: var(--brand-color-gold);
  display: block;
  font-size: 14px;
  white-space: nowrap;
}
.by-line {
  font-size: 11px;
  opacity: 0.8;
}
.by-line a {
  color: #d7d7d7;
}

@media (min-width: 768px) {
  .tel {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .home-hero__heading {
    top: 30%;
  }
}
