/* ======= RESET & FONTS ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Merriweather";
  src: url("fonts/Merriweather-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Merriweather";
  src: url("fonts/Merriweather-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "WorkSans";
  src: url("fonts/WorkSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "CustomSerif";
  src: url("fonts/CustomSerif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* ======= HEADER ======= */
.contact-header {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.2vw;
  background-color: transparent;
  position: relative;
  z-index: 999;
}

.contact-logo {
  display: flex;
  align-items: center;
  font-family: "CustomSerif", serif;
  font-size: 2vw;
  font-weight: 400;
  letter-spacing: 0.05vw;
  line-height: 1;
}

.contact-logo img {
  height: 2.4vw;
  width: auto;
  object-fit: contain;
  display: block;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.hamburger-menu svg {
  width: 1.8vw;
  height: auto;
  display: block;
}

/* ======= LAYOUT ======= */
.contact-container {
  display: flex;
  width: 100vw;
  height: 90vh;
  overflow: hidden;
}

.contact-left {
  width: 40vw;
  padding-left: 5.2vw;
  padding-top: 10vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.contact-left h1 {
  font-family: "Merriweather", serif;
  font-size: 3.9vw;
  font-weight: 400;
  line-height: 1.1;
  color: #0f0f0f;
}

.contact-left::after {
  content: "";
  position: absolute;
  top: 12vh;
  right: 2.56vw;
  height: 80vh;
  width: 0.1vw;
  background: #d2d2d2;
}

.contact-right {
  width: 60vw;
  padding: 0 5.2vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

/* ======= FORM ======= */
.contact-form {
  margin-top: 12vh;
  max-width: 45vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.2vh;
}

.form-row {
  display: flex;
  gap: 1.5vw;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

input,
textarea {
  padding: 1vw;
  font-size: 0.97vw;
  font-family: "WorkSans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(17, 17, 19, 0.4);
  border: 1px solid #ccc;
  border-radius: 0.4vw;
  background: #fff;
}

textarea {
  resize: none;
}

.submit-btn {
  margin-top: 2vh;
  padding: 1vw 2vw;
  background: #0f0f0f;
  color: #fff;
  font-family: "WorkSans", sans-serif;
  font-size: 0.97vw;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.022vw;
  border: none;
  border-radius: 0.3vw;
  cursor: pointer;
  width: fit-content;
}

/* ======= MENU OVERLAY ======= */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #141414;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.close-menu {
  position: absolute;
  top: 2vw;
  right: 3vw;
  font-size: 2vw;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.menu-list li {
  border-top: 1px solid #888;
  padding: 2vw 0;
  font-family: "WorkSans", sans-serif;
  font-size: 1.5vw;
  color: white;
}

.menu-list li:last-child {
  border-bottom: 1px solid #888;
}

.menu-list li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-list li a:hover {
  color: #e2bebe;
}

/* ======= FOOTER ======= */
.footer {
  background-color: #0f0f0f;
  color: #dcdcdc;
  padding: 4vw 7vw 2vw;
  font-family: "WorkSans", sans-serif;
  font-size: 0.9vw;
}

.footer-logo {
  color: white;
  font-size: 1.5vw;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2vw;
  letter-spacing: 0.1vw;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw;
  list-style: none;
  padding: 0;
  margin: 0 0 2vw;
}

.footer-nav li a {
  text-decoration: none;
  color: #dcdcdc;
  font-weight: 300;
  font-size: 0.95vw;
}

.footer-line {
  border: none;
  border-top: 1px solid #888;
  margin: 2vw 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85vw;
  color: #aaa;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 1.5vw;
}

.footer-social a {
  color: #aaa;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.9vw;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  margin: 0 auto 2vw;
  display: block;
}

.blueprints-section {
  display: flex;
  align-items: start;
  justify-content: space-between;
  height: auto;
  padding: 7vw 7vw;
  gap: 4vw;
}

.blueprints-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.blueprints-left h1 {
  font-family: "Merriweather", serif;
  font-size: 2.8vw;
  font-weight: 400;
  color: #000;
}

.blueprints-right {
  flex: 1.8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.blueprints-right img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 55vw;
}

.blueprints-image-section {
  width: 100%;
  padding: 0 7vw;
  margin-top: 5vw; /* optional spacing from previous section */
}

/* image section */
.image-wrapper {
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.office-section {
  padding: 0 7vw;
  margin-top: 5vw;
}

.office-heading {
  margin-bottom: 2vw;
}

.office-heading h2 {
  font-family: "Merriweather", serif;
  font-size: 3vw;
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 1vw;
}

.read-more {
  font-family: "WorkSans", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  color: #6c512b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #4a391f;
  text-decoration: underline;
}

.office-images img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 8vw; /* Adjust gap between images */
}
