body {
  font-family: 'Switzer', Arial, sans-serif;
  margin: 0vh 0vw 0vh 10vw;
  background-color: #ffffff;
  min-height: 100vh; /* Ensures minimum height of the viewport */
  display: flex;
  flex-direction: column; /* Stacks content vertically */
}

.container {
  padding: 10px 10px 10px 10px;
  max-width: 1200px;
  margin-left: 5%; /* Adjust as needed to position the container from the left */
}

.headLiner {
  font-family: 'Switzer-black';
  font-size: 4.5vw;
  text-wrap: balance;
  max-width: 90%;
}
.yourName,
.emailLabel,
.companyName {
  font-size: 2vw;
  font-family: 'switzer-light';
  padding: 0vh 0vw 0vh 0vw;
  margin: 0vh 0vw 0vh 0vw;
}
.budgetheader,
.lookingFor {
  font-size: 2vw;
  font-family: 'switzer-light';
}

.form-field {
  font-family: 'switzer-light';
  color: #000;
  background-color: #ffffff; /* Light background to distinguish input area */
  display: block;
  font-size: 1.5vw;
  width: 30vw;
  margin: 0vh 0vw 3vh 0vw;
  padding: 3vh 0vw 0vh 0vw;
  border: none; /* Removes the default border */
  border-bottom: 3px solid transparent; /* Adds an underline effect */
  outline: none; /* Removes the default focus outline */
  border-bottom-color: #808080; /* Changes the underline color to black on focus */
  transition: border-bottom-color 0.3s ease; /* Smooth transition for focus */
}

