@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
  --wix-white: #ffffff;
  --wix-beige: #eae1d9;
  --wix-light-green: #d3dccc; /* Updated */
  --wix-purple: #e0cbd7;        /* Updated */
  --wix-grey: #e6e6e6;        /* Updated */
  --wix-sage: #aebaa5;        /* Updated */
  --wix-dark-green: #5a684c;
  --text-dark: #262525;
  --serif: 'Libre Baskerville', serif;
  --sans: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background-color: #f7f7f7; /* Light background for margins */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* --- Site Wrapper for white margins --- */
.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--wix-white);
  box-shadow: 0 0 40px rgba(0,0,0,0.05);
}

/* --- Top Utility Bar --- */
.top-bar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 20px 10%; /* Slightly increased padding to match header alignment */
  background: transparent; /* Removes the solid white banner */
  z-index: 2000;
  pointer-events: none; /* Allows clicks to pass through the invisible empty space */
}

.contact-btn-top {
  background: var(--wix-dark-green);
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  pointer-events: auto; /* Re-enables clicking specifically for the button */
  /* Ensure position: fixed is NOT here */
}

/* --- Main Header --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: white;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.site-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

/* --- Navigation & Dropdown --- */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li {
  position: relative; /* Base for dropdown */
}

nav ul li a {
  text-decoration: none;
  color: #666;
  font-size: 0.8rem;
  transition: color 0.3s;
  display: block;
  padding-bottom: 5px;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--text-dark);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  min-width: 150px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  padding: 10px 0;
  z-index: 1500;
}

.dropdown li {
  width: 100%;
}

.dropdown li a {
  padding: 10px 20px;
  font-size: 0.75rem;
  text-transform: none;
  color: #888;
}

.dropdown li a:hover {
  background-color: #f9f9f9;
  color: var(--wix-dark-green);
}

nav ul li:hover .dropdown {
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vm, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.2;
}

/* --- Logo Section --- */
.logo-section {
  background-color: var(--wix-beige);
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.logo-section img {
  max-width: 1000px;
  width: 90%;
}

/* --- Split Hero --- */
.hero-split {
  display: flex;
  height: 450px;
}

.hero-image {
  flex: 1;
  background-image: url('assets/images/0c8fa0_41c7e697b9364c66866d1c4a694e2fe8~mv2.jpg'); /* This was the aloe image URL from the rip */
  background-size: cover;
  background-position: center;
}

.hero-text-box {
  flex: 1;
  background-color: var(--wix-light-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
}

.hero-text-box h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text-box p {
  font-size: 0.9rem;
  color: #444;
  max-width: 300px;
}

/* --- About Section --- */
.about-section {
  background-color: #f2f2f2;
  padding: 80px 15%;
  text-align: center;
}

.section-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: #888;
  margin-bottom: 10px;
  display: block;
}

.about-section h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.about-section p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-img {
  width: 400px;
  height: 400px;
  max-width: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* --- Services Row --- */
.services-row {
  display: flex;
}

.service-col {
  flex: 1;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-col h3, .service-col h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.service-col p {
  font-size: 0.8rem;
  margin-bottom: 30px;
  line-height: 1.6;
  flex-grow: 1; /* Pushes the button down */
}

.btn-more {
  background: var(--wix-dark-green);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.col-purple { background-color: var(--wix-purple); }
.col-grey { background-color: var(--wix-grey); }
.col-sage { background-color: var(--wix-sage); }

/* --- Contact Section --- */
.contact-section {
  background-color: var(--wix-light-green);
  padding: 80px 10%;
  text-align: center;
}

.contact-section h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-family: var(--sans);
  font-size: 0.85rem;
}

.contact-form .full-width { grid-column: span 2; }

.contact-form textarea { height: 120px; resize: none; }

.btn-submit {
  grid-column: span 2;
  background: var(--wix-dark-green);
  color: white;
  border: none;
  padding: 15px;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-details {
  margin-top: 40px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- Split Layout (used in FAQ) --- */
.split-layout {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh;
}

.split-left {
  flex: 1;
  background-color: var(--wix-white);
  padding: 80px 8%;
}

.split-left h1.section-title {
  text-align: center !important;
}

.split-right {
  flex: 1.5;
  background-color: var(--wix-light-green);
  padding: 80px 8%;
}

.illustration-box {
  margin-top: 50px;
  text-align: center;
}

.illustration-box img {
  max-width: 250px;
  width: 100%;
  margin-bottom: 10px;
}

.illustration-box .caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #666;
}

.faq-item {
  margin-bottom: 4rem;
}

.faq-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faq-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
}

/* --- Layout Components for Subpages --- */
.full-section {
  padding: 80px 10%;
  width: 100%;
}

.bg-sage { background-color: var(--wix-sage); }
.bg-beige { background-color: var(--wix-beige); }
.bg-white { background-color: var(--wix-white); }
.bg-grey { background-color: var(--wix-grey); }
.bg-light-green { background-color: var(--wix-light-green); }
.bg-purple { background-color: var(--wix-purple); }


.text-image-grid {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Adds space between elements */
}

/* Tablet and Desktop: Side-by-side layout when screen is wide enough */
@media (min-width: 768px) {
  .text-image-grid {
    flex-direction: row;
  }
  .item {
    flex: 1; /* Makes both items take up equal horizontal width */
  }
}

.text-image-grid.reverse {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Adds space between elements */
}

/* Tablet and Desktop: Side-by-side layout when screen is wide enough */
@media (min-width: 768px) {
  .text-image-grid.reverse {
    flex-direction: row;
  }
  .item {
    flex: 1; /* Makes both items take up equal horizontal width */
  }
}

/*.text-image-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5%;
}

.text-image-grid.reverse {
  flex-direction: row-reverse;
}
*/
.grid-text { flex: 1.5; }
.grid-image { flex: 1; text-align: center; }
/*.grid-image {
    display: flex;
    flex-direction: column;
    text-align: center;
}
*/

.grid-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.intro-italics {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: #888;
  text-align: center;
  margin: 60px 0 30px;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.7rem;
  color: #888;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .site-wrapper { margin: 0; max-width: 100%; box-shadow: none; }
  header { flex-direction: column; gap: 15px; }
  .hero-split { flex-direction: column; height: auto; }
  .hero-image { height: 300px; }
  .hero-text-box { padding: 40px 5%; }
  .services-row { flex-direction: column; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full-width { grid-column: span 1; }
  .btn-submit { grid-column: span 1; }
}
