@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  font-size: 13px;
  --color-text: #fff;
  --color-bg: #000;
  --color-link: #fff;
  --color-link-hover: #fff;
  --img-width: 190px;
  --img-ratio: 1.1;
  --img-offset-x: 20px;
  --img-offset-y: 20px;
  --img-border-radius: 7px;
  --color-bg-content: rgba(255, 255, 255, 0.05);
  --color-bg-demos: rgba(255, 255, 255, 0.05);
}

.content {
  width: 100%;
}

.content__img {
  width: var(--img-width);
  aspect-ratio: var(--img-ratio);
  border-radius: var(--img-border-radius);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.content__img-inner {
  background-position: 50% 50%;
  width: calc(100% + var(--img-offset-x));
  height: calc(100% + var(--img-offset-y));
  background-size: cover;
  position: absolute;
  top: calc(-1 * var(--img-offset-y) / 2);
  left: calc(-1 * var(--img-offset-x) / 2);
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: "Josefin Sans", sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}

html,
body {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #fff;
}

nav {
  width: 100%;
  display: flex;
  height: 6vw;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  position: fixed;
  background-color: #000;
  z-index: 999999;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

nav .menu {
  display: flex;
  gap: 2rem;
}
nav .menu a {
  text-transform: uppercase;
  text-decoration: none;
  color: gray;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease;
}

nav .menu a.active {
  color: #157000;
}

nav .menu a:hover {
  color: #157000;
}

nav .socile {
  display: flex;
  gap: 1.5vw;
  color: grey;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

nav .socile i:hover {
  color: var(--color-text);
}

.contact {
  width: 100%;
  /* height: 100vh; */
  padding: 10vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

.contact h1 {
  font-size: 6rem;
  font-weight: 300;
}

form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

form .name {
  display: flex;
  gap: 2rem;
}

form .name .firstname,
.lastname {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input {
  width: 500px;
  height: 3vw;
  padding: 0 1rem;
  background-color: transparent !important;
  border: 1px solid #fff;
  color: #fff;
}

form input:focus {
  outline: none;
  border: 1px solid #157000;
}

form input::placeholder {
  color: #fff;
}

.email_mobile {
  display: flex;
  gap: 2rem;
}

form .email_mobile .email,
.mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form textarea {
  width: 100%;
  background-color: transparent !important;
  border: 1px solid #fff;
  color: #fff;
  padding: 1rem;
}

form textarea:focus {
  outline: none;
  border: 1px solid #157000;
}

form .btn button {
  background-color: #157000;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: 300;
  transition: all 0.3s ease;
}

form .btn button:hover {
  background-color: #0e4d00;
}

footer {
  width: 100%;
  height: 6vw;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer h3 {
  color: #888;
}

footer a {
  text-decoration: none;
  color: #fff;
  color: #157000;
  cursor: pointer;
}
