@charset "UTF-8";
@font-face {
  font-family: "Playfair Display";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display Medium";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display SemiBold";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display Bold";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "PT Sans";
  src: url("../../assets/fonts/PT_Sans/PTSans-Regular.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "PT Sans Bold";
  src: url("../../assets/fonts/PT_Sans/PTSans-Bold.ttf") format("truetype");
  font-weight: 600;
}
* {
  box-sizing: border-box;
}

body {
  font-family: "PT Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #e4e7e4;
}

input,
textarea,
button {
  font-family: "PT Sans", sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
}

h3 {
  text-align: center;
}

.logo__icon {
  height: 32px;
  width: auto;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
}

.menu-overlay.active {
  display: block;
}

.button {
  background-color: #6B8E6B;
  border: none;
  padding: 0.8rem 1.2rem;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem 3rem;
}

header {
  background: #FFFFFF;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s;
}
header .logo__icon {
  mix-blend-mode: multiply;
  height: 2.5rem;
  width: auto;
  gap: 0.5rem;
}
@media (min-width: 48rem) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 68.75rem) {
  header {
    padding: 0.8rem 3rem;
  }
}

header.menu-open {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__logo a {
  box-shadow: none !important;
  background: none !important;
  border: none !important;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.menu__toggle {
  font-size: 1.5rem;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .menu__toggle {
    display: none;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 48rem) {
  .header__nav {
    display: flex !important;
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .header__nav .nav-links {
    display: flex;
  }
}
@media (min-width: 48rem) {
  .header__nav a {
    display: block;
    text-decoration: none;
    color: #464647;
    font-weight: normal;
    padding: 0 1rem;
  }
}

.menu-header__container {
  background-color: #FFFFFF;
  padding: 0;
  margin: 0;
}

.menu-header {
  background-color: #FFFFFF;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
  top: 0;
  left: 0;
  right: 0;
}
.menu-header .logo__icon {
  mix-blend-mode: multiply;
  height: 2.5rem;
  width: auto;
  gap: 0.5rem;
}
.menu-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  padding-right: 0.5rem;
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #e9ebe6;
  transition: right 0.3s ease;
  z-index: 1003;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0;
}
@media (min-width: 48rem) {
  .menu {
    display: none;
  }
}
.menu .top-section {
  flex-grow: 1;
  padding: 1rem 1.5rem;
}
@media (min-width: 48rem) {
  .menu .top-section {
    padding: 0;
    display: flex;
    gap: 2rem;
  }
}
.menu .top-section a {
  font-size: 1.125rem;
  line-height: 2rem;
}
.menu a {
  display: block;
  text-decoration: none;
  color: #464647;
  font-weight: normal;
}
@media (min-width: 48rem) {
  .menu a {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.menu .bottom-section {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  color: #464647;
}
@media (min-width: 48rem) {
  .menu .bottom-section {
    display: none;
  }
}
.menu .bottom-section .button {
  width: 100%;
  text-align: center;
  background-color: #6B8E6B;
  border: none;
  padding: 0.8rem 1.2rem;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem 3rem;
  margin-top: 1rem;
}
.menu .bottom-section .phone__icon,
.menu .bottom-section .email__icon {
  height: 1rem;
}

.menu.active {
  right: 0;
}

.phone__icon,
.email__icon,
.location__icon {
  height: 0.8rem;
  vertical-align: middle;
  margin-right: 8px;
}

.button {
  background-color: #6B8E6B;
  border: none;
  padding: 0.8rem 1.2rem;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.9rem 3rem;
}
@media (min-width: 48rem) {
  .button {
    font-family: "PT Sans Bold";
    font-size: 1rem;
    padding: 1rem 3rem;
  }
}

.services-section h3,
.contact-section h3,
.faq-section-wrapper h3 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: "Playfair Display Bold";
}

strong {
  font-family: "PT Sans Bold";
}

.about-section {
  position: relative;
  padding: 6rem 1.5rem 3rem 1.5rem;
  color: #fff;
  text-align: left;
  background-image: url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 48rem) {
  .about-section {
    padding: 9rem 1.5rem 3rem 3rem;
  }
}
@media (min-width: 80rem) {
  .about-section {
    background-attachment: fixed;
  }
}
.about-section h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Playfair Display SemiBold";
}
@media (min-width: 48rem) {
  .about-section h1 {
    max-width: 30rem;
    font-size: 3.4rem;
  }
}
@media (min-width: 68.75rem) {
  .about-section h1 {
    padding-top: 6rem;
    font-family: "Playfair Display Bold";
    max-width: 35rem;
    font-size: 4rem;
  }
}
@media (min-width: 80rem) {
  .about-section h1 {
    padding-top: 10rem;
    font-size: 5rem;
    max-width: 50rem;
  }
}
@media (min-width: 48rem) {
  .about-section .button {
    margin-bottom: 1rem;
  }
}
@media (min-width: 80rem) {
  .about-section .button {
    margin-bottom: 3rem;
  }
}
.about-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .about-section p {
    max-width: 33rem;
  }
}
@media (min-width: 68.75rem) {
  .about-section p {
    font-size: 1.5rem;
    max-width: 43rem;
  }
}
@media (min-width: 80rem) {
  .about-section p {
    font-size: 2rem;
    max-width: 50rem;
    margin-bottom: 3rem;
  }
}
.about-section h1, .about-section h2, .about-section p, .about-section a {
  position: relative;
  z-index: 1;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.services-section {
  padding: 2rem 1.5rem;
}
@media (min-width: 48rem) {
  .services-section {
    text-align: center;
    padding: 2rem 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
.services-section h3 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: "Playfair Display Bold";
}
.services-section p {
  text-align: center;
  color: #464647;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.service__icon {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 1rem;
  margin-bottom: 0rem;
}

@media (min-width: 48rem) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
}
@media (min-width: 68.75rem) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    gap: 0;
  }
}

.flip-card {
  background-color: transparent;
  width: 100%;
  max-width: 27rem;
  height: 15.6rem;
  perspective: 1000px;
  margin: 0 auto 1rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 48rem) {
  .flip-card {
    flex: 1 1 300px;
    max-width: 30rem;
    height: 17rem;
    margin: 0 1rem 1rem;
  }
}
@media (min-width: 68.75rem) {
  .flip-card {
    max-width: 35rem;
    margin: 0 2rem 1rem;
    max-height: 25rem;
  }
}
.flip-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card {
  -webkit-tap-highlight-color: transparent;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
  padding: 1rem;
  text-align: center;
}

.flip-card:hover .flip-card-front {
  transform: scale(1.02);
}

.flip-card.flipped, .flip-card:hover {
  box-shadow: none !important;
}

.flip-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flip-card-front h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.flip-card-back {
  transform: rotateY(180deg);
  background-color: #f1f1ed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.flip-card-back img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card:hover .flip-card-back img {
  transform: scale(1.02);
}

.faq-section {
  background-color: rgb(242, 243, 242);
  border-bottom-color: rgb(202, 206, 202);
  padding: 2.3rem 1rem 1rem 1rem;
}

.faq-section-wrapper {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  background-color: rgb(242, 243, 242);
  border-bottom-color: rgb(202, 206, 202);
}
.faq-section-wrapper .faq-header {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-section-wrapper .faq-header p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.faq-section-wrapper .faq-item {
  border-bottom: 1px solid #ccc;
}
.faq-section-wrapper .faq-item .faq-question {
  font-size: 1.125rem;
  font-family: "Playfair Display";
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  position: relative;
}
.faq-section-wrapper .faq-item .faq-question::after {
  content: "▾";
  position: absolute;
  right: 0;
  transition: transform 0.3s;
}
.faq-section-wrapper .faq-item .faq-question.active::after {
  transform: rotate(180deg);
}
.faq-section-wrapper .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section-wrapper .faq-item .faq-answer p {
  padding-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}
.faq-section-wrapper .faq-item .faq-question.active + .faq-answer {
  max-height: 200px;
}

.contact-wrapper-columns {
  margin: 0rem;
  padding: 0;
}
@media (min-width: 48rem) {
  .contact-wrapper-columns {
    display: flex;
    gap: 10rem;
    justify-content: center;
    align-items: flex-start;
    margin: 2rem 2rem;
    padding: 0;
  }
}

.contact-section {
  padding: 2.3rem 1rem 1rem 1rem;
}
.contact-section p {
  text-align: center;
  color: #464647;
  font-size: 1rem;
  line-height: 1.75rem;
}
.contact-section .bottom-section {
  padding: 0.5rem 1.5rem;
}
.contact-section .bottom-section p {
  text-align: left;
  gap: 0.3rem;
}
@media (min-width: 48rem) {
  .contact-section .bottom-section p {
    align-items: center;
    margin-bottom: 1.1rem;
    margin-top: 0;
  }
}
@media (min-width: 48rem) {
  .contact-section .bottom-section {
    flex: 1;
    max-width: 18.75rem;
    padding: 0;
  }
}
@media (min-width: 48rem) {
  .contact-section {
    margin: 2rem 2rem;
    padding: 0;
  }
}
.contact-section .phone__icon,
.contact-section .email__icon,
.contact-section .location__icon,
.contact-section .fb__icon {
  height: 2.8rem;
  vertical-align: middle;
  margin-right: 0.3rem;
  opacity: 0.6;
}

.location-line {
  display: flex;
  align-items: flex-start;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #FFFFFF;
  font-size: 0.85rem;
  color: #2e2e2e;
}

footer a,
.contact-email,
.contact-phone,
.contact-facebook {
  color: #464647;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.contact-phone {
  text-decoration: none;
}

footer a:focus,
footer a:active,
.contact-email:focus,
.contact-email:active,
.contact-phone:focus,
.contact-phone:active,
.contact-facebook:focus,
.contact-facebook:active {
  color: #4a5e42;
  outline: 2px dashed #4a5e42;
  box-shadow: 0 0 0 3px rgba(55, 71, 49, 0.3);
  border-radius: 4px;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

footer a:hover,
.contact-email:hover,
.contact-phone:hover {
  color: #4a5e42;
}

footer a:visited,
.contact-email:visited,
.contact-phone:visited {
  color: #5a705a;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: justify;
}

.modal-content {
  background-color: #f1f1ed;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  color: #333;
  font-size: 0.95rem;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

/*# sourceMappingURL=main.css.map */
