@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500;1,600;1,700&display=swap');


/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: rgb(235, 235, 240);
}

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500;1,600;1,700&display=swap');

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: rgb(235, 235, 240);
}

/* ------------------------------
   HEADER + TOP MENU
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500;1,600;1,700&display=swap');

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: #fff;
}

/* ------------------------------
   TOP NAVBAR
------------------------------ */


.top-navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
}

.top-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 1.5rem;
  min-height: 96px;
}

/* LEFT (empty placeholder) */
.nav-left {
  display: flex;
}

/* CENTER */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO + TITLE GROUP */
.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;

  /* 🔥 FORCE SINGLE ROW */
  flex-direction: row;
  flex-wrap: nowrap;
}

/* LOGO */
.brand-group img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #111;
  text-decoration: none;

  /* 🔥 PREVENT LINE BREAK */
  white-space: nowrap;
}

/* RIGHT */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* CTA BUTTON */
.nav-link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #9b7a24;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #86671d;
  transform: translateY(-1px);
}

/* ------------------------------
   STICKY MENU BAR
------------------------------ */
.sticky-menu-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #f7f6f2;
  border-bottom: 1px solid #ddd;
}

.header-menu {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  min-height: 50px;
  flex-wrap: wrap;
}

.header-menu ul li a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 0.80rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.header-menu ul li a:hover {
  color: #9b7a24;
}


/* ------------------------------
   MOBILE NAV OVERLAY
------------------------------ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  color: #000;
  transition: left 0.3s ease;
  z-index: 9999;
  padding: 2rem 1rem;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
}

.mobile-nav.open {
  left: 0;
}

.close-btn {
  background: none;
  border: none;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
}

.close-btn i {
  margin-right: 0.5rem;
}

.mobile-nav ul {
  list-style: none;
  margin-top: 2rem;
  padding-left: 0;
}

.mobile-nav ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
}

.mobile-nav ul li span {
  color: #006064;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
  }
}

/* =============================
   INQUIRY FORM PAGE
============================= */

.form-hero {
  background-color: #f7f6f2;
  padding: 70px 20px 70px;
  text-align: center;
  border-bottom: 1px solid #c5a253;
}

.form-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.form-hero .eyebrow {
  color: #c5a253;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.form-hero h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #111;
}

.form-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.inquiry-form-section {
  background-color: #fff;
  padding: 80px 20px;
}

.inquiry-form-container {
  max-width: 950px;
  margin: 0 auto;
  border: 1px solid #c5a253;
  padding: 50px;
  background-color: #fdfcf8;
}

.inquiry-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group,
.form-question {
  margin-bottom: 28px;
}

.form-group label,
.form-question label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: #222;
}

.form-group input,
.form-question select,
.form-question textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cfc7b2;
  background-color: #fff;
  font-size: 1rem;
  color: #222;
  font-family: inherit;
}

.form-question textarea {
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 35px;
}

.form-submit button {
  padding: 15px 42px;
  border: 1px solid #c5a253;
  background-color: transparent;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit button:hover {
  background-color: #c5a253;
  color: #fff;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .form-hero {
    padding: 100px 20px 50px;
  }

  .form-hero h1 {
    font-size: 2.2rem;
  }

  .inquiry-form-container {
    padding: 32px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Reuse your existing hero button style */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  white-space: nowrap;

  padding: 10px 18px;
  background-color: #9b7a24;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;

  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;

  transition: all 0.3s ease;

  align-self: center; /* 🔥 THIS centers it */
}

.btn-hero:hover {
  background-color: #4b4d4e;
}