/* @import url(components/AE/ae-hero-slider.css);
@import url(components/admin.css);
@import url(components/AE/ae-nav.css);
@import url(components/AE/ae-locations.css);
@import url(components/AE/ae-contactus.css);
@import url(components/AE/list-item.css);
@import url(components/faq.css); */

:root {
  --primary-color: #fffaf2;
  --secondary-color: #f8f3f0;
  --accent-color: #f0c987;
  --background-color: #f5f3e7;
  --dark-background-color: #4c6a56;
  --text-color: #2f2f2f;
  --nav-background-color: var(--background-color);
  --nav-text-color: #33372c;
  --nav-active-background: #33372c;
  --nav-active-text: white;
  --button-color: #d9a064;
  --button-hover-color: #c9605b;
  --link-color: #c9605b;
  --button-text-color: var(--primary-color);
  --border-color: var(--text-color);
  --site-max-width: 1400px;
  --cell-max-width: calc((var(--site-max-width, 1500px) - (11px * (24 - 1))) / 24);
  --large-text-size-value: 1;
  --large-text-size: 1rem;
  --heading-2-size: 2rem;
  --heading-2-size-value: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;

  background-color: var(--background-color);
}

.full-width {
  width: 100%;
  max-width: 100%;
}

.centered {
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.parallax-container {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
/* Add a faded overlay on top of the background */
.parallax-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* Dark overlay with 50% opacity */
  z-index: 1; /* Ensures it sits above the background */
}

/* Ensure text stays readable above the overlay */
.parallax-container * {
  position: relative;
  z-index: 2; /* Places text above the overlay */
}

body {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5em;
  margin-bottom: 150px;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1 {
  font-weight: 600;
  font-style: normal;
  margin-bottom: 2rem;
  font-size: calc(var(--heading-2-size-value) * 2.5rem);
}

h2 {
  font-weight: 500;
  font-style: normal;
  margin-bottom: 2rem;
  font-size: calc(var(--heading-2-size-value) * 2rem);
}

h3 {
  font-weight: 900;
  font-style: normal;
  margin-bottom: 2rem;
  font-size: calc(var(--heading-2-size-value) * 1.5rem);
  line-height: 1.2;
}

h4 {
  font-weight: 200;
  line-height: 1.6;
  padding: 20px;
  font-size: calc(var(--large-text-size-value) * 1.4rem);
}

p {
  font-weight: 100;
  line-height: 1.9;
  padding: 20px;
  font-size: calc(var(--large-text-size-value) * 1.3rem);
}


button,
select {
  background-color: var(--button-color);
  color: var(--primary-color);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin: 10px 0;
  transition: background-color 0.3s ease;
}

button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

button:hover,
select:hover {
  background-color: var(--button-hover-color);
}


input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  /* font-size: 1em; */
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

textarea {
  height: 6em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.9em;
  color: var(--dark-background-color);
  display: block;
  margin-bottom: 5px;
}

.form-group span {
  font-weight: normal;
}

.name-fields {
  display: flex;
  gap: 10px;
}

.name-fields input {
  width: 100%;
}

.content-wrapper {
  padding-top: 1.6vmax;
  padding-bottom: 1.6vmax;
}

.center-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding-top: 1.6vmax;
  padding-bottom: 1.6vmax;
}

.center-text-section {
  padding: 1.5rem 1rem;
}

.center-text-container{
  padding-top: 1.6vmax;
  padding-bottom: 1.6vmax;
}

.center-text-title {
  font-weight: 900;
  font-style: normal;
  margin-bottom: 2rem;
  font-size: calc(var(--heading-2-size-value) * 1.5rem);
  line-height: 1.2;
  color: var(--text-color);
}

.center-text-description {
  font-weight: 100;
  line-height: 1.9;
  padding: 20px;
  font-size: calc(var(--large-text-size-value) * 1.3rem);
}

.text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.text-container,
.image-container {
  flex: 1;
  max-width: calc(var(--cell-max-width) * 11);
}



.text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}


.content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 1.6vmax;
}

.left-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
}

.left-image-container img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}



.text-container,
.image-container {
  flex: 1;
  max-width: calc(var(--cell-max-width) * 11);
}



.text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.content-area {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 40px;
}

.content-area p {
  line-height: 1.9;
}


.left-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
}

.left-image-container img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


.ae-footer {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 40px 20px;
  padding-top: 6.6vmax;
  padding-bottom: 6.6vmax;
}

.ae-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ae-footer-business {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.ae-footer-line {
  flex: 1;
  border: none;
  border-top: 2px solid var(--dark-background-color);
  margin: 0 10px;
}

.ae-footer-business-text {
  color: var(--dark-background-color);
}

.ae-footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  flex-wrap: wrap;
}

.ae-footer-column p {
  padding: 0;
}

.ae-footer-column {
  flex: 1;
  min-width: 250px;
}

.ae-footer-column-title {
  color: var(--dark-background-color);
  margin-bottom: 10px;
  /* font-size: 1rem; */
}

.ae-footer-column p,
.ae-footer-column address {
  line-height: 1.6;
}

.ae-footer-column a {
  color: var(--dark-background-color);
  text-decoration: none;
}



