:root {
  --color-light: #F8F9F1;
  --color-gray: #636D72;
  --color-white: #FFFFFF;
  --color-dark: #001F2E;
  --color-blue: #005983;
  --color-green: #197561;

  --font-family: 'DejaVu Sans', sans-serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: var(--font-family);
  color: var(--color-white);
}

body {
  background: url('assets/background.png') no-repeat center center / cover;
}


.overlay {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}


header {
  padding: 20px 40px;
}

.brand {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-white);
}


main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section {
  text-align: center;
  color: var(--color-white);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: normal;
  letter-spacing: 0.18px;
}

.hero-section .bold {
  font-weight: bold;
}

.hero-section .oa {
  font-weight: bold;
  font-size: 70px;
}

.coming-soon {
  margin-top: 16px;
  font-size: 30px;
  font-weight: 200;
  line-height: 22px;
  color: var(--color-white);
  text-align: center;
}



.bottom-section {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
}

.bottom-content {
  max-width: 960px;
  margin: 0 auto;
}

.email-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.email-form input {
  flex: 1;
  height: 50px;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid var(--unnamed-color-ffffff);
  background: #00000045 0% 0% no-repeat padding-box;
  color: var(--color-white);
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  opacity: 1;
  outline: none;
}

.email-form input::placeholder {
  color: var(--color-light);
}

.email-form button {
  height: 50px;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: bold;
  padding: 0 24px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}

.contact {
  font-size: 18px;
  line-height: 29px;
}

.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background 0.3s;
}

#twitter {
  top: 695px;
  left: 902px;
  width: 24px;
  height: 24px;
  background: transparent url('assets/icon-twitter.png') 0% 0% no-repeat padding-box;
  opacity: 1;
}

#linkedIn {
  width: 25px; 
  height: 25px;
  border: 1.5px solid white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 4px; 
  box-sizing: border-box;
}

#linkedIn img {
  width: 22px;
  height: 22px;
  display: block;
}

#mailLink{
  text-decoration: none;
  color: white;
}

#mailLink:hover {
  color: blue;
}


@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .oa {
    font-size: 2rem;
  }

  .coming-soon {
    font-size: 18px;
    line-height: normal;
    text-align: center;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form button {
    width: 100%;
  }

  .contact-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .contact {
    width: 100%;
  }

  .socials {
    justify-content: center;
  }

  header {
    padding: 16px 20px;
  }

  .brand {
    font-size: 20px;
  }

  .bottom-section {
    padding: 20px;
  }
}