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

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

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

/* Header Styles */
.header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: auto;
  transition: box-shadow 0.3s ease;
}

/* Logo Container */
.logo-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-image {
  height: auto;
  max-width: 60vw;
  display: block;
  transition: all 0.3s ease;
}

/* Navigation */
.nav {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  padding: 0; /* base state has no extra padding */
}

/* Show borders only when header is condensed into the sticky state */
.header.scrolled .nav {
  width: 100%;
  border-top: 1px solid #8b7355;
  border-bottom: 1px solid #8b7355;
  padding: 0.75rem 0; /* consistent vertical spacing only in sticky */
}

.nav-item {
  font-family: "WorkSans", sans-serif;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1; /* tight and uniform */
  padding: 0.25rem 0; /* even per-item padding */
}

.nav-item:hover {
  color: #8b7355;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #8b7355;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item.active {
  color: #8b7355;
}

.nav-item.active::after {
  width: 100%;
}

/* Content Section */
.content-section {
  background-color: #fff;
  width: 100vw;
  height: auto;
  padding-top: 75vh;
}

.content-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 40px 0px;
}

.preview-text {
  font-size: 1.2vw;
  color: #8b7355;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 400;
  font-family: "WorkSans", sans-serif;
  margin: 0;
  animation: fadeInUp 1s ease-out;
}

.preview-image {
  width: 50vw;
  height: auto;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.preview-image p {
  margin-top: 2vw;
  font-size: 1.2vw;
  color: #636363;
  text-align: left;
  font-family: "WorkSans", sans-serif;
  font-weight: 400;
  margin-bottom: 2vw;
}

.preview-image img {
  width: 100%;
  height: auto;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
  border-radius: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* /* Info Sections (Roots, Aegis, Bloom, Flourish) */
#roots .section-title {
  color: #7f6d50;
  font-style: italic;
}
#aegis .section-title {
  font-style: italic;
  color: #7f6d50;
}
.info-section {
  width: 100vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vw;
  background-color: #fff;
}

.info-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3vw;
  align-items: center;
}

.info-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-image img {
  width: 100%;
  height: auto;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
  border-radius: 4px;
}

.info-content {
  flex: 1;
  /* padding: 2vw; */
}

.info-content h2 {
  font-family: "Merriweather", serif;
  font-size: 4vw !important;
  font-weight: 400 !important;
  margin-bottom: 2vw;
  color: black;
}

.info-content .section-text {
  font-family: "WorkSans", sans-serif !important;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.2vw !important;
  color: #636363;
  text-align: left;
}

/* Three Images Section */
.three-images-section {
  width: 100vw !important;
  background-color: #fff;
  padding: 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.three-images-container {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vw;
}

.image-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  width: 100%;
}

.image-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-item img {
  width: 100%;
  height: auto;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); */
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item img:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18); */
}

.images-caption {
  font-family: "WorkSans", sans-serif;
  font-size: 1.4vw;
  color: #8b7355;
  text-align: center;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 1vw;
}

