:root {
  --background-main: #BB1D1D;
  --background-dark: #881A1A;
  --background-light: #E82323;

  --background-grey: #212121;
  --background-light-grey: #e6e6e6;

  --font-biggest: 110px;
  --font-huge: 80px;
  --font-title: 50px;
  --font-big: 36px;
  --font-medium: 24px;
  --font-small: 20px;

  --font-description: 24px;

  --spacing-huge: 120px;
  --spacing-big: 80px;
  --spacing-medium: 60px;
  --spacing-small: 40px;

  --spacing-big-responsive: 4vw;
  --spacing-huge-responsive: 6vw;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  cursor: default;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: Arial;
}

body {
  font-family: Montserrat;
  background: var(--background-dark);
  color: white;
}

a, button, input, textarea {
  all: unset;
}

.navbar {
  height: 100px;
  width: 100vw;
  background: var(--background-dark);
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.25), 0 40px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: var(--spacing-big-responsive);
  box-sizing: border-box;
  color: white;
  position: fixed;
  z-index: 100;
  transition: height 0.15s;
}

.navbar.sticking {
  height: 70px;
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.25);
}

.title-wrapper {
  font-family: Michroma;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
}

.title {
  font-weight: 400;
  font-size: var(--font-big);
  margin-right: 14px;
}

.right-side-wrapper {
  display: flex;
  align-items: center;
}

.nav-button-container {
  background: var(--background-main);
  padding: 10px;
  width: 340px;
  display: flex;
  justify-content: space-around;
  border-radius: 6px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.nav-button {
  background: var(--background-main);
  transition: ease 0.2s;
  border-radius: 2px;
}

.nav-button:hover {
  cursor: pointer;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.25);
}

.getintouch {
  background-color: var(--background-light);
  font-size: var(--font-medium);
  line-height: 50px;
  width: 250px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  text-align: center;
  margin-left: var(--spacing-small);
  transition: ease 0.2s;
  transition-delay: 0.1s;
}

.getintouch:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: ease 0.1s;
}

.getintouch:active {
  box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.25);
}

.hero {
  height: 900px;
  position: relative;
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 0% 25%;
  filter: brightness(30%);
}

.hero-content {
  position: absolute;
  top: 180px;
  left: var(--spacing-huge-responsive);
}

.hero-text {
  font-size: clamp(40px, 10vw + 0.5rem, 110px);
  font-weight: 500;
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.25);
}

.contact-now {
  background: var(--background-main);
  border-radius: 6px;
  font-size: var(--font-big);
  font-weight: 300;
  height: 80px;
  width: 380px;
  text-align: center;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
  transition: ease 0.5s;
  margin-top: 60px;
}

.contact-now:hover {
  background: var(--background-light);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
  cursor: pointer;
  transition: ease 0.1s;
  transition-delay: 0.2s;
}

.seperator {
  height: 20px;
  background: var(--background-light);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}

.main-content {
  display: flex;
  justify-content: center;
  column-gap: 60px;
  padding-inline: var(--spacing-big-responsive);
  padding-block: 20px;
}

.container {
  border-radius: 12px;
  width: 100%;
  min-height: 400px;
  background: var(--background-main);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
  padding-block: var(--spacing-small);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.container-content {
  margin-inline: var(--spacing-small);
}

.section-title {
  font-size: var(--font-huge);
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  text-decoration: underline;
  text-decoration-color: var(--background-light);
  text-decoration-thickness: 10px;
  text-underline-offset: 12px;
  margin-bottom: var(--spacing-small);
}

.section-description {
  font-size: var(--font-description);
}

.image {
  border-radius: 12px;
  max-width: 600px;
  height: 100%;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
  background: white;
  object-fit: cover;
  margin-inline: var(--spacing-small);
}

.small-image {
  width: 100%;
  max-height: 540px;
  margin-right: 0;
}

.about {
  scroll-margin-top: 240px;
}

.services {
  scroll-margin-top: 240px;
}

.working-with {
  height: 170px;
  width: 100%;
  background: var(--background-grey);
  border-width: 12px 0;
  border-style: solid;
  border-color: var(--background-light);
  text-align: center;
  font-size: var(--font-big);
  padding-top: 10px;
}

.working-with-title {
  text-decoration: underline;
  text-decoration-color: var(--background-light);
  text-underline-offset: 4px;
}

.working-with-content {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.company-wrapper {
  display: flex;
  align-items: center;
}

.company-title {
  font-size: var(--font-title);
  font-family: Michroma;
  font-weight: 400;
}

.icon {
  height: 80px;
  margin-left: var(--spacing-big);
  margin-right: var(--spacing-small);
}

.footer {
  background: var(--background-grey);
  border-width: 12px 0 0 0;
  border-style: solid;
  border-color: var(--background-light);
  margin-top: var(--spacing-medium);
  padding-inline: var(--spacing-big-responsive);
  box-sizing: border-box;
  padding-block: var(--spacing-small);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-item {
  padding: 12px;
  font-size: var(--font-medium);
  margin-bottom: 20px;
  width: 460px;
  background: var(--background-main);
  font-weight: 200;
  border-radius: 6px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
  display: flex;
}

.form-item::placeholder {
  color: white;
}

.form-item:hover {
  cursor: pointer;
}

.message-type {
  height: 140px;
  width: 600px;
}

.submit-item {
  background: var(--background-light-grey);
  color: var(--background-light);
  width: 600px;
  height: 50px;
  transition: ease 0.2s;
  font-weight: 400;
  margin-bottom: 0;
}

.submit-item:hover {
  background: var(--background-dark);
  color: white;
}

@media (max-width: 1180px) {
  .nav-button-container {
    display: none;
  }
  
  .section {
    flex-wrap: wrap;
  }

  .image {
    display: none;
  }

  .container {
    display: block;
  }

  .company-title {
    display: none;
  }
}

@media (max-width: 800px) {
  .form-item {
    width: 80vw;
  }
}

@media (max-width: 600px) {
  .getintouch {
    display: none;
  }

  :root {
    --font-huge: 50px;
    --font-description: 18px;
  }

  .contact-now {
    width: 280px;
    height: 60px;
    font-size: var(--font-medium);
    margin-top: 20px;
  }
}