.footer-theme-file {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--dark-background-color);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.debugger-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-align: center;
}

.debugger-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.debugger-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border: 1px solid var(--dark-background-color);
  border-radius: 4px;
  background-color: var(--background-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.debugger-label {
  font-weight: bold;
  color: #555;
}

.debugger-value {
  color: var(--dark-background-color);
  word-break: break-word;
}

.footer,
.ae-footer,
.clemo-footer {
  max-width: 100%;
  overflow-x: hidden;
}

.footer-info,
.ae-footer-columns,
.clemo-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.footer-info,
.ae-footer-columns {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: var(--site-max-width, 1200px);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.clemo-footer-content {
  display: grid;
}

.footer-column,
.ae-footer-column {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.copy {
  max-width: var(--site-max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px;
  margin: 0 auto;
}

.design,
.rights {
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}

.meet-the-team {
  padding: 50px 20px;
  background-color: var(--dark-background-color);
  text-align: center;
}

.meet-the-team h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  background: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  max-width: calc(33.333% - 20px);
  text-align: center;
  transition: transform 0.3s;
}



.team-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.5em;
  color: var(--dark-background-color);
  margin: 0;
}

.team-member h4 {
  font-size: 1.2em;
  color: #555;
  margin: 0;
}

.team-member p {
  font-size: 1em;
  color: #666;
  margin: 15px 0 0;
}


.section-heading {
  text-align: center;
}


.ae-section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  min-height: 600px;
  background-color: var(--dark-background-color);
  width: 100%;
}


.section-heading {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}


.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

@media (max-width: 1080px), (max-width: 1024px) {

  .nav-item{
    font-size: 1rem;
    font-weight: 300;
  }

    .clemo-main-home h1 {
      font-size: 3.5rem;
    }

    .clemo-main-home h2 {
      font-size: 2.5rem;
    }

    .clemo-subtitle {
      font-size: 1.2rem;
    }
    .testimonial-image {
      position: relative;
      max-width: 400px;
    }
  }

  @media (max-width: 768px) {

    .cta-button,
    .afhBtn {
      font-size: 0.9rem;
      padding: 0.5rem 1.25rem;
    }

    .centered {
      max-width: 100vw;
    }

    .cta-button,
    .afhBtn {
      font-size: 0.85rem;
      padding: 0.5rem 1rem;
    }



    .page-hero-overlay {
      height: 200px;
    }

    .page-hero-overlay h1 {
      position: relative;
      letter-spacing: 0ch;
      margin: 0 auto;
      font-size: 1.3rem;

    }


    .text-container,
    .image-container {
      max-width: 100%;
      text-align: center;
    }


    .text-container h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }



    .text-container,
    .image-container {
      max-width: 100%;
      text-align: center;
    }


    .text-container h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }


    h1 {
      font-size: 2rem;
      bottom: 8px;
      left: 15px;
    }


    .row {
      flex-direction: column;
      gap: 20px;
    }

    .left-image-container {
      padding: 20px;
    }

    .content-area {
      flex-direction: column;
      gap: 20px;
    }

    .text-container h3 {
      font-size: 1.4rem;
    }

    .text-container h2 {
      font-size: 1.8rem;
    }

    .footer-info,
    .ae-footer-columns,
    .clemo-footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-column,
    .ae-footer-column {
      width: 100%;
    }

    .cta-container h2 {
      font-size: 1.75rem;
    }

    .team-member {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }

    .services-grid {
      gap: 1.5rem;
    }

    .service-item {
      max-width: 100%;
      font-size: 1.25rem;
    }

    .service-item i {
      font-size: 2.5rem;
    }

    .service-item h3 {
      font-size: 2.5rem;
    }


    .service-title {
      font-size: 1.1rem;
    }

    .clemo-main-home h1 {
      font-size: 2.5rem;
    }

    .clemo-main-home h2 {
      font-size: 2rem;
    }

    .clemo-subtitle {
      font-size: 1rem !important;
    }

    .clemo-home-btn {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .clemo-btn,
    .clemo-btn-outline {
      font-size: 0.9rem;
      padding: 8px 15px;
      margin-right: 0;
    }
 .clemo-footer-bottom .copy{
    flex-direction: column-reverse;

  }

  .design, .rights p{
    font-size: 0.9rem;
  }



  }

  @media (max-width: 480px) {
    /* .hero {
    height: 300px;
    } */

    h1 {
      font-size: 1.5rem;
      bottom: 5px;
      left: 10px;
    }

    .cta-container {
      padding: 15px;
      text-align: center;
    }

    .team-member {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .cta-container h2 {
      font-size: 1.5rem;
    }

    .services-container {
      padding: 1.5rem 1rem;
    }

    .services-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .clemo-main-home h1 {
      font-size: 2rem;
    }

    .clemo-main-home h2 {
      font-size: 1.5rem;
    }

    .clemo-subtitle {
      font-size: 0.9rem !important;
      line-height: 1.4;
    }

    .clemo-btn,
    .clemo-btn-outline {
      font-size: 0.85rem;
      padding: 6px 12px;
    }
     .clemo-footer-bottom .copy{
    flex-direction: column-reverse;

  }

  .design, .rights p{
    font-size: 0.9rem;
  }



  }

