/* Variables */
:root {
  --txt-xs: 14px;
  --txt-sm: 18px;
  --txt-md: 20px;
  --txt-lg: 24px;
  --txt-xl: 28px;
  --hdln-sm: 28px;
  --hdln-md: 36px;
  --hdln-lg: 44px;
  --hdln-xl: 52px;
  --hdln-xxl: 60px;
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out !important;
}

/* Basic styles */
body {
  font-family: "Nunito", sans-serif;
  font-size: var(--txt-sm);
  color: #2d323b;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Override */
.container {
  max-width: 1170px;
}

/* Reusable */
.text-xs {
  font-size: var(--txt-xs);
}
.text-sm {
  font-size: var(--txt-xs);
}
.text-md {
  font-size: var(--txt-md);
}
.text-lg {
  font-size: var(--txt-lg);
}
.text-xl {
  font-size: var(--txt-xl);
}

.headline-sm {
  font-size: var(--hdln-sm);
}
.headline-md {
  font-size: var(--hdln-md);
}
.headline-lg {
  font-size: var(--hdln-lg);
}
.headline-xl {
  font-size: var(--hdln-xl);
}

.clr-lght-red {
  color: #c79288;
}

.btn-lght-red {
  background-color: #c79288;
}

.btn-lght-red:hover,
.btn-lght-red:focus {
  background-color: #c79288;
  filter: brightness(0.8);
}

/* Styles */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* background-color: rgb(0, 0, 0, 0.3) !important; */
  background-color: transparent !important;
  z-index: 100;
}

.navbar-toggler {
  filter: invert(1);
}

.navbar .headline-md {
  font-size: var(--txt-lg);
}

.logo-img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
}

.hero-section {
  background-image: url("./images/love-dog-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
}

.bg-overlay {
  position: absolute;
  background-color: black;
  opacity: 0.5;
  inset: 0;
}

.navbar-container {
  background-color: black;
  border-radius: 10px;
}

.our-mission-section {
  background-color: #3e3d3d;
}

.more-info {
  background-color: #c79288;
}

.hero-mission,
.hero-mission .container {
  min-height: 50vh;
}

@media (min-width: 992px) {
  /* Override */
  /* Reusable */
  .headline-sm {
    font-size: var(--hdln-md);
  }
  .headline-md {
    font-size: var(--hdln-lg);
  }
  .headline-lg {
    font-size: var(--hdln-xl);
  }
  .headline-xl {
    font-size: var(--hdln-xxl);
  }

  /* Styles */

  .navbar .headline-md {
    font-size: var(--hdln-lg);
  }

  .logo-img {
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
  }

  .navbar-container {
    background-color: transparent;
    border-radius: 0;
  }
}
