:root {
  --color-primary-tint: #5e8457;
  --color-primary: #194f0f;

  --color-secondary: #f7901e;
  --color-secondary-shade: #de821b;

  --color-gray: #474747;
  --color-gray-shade: #2b2b2b;

  --color-white: #ffffff;

  --font-primary: "Lato", sans-serif;
  --font-secondary: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgb(214, 214, 214);
  padding-bottom: 2rem;
  position: relative;
}

.header__contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1rem 0;
  background-color: rgba(211, 211, 211, 0.35);
  width: 100%;
  font-weight: 600;
}

.header__phone:link,
.header__phone:visited,
.header__email:visited,
.header__email:link {
  font-size: 1.4rem;
  color: var(--color-secondary);
  text-decoration: none;
  will-change: transform;
  transition: all 0.3s ease;
}

.header__phone:hover,
.header__email:hover {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin-top: 2rem;
}

.nav__link:visited,
.nav__link:link {
  font-size: 1.6rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-gray);
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  will-change: transform;
}

.nav__link:hover {
  transform: scale(1.05) translateY(-5px);
  color: var(--color-primary);
}

.section-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10rem;
  width: 100%;
  background-image: linear-gradient(
      to bottom,
      rgba(25, 79, 15, 0.8),
      rgba(25, 79, 15, 0.35)
    ),
    url("image/DJI_0129.JPG");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.text-box {
  height: 50vh;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0.5rem;
}

.contact-button {
  align-self: left;
  padding: 1.2rem 2.4rem;
  margin-top: 2rem;
  text-transform: uppercase;
  font-size: 1.8rem;
  border-radius: 0.5rem;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.5s;
  width: 40%;
  will-change: transform;
}

.contact-button a {
  color: inherit;
  font-style: inherit;
  text-decoration: none;
}

.contact-button:hover {
  transform: scale(1.05);
}

.logo-box {
  max-width: 40%;
}

.logo-box img {
  max-width: 100%;
}

.h1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-secondary);
  color: white;
  font-size: 4.8rem;
}

.h1__span {
  font-size: 3.2rem;
  font-weight: 500;
  font-family: inherit;
}

/* ABOUT */
.section-about {
  padding: 15rem 10rem;

  background-color: rgba(211, 211, 211, 0.35);
}

.h3 {
  font-size: 2.6rem;
  margin-bottom: 4rem;
  text-align: left;
  color: var(--color-secondary-shade);
  font-family: var(--font-secondary);
}

.h2 {
  display: block;
  width: 100%;
  text-align: left;
}

.section-about-text {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.2px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-gray-shade);
}

.bold {
  font-weight: bold;
  color: var(--color-primary);
}

.mb-big {
  margin-bottom: 10rem;
}

.mt-big {
  margin-top: 10rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  z-index: 222;
  position: fixed;
  right: 15%;
  top: 2%;
  margin-left: 50rem;
}

.line {
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #2b2b2b;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.active {
  display: block;
}

.hidden {
  display: none;
}

.black {
  background-color: #2b2b2b;
}