/* Space Section */
.space-section {
  width: 100vw;
  height: auto !important ;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.space-section-image {
  width: 10vw;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 0 !important;
}

.content-section2 {
  padding-top: 7vw;
  width: 100vw;
  height: auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Image Section */
.background-image-section {
  width: 100vw;
  margin-top: 10vh;
  background-color: #fff !important;
  height: 150vh;
  background-image: url("images/image copy 4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bloom-section {
  display: flex;
  width: 100vw;
  height: auto;
  padding: 6vw;
}

.bloom-left,
.bloom-right {
  flex: 1; /* each side takes 50% */
}

/* Left Image */
.bloom-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.bloom-left img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* statue should be fully visible */
}

/* Right Content */
.bloom-right {
  padding: 6vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bloom-right .title {
  font-family: "Merriweather", serif;
  font-size: 4vw;
  font-style: italic;
  color: #7f6d50;
  margin-bottom: 4vh;
}

.bloom-right .intro {
  font-family: "WorkSans";
  font-size: 1.2vw;
  margin-bottom: 5vh;
  line-height: 1.6;
  color: #333;
}

.bloom-right .subtitle {
  font-family: "Merriweather", serif;
  font-size: 2vw;
  margin-bottom: 3vh;
  font-weight: bold;
}

.bloom-right .subtitle .highlight {
  font-size: 2.5vw;
  color: #000;
}

.bloom-right p {
  font-family: "WorkSans";
  font-size: 1.1vw;
  line-height: 1.6;
  margin-bottom: 2vh;
}

/* Tenets Section */
.tenets-section {
  display: flex;
  width: 100vw;
  height: auto;
  padding: 6vw;
  background: #fff;
  gap: 4vw;
}

.tenets-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.tenet-card {
  display: flex;
  align-items: flex-start;
  gap: 1vw;
  padding: 2vh 2vw;
  border: 1px solid #e5e5e5;
  background: #faf8f5;
}

.tenet-card img.icon {
  width: 2vw;
  height: 2vw;
  object-fit: contain;
}

.tenet-card h3 {
  font-family: "WorkSans", sans-serif;
  font-weight: 400;
  font-size: 1.4vw;
  margin-bottom: 1vh;
  color: #222;
}

.tenet-card p {
  font-family: "WorkSans", sans-serif;
  font-weight: 400;
  font-size: 1vw;
  line-height: 1.5;
  color: #333;
}
.tenets-section {
  display: flex;
  width: 100vw;
  height: auto;
  padding: 6vw;
  align-items: flex-start; /* instead of center */
}

.tenets-right {
  flex: 1;
  display: flex;

  justify-content: flex-start;
  /* padding-left: 5vw; */
}

.tenets-right h2 {
  font-family: "Merriweather", serif;
  font-style: normal;
  font-size: 3vw;
  font-weight: 400;
  color: #111;
  line-height: 1.3;
}

/* Destination Section */
.destination-section {
  display: flex;
  gap: 4vw;
  width: 100vw;
  height: auto;
  background: #fff;
  padding: 6vw;
}

.destination-left,
.destination-right {
  flex: 1;
}

/* Left side image */
.destination-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}
.destination-left img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills entire half */
}

/* Right side text */
.destination-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destination-right h4 {
  font-family: "WorkSans", sans-serif;
  font-weight: 400;
  font-size: 1vw;
  margin-bottom: 2vh;
  color: #555;
}

.destination-right h2 {
  font-family: "Merriweather", serif;
  font-size: 3vw;
  font-weight: bold;
  margin-bottom: 4vh;
  line-height: 1.2;
}

.destination-right p {
  font-family: "WorkSans", sans-serif;
  font-weight: 400;
  font-size: 1.2vw;
  line-height: 1.6;
  margin-bottom: 2vh;
  color: #333;
}

/* Cards Section */

.cards-section {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  padding: 6vw;
  background: #fff !important;
}

.card {
  flex: 1;
  background: #fafafa;
  /* padding: 1.5vw; */
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.card img {
  width: 100%;
  height: 90vh;
  border-radius: 0.5vh;
  margin-bottom: 1vh;
}

.card .caption {
  font-family: "WorkSans", sans-serif;
  font-size: 0.8vw;
  color: #777;
  font-style: italic;
  margin-bottom: 1vh;
  text-align: center;
  margin-bottom: 0.5vw;
}

.card h3 {
  font-family: "WorkSans", sans-serif;
  font-weight: 400;
  font-size: 1.2vw;
  font-weight: bold;
  margin-bottom: 1vw;
}

.card .desc {
  font-family: "WorkSans", sans-serif;
  font-weight: 400;
  font-size: 0.9vw;
  line-height: 1.4;
  color: #444;
}

/* Hover effect */
.card:hover {
  transform: translateY(-1vh);
  /* box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.15); */
  background: #fff;
}

/* ======= 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;
}

.background-image-section2 {
  background: url("images/image copy 8.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 170vh;
}