.textAreastyle {
  margin-top: 2vh;
  font-family: 'switzer-light';
  color: #000;
  background-color: #ffffff;
  display: block;
  font-size: 1.5vw;
  min-width: 80vw;
  width: 80vw;
  min-height: 20vh;
  height: 20vh;
  margin-bottom: 1rem;
  padding: 10px;
  border: none;
  border-radius: 4px;
}
.button-like,
.submit {
  font-size: 1.5vw;
  display: inline-block;
  background: #ffffff; /* White background */
  color: #000000; /* Black text */
  padding: 10px 15px;
  border: 2px solid #000000; /* Black border */
  border-radius: 4px;
  cursor: pointer;
  margin: 0.5vh 5px 0vh 5px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.button-like:hover,
.submit:hover {
  background-color: grey; /* Grey background on hover */
  color: #000000; /* Maintain black text on hover */
  border-color: #000000; /* Maintain black border on hover */
}

/* When a checkbox or radio button that precedes the label is checked */
input[type='checkbox']:checked + .button-like,
input[type='radio']:checked + .button-like {
  background-color: #000000; /* Black background */
  color: #ffffff; /* White text */
  border-color: #000000; /* Maintain black border */
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}
.contact-container {
  padding: 50px;
}

.get-in-touch-link {
  text-decoration: none; /* Remove the default underline */
  color: inherit; /* Inherit the text color from the parent */
  cursor: pointer; /* Indicate the element is clickable */
  display: inline-block; /* Necessary for the correct positioning of the pseudo-element */
}

.get-in-touch h1 {
  font-size: 10vw;
  font-family: 'switzer-black', sans-serif;
  margin: 0vh 0vw 0vh 5vw;
  position: relative; /* Needed for the absolute positioning of the pseudo-element */
}

.get-in-touch h1::after {
  content: '';
  display: block;
  width: 0;
  height: 6px;
  background: black;
  transition: width 0.5s ease;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.get-in-touch a:hover h1::after {
  width: 100%; /* Full width on hover */
}

.get-in-touch p {
  font-family: 'switzer-thin';
  font-size: 4vw;
  padding: 0%;
  margin: 5vh 0vw -4vh 9vw;
}
/* Footer General Styling */

.copyright span {
  display: block; /* Makes each span take up its own line */
  font-family: 'Switzer-bold';
  text-align: left; /* Centers the text */
  padding: 0%;
  margin: 0vh 0vw -3vh -8vw;
}

/* If you want the first part smaller/bigger than the name */
.copyright span:first-child {
  font-size: 3vw; /* Adjust the size of "© 2024" as needed */
}

/* Styling for the name */
.copyright span:last-child {
  font-size: 3vw; /* Adjust the size of "KAI OHNO" as needed */
}
/* Container styling for navigation and socials */
.navigation,
.socials {
  text-align: center; /* Center aligns content */
  margin: 20px 9vw 0vh 0vw; /* Adds vertical spacing */
}

/* Styling for h2 tags with underline */
.navigation h2,
.socials h2 {
  display: inline-block; /* Allows the underline to fit the text width */
  margin-bottom: 10px; /* Spacing below the heading */
  padding-bottom: 5px; /* Space between text and underline */
  border-bottom: 2px solid #000; /* Solid underline */
  font-size: 3vw; /* Adjust size as necessary */
}

/* List styling */
.navigation ul,
.socials ul {
  padding: 0;
  list-style-type: none; /* Removes default list styling */
  display: flex; /* Displays list items in a row */
  justify-content: center; /* Centers the list items */
  gap: 30px; /* Spacing between each list item */
}

/* Link styling */
.navigation a,
.socials a {
  font-family: 'switzer-regular';
  text-decoration: none; /* Removes underline */
  color: inherit; /* Inherits color from parent */
  position: relative; /* Needed for hover effect positioning */
  font-size: 1.5vw; /* Adjust size as necessary */
}

/* Hover effect for links */
.navigation a:hover,
.socials a:hover {
  color: #3498db; /* Changes text color on hover */
}

/* Adds animated underline on hover */
.navigation a::after,
.socials a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px; /* Height of the underline */
  bottom: -5px; /* Position under the link */
  left: 50%;
  background-color: #3498db; /* Color of the underline */
  transition: width 0.3s ease, left 0.3s ease; /* Smooth transition for the effect */
}

.navigation a:hover::after,
.socials a:hover::after {
  width: 100%; /* Full width on hover */
  left: 0; /* Aligns with the start of the text */
}
.local-time {
  position: absolute; /* Adjusted from absolute/fixed to relative */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4vh 0vw 0vh 23vw;
}

/* Ensure the text within .local-time is centered */
.local-time h2 {
  font-family: 'switzer-bold';
  font-size: 3vw;
  text-align: center;
  margin: 0;
  padding: 5px 0;
  padding-right: 20px;
}
.local-time p {
  font-family: 'switzer-bold';
  font-size: 3vw;
  text-align: center;
  margin: 0;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .headLiner {
    font-size: 2rem;
  }
  .yourName,
  .emailLabel,
  .companyName,
  .budgetheader,
  .lookingFor {
    font-size: 5vw; /* Larger font size for readability */
  }
  .form-field {
    font-family: 'switzer-light';
    font-size: 4vw;
    width: 50vw;
  }
  .form-field,
  .textAreastyle {
    font-size: 4vw; /* Adjusted font size */
    padding: 8px; /* Adjusted padding */
  }

  .button-like,
  .submit {
    font-size: 4vw; /* Increased font size for better touch */
  }
}
@media (max-width: 768px) {
  .contact-container {
    padding: 20px; /* Reduced padding for smaller screens */
  }

  .get-in-touch h1 {
    font-size: 8vw; /* Adjusted for better readability on small screens */
  }

  .get-in-touch p {
    font-size: 5vw; /* Increased size for readability */
    margin: 2vh 0 2vh; /* Adjusted margins */
  }

  .navigation a,
  .socials a {
    font-size: 4vw; /* Increase font size for better readability */
  }

  .local-time h2,
  .local-time p {
    font-size: 5vw; /* Adjusted for consistency and readability */
  }
  .copyright span {
    display: block;
    font-family: 'Switzer-bold';
    margin: 0vh 0vw 0vh 0vw;
    padding: 0%;
    text-align: left;
  }

  .copyright span:first-child {
    font-size: 5vw;
  }

  .copyright span:last-child {
    font-size: 5vw;
  }

  #scrollToTopBtn {
    visibility: hidden;
    margin: -20vh 5vw 0 0; /* Adjusted position */
    width: 40px; /* Adjusted size */
    height: 40px; /* Adjusted size */
  }

  .navigation ul,
  .socials ul {
    flex-direction: column; /* Stack items vertically */
    gap: 15px; /* Adjusted gap for vertical layout */
  }
}
