/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Lato", sans-serif;
}

/* Font faces */
@font-face {
  font-family: "Geologica";
  src: url("./assets/fonts/Geologica.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Geologica";
  src: url("./assets/fonts/Geologica.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Typography */
.text-huge {
  font-size: clamp(32px, 5.5vw, 128px);
  line-height: 1.1;
}

.text-responsive-medium {
  font-size: clamp(32px, 0.9vw + 32px, 48px);
}

.text-medium {
  font-size: clamp(24px, 0.5vw + 24px, 32px);
  line-height: 1.3;
}

.text-small {
  font-size: clamp(16px, 0.1vw + 16px, 22px);
  line-height: 1.4;
}

.text-tiny {
  font-size: clamp(14px, 0.13vw + 14px, 16px);
  line-height: 1.4;
}

/* Background Wrapper */
.background-wrapper {
  background-image: url("./assets/images/background.png");
  background-position: right 35%;
  background-repeat: no-repeat;
  background-size: 60% auto;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 200px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  background: white;
  height: 56px;
}

.header-logo {
  min-height: 30px;
  max-width: 90px;
  max-height: 56px;
  min-width: 50px;
}

.header-nav ul {
  display: flex;
  height: 30px;
  gap: 30px;
  align-items: center;
  list-style: none;
}

.nav-link {
  display: flex;
  font-size: clamp(16px, 0.1vw + 16px, 22px);
  border: none;
  border-right: 4px solid #008aa2;
  color: #212121;
  padding: 5px 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.nav-link:hover {
  background: #008aa2;
  color: white;
}

/* Welcome Page */
.welcome-page {
  height: calc(100vh);
  color: #008aa2;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 200px;
  gap: 20px;
}

.welcome-title {
  font-family: "Geologica", sans-serif;
  font-weight: 400;
}

.welcome-accent {
  color: #606262;
}

.contact-button {
  border: 4px solid #008aa2;
  padding: 5px 26.5px;
  border-radius: 2px;
  font-size: clamp(16px, 0.1vw + 16px, 22px);
  cursor: pointer;
  color: #008aa2;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  display: inline-block;
}

.contact-button:hover {
  background: #008aa2;
  color: white;
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: center;
  scroll-margin-top: 100px;
  margin-bottom: 65px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  background: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 49px 55.5px;
  width: 100%;
  max-width: 1200px;
}

.section-header {
  border-bottom: 4px solid #008aa2;
  width: 100%;
  padding-bottom: 10px;
}

.section-heading {
  text-align: center;
  font-size: clamp(32px, 0.9vw + 32px, 48px);
  color: #606262;
  letter-spacing: 0.08em;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 45px;
  width: 100%;
}

.contact-left {
  flex: 1;
  min-width: 0;
}

.company-name {
  color: #008aa2;
  font-size: clamp(24px, 0.5vw + 24px, 32px);
  text-align: start;
  font-weight: 500;
  font-family: "Geologica", sans-serif;
  word-break: break-word;
}

.vertical-line {
  border-left: 1px solid #008aa2;
  height: 153px;
}

.contact-right {
  flex: 1;
  min-width: 0;
  font-style: normal;
  text-align: start;
  color: #606262;
}

.contact-link {
  color: #606262;
  text-decoration: none;
  font-size: clamp(16px, 0.1vw + 16px, 22px);
  transition: color 0.3s ease-in-out;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-link:hover {
  color: #008aa2;
}

.email-link {
  color: #008aa2;
  text-decoration: none;
  font-size: clamp(16px, 0.1vw + 16px, 22px);
  transition: all 0.3s ease-in-out;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.email-link:hover {
  text-decoration: underline;
}

/* Disclaimers Section */
.disclaimers-section {
  padding: 181px 200px;
  scroll-margin-top: -65px;
}

.disclaimers-header {
  border-bottom: 4px solid #008aa2;
  width: 100%;
  margin-bottom: 54px;
}

.disclaimers-heading {
  font-size: clamp(32px, 0.9vw + 32px, 48px);
  letter-spacing: 0.08em;
  color: #606262;
  text-align: start;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  padding-bottom: 10px;
}

.disclaimers-content {
  font-size: 14px;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.53);
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.disclaimers-content p {
  line-height: 1.6;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 20.5px 200px;
  background: #606262;
  color: white;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

/* Media Queries */
@media (max-width: 1100px) {
  .header,
  .disclaimers-section,
  .footer {
    padding-left: 100px;
    padding-right: 100px;
  }

  .welcome-page {
    margin-left: 100px;
    margin-right: 100px;
  }

  .contact-section {
    margin-left: 100px;
    margin-right: 100px;
  }
}

@media (max-width: 880px) {
  .contact-container {
    padding-left: 45.5px;
    padding-right: 45.5px;
  }
}

@media (max-width: 780px) {
  .contact-content {
    flex-direction: column;
  }

  .vertical-line {
    display: none;
  }

  .contact-right {
    display: flex;
    gap: 20px;
    width: 100%;
  }
}

@media (max-width: 650px) {
  .header,
  .disclaimers-section,
  .footer {
    padding-left: 50px;
    padding-right: 50px;
  }

  .welcome-page {
    margin-left: 50px;
    margin-right: 50px;
  }

  .contact-section {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .contact-right {
    flex-direction: column;
  }

  .contact-content {
    align-items: flex-start;
  }
}

@media (max-width: 450px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-nav ul {
    gap: 15px;
  }

  .nav-link {
    white-space: nowrap;
  }
}
