/* Preisrechner Grid Layout */
.preisrechner_grid_section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  margin: 3rem auto 3rem auto;
}
.preisrechner_grid_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 100%;
  max-width: 1300px;
  align-items: flex-start;
  justify-content: center;
}
.preisrechner_grid_calculator {
  min-width: 340px;
  max-width: 600px;
  background: #f8faf6;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(78, 112, 45, 0.07);
  padding: 2.2rem 2.2rem 2.5rem 2.2rem;
  margin-bottom: 2rem;
}
.preisrechner_grid_overview {
  min-width: 340px;
  max-width: 700px;
  background: #f8faf6;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(78, 112, 45, 0.07);
  padding: 2.2rem 2.2rem 2.5rem 2.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 1100px) {
  .preisrechner_grid_container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }
  .preisrechner_grid_calculator,
  .preisrechner_grid_overview {
    max-width: 100%;
    min-width: 0;
  }
}
/* Preisrechner Two-Column Layout */
.preisrechner_flex_section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  margin: 0 auto 3rem auto;
}
.preisrechner_flex_container {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  width: 100%;
  max-width: 1300px;
  align-items: flex-start;
  justify-content: center;
}
.preisrechner_calculator {
  flex: 1 1 0;
  min-width: 340px;
  max-width: 600px;
  background: #f8faf6;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(78, 112, 45, 0.07);
  padding: 2.2rem 2.2rem 2.5rem 2.2rem;
  margin-bottom: 2rem;
}
.preisrechner_heading {
  margin-bottom: 1rem;
  font-size: 2.1rem;
  font-weight: 700;
  color: #111;
}
.preisrechner_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.preisrechner_ausgabe {
  margin-top: 0.5rem;
}
.form_group_checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  margin-bottom: 0.2em;
}
.checkbox_label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 0.7em;
  font-size: 1.08em;
}
.checkbox_input {
  accent-color: #4e702d;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid #e0e6d8;
  margin-right: 0.3em;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(78, 112, 45, 0.07);
}
.checkbox_text {
  color: #222;
}
.checkbox_price {
  color: #56792f;
}

.pricing_overview_section {
  flex: 1 1 0;
}
.pricing_overview_title {
  color: #4e702d;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.pricing_overview_subtitle {
  color: #111111;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.subtitle_note {
  font-size: 0.95em;
  color: #888;
}
.emoji {
  font-size: 1.1em;
}
.pricing_table {
  width: 100%;
  margin-bottom: 1.2em;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.pricing_table thead tr {
  background: #e9ecdf;
}
.pricing_table th {
  text-align: left;
  padding: 0.7em 1em;
  color: #4e702d;
  font-weight: 500;
}
.pricing_table td {
  padding: 0.7em 1em;
  color: #222;
}
.pricing_overview_note {
  font-size: 0.98em;
  color: #666;
  margin-bottom: 1.3em;
  font-style: italic;
}
.pricing_example {
  background: #f3f6ed;
  border-radius: 10px;
  padding: 1.1em 1.2em;
  margin-bottom: 0.7em;
}
.pricing_example_note {
  color: #888;
}
.pricing_overview_list {
  margin-bottom: 1.2em;
  color: #444;
  padding-left: 1.2em;
}
.pricing_overview_list li {
  margin-bottom: 0.5em;
}
.pricing_overview_indent {
  margin-left: 1.2em;
  display: inline-block;
}

@media (max-width: 1100px) {
  .preisrechner_flex_container {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .preisrechner_calculator,
  .pricing_overview_section {
    max-width: 100%;
    min-width: 0;
  }
}
/* --- Datenschutz Page Custom Styling --- */
.page_container {
  max-width: 900px;
  margin: 3rem auto 3rem auto;
  padding: 2.5rem 1.5rem;
  background: #f8faf6;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(78, 112, 45, 0.07);
}

.page_heading {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 600;
  color: var(--primary_green);
  letter-spacing: 1px;
}

.datenschutz_section {
  padding-bottom: 1.5rem;
}

.section_heading {
  margin-top: 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.sub_heading {
  font-size: 1.3rem;
  font-weight: 500;
  color: #56792f;
  margin-bottom: 0.7rem;
  margin-top: 1.2rem;
}

.minor_heading {
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.5rem;
  margin-top: 1.1rem;
}

.section_text {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.section_list {
  margin-left: 1.2rem;
  margin-bottom: 1.2rem;
  padding-left: 0.5rem;
}
.section_list li {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.4rem;
  list-style: disc inside;
}

@media (max-width: 750px) {
  .page_container {
    max-width: 98vw;
    padding: 1.2rem 0.5rem;
  }
  .page_heading {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .section_heading {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .sub_heading {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .minor_heading {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .section_text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .section_list li {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
}
:root {
  --primary_green: #4e702d;
  --h3_heading: 27px;
  --h1_heading: 45px;
  --h2_heading: 45px;
  --p_text: 19px;

  /* Mobile font sizes */
  --mobile_h1_heading: 35px;
  --mobile_h2_heading: 35px;
  --mobile_h3_heading: 22px;
  --mobile_p_text: 16px;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

h1 {
  text-align: center;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0px;
  margin-bottom: 10px;
  line-height: 45px;
}

h2 {
  font-size: 45px;
}

p {
  text-align: left;
  font-size: 19px;
  line-height: 1.7rem;
}

h3 {
  text-align: left;
  font-size: 27px;
  font-weight: 300;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding: 0;
  padding-inline-start: 0.5rem;
  margin: 0;
}

@media (max-width: 750px) {
  h1 {
    font-size: 35px;
    text-align: center;
  }

  .hero_grid_item h1 {
    text-align: center;
  }

  h3 {
    font-size: 22px;
    text-align: center;
  }

  p {
    font-size: 16px;
    text-align: center;
  }

  a.gallery_btn {
    text-align: center;
    display: block;
    justify-self: center;
  }

  div.hero_grid_item {
    margin-top: 20%;
    margin-bottom: 20%;
    padding: 0px;
    align-self: center;
  }

  div.order2 {
    order: 0;
  }

  div.features_grid {
    margin-top: 20%;
    margin-bottom: 20%;
    gap: 4rem;
  }

  div.feature_item {
    gap: 0.5rem;
  }

  div.feature_title {
    font-size: 25px;
  }

  div.nature_card > h4 {
    font-size: 25px;
  }

  div.nature_card > div {
    font-size: 16px;
  }

  div.nature_break_content > h2 {
    font-size: 35px;
  }

  div.nature_break_content > h3 {
    font-size: 25px;
  }

  div.nature_break_content > p {
    font-size: 16px;
  }

  div.reviews_left_card {
    padding-top: 0%;
    padding-bottom: 0%;
    padding-left: 4%;
  }

  div.reviews_left_card > h2 {
    font-size: 35px;
  }

  div.reviews_left_card > h3 {
    font-size: 25px;
  }

  div.reviews_container {
    flex-direction: column;
  }

  div.embla {
    max-width: 90%;
    align-self: center;
  }

  /* div.embla__slide {
    border: #4d6e2a 3px solid;
    border-radius: 12px;
    padding: 1rem;
  } */

  div.email_container {
    flex-direction: column;
    align-items: center;
  }

  .about_page h1 {
    text-align: center;
    font-size: var(--mobile_h1_heading);
  }

  .about_page h3 {
    text-align: center;
    font-size: var(--mobile_h3_heading);
  }

  .about_page h2 {
    text-align: center;
    font-size: var(--mobile_h2_heading);
  }

  div.hosts_flex_text {
    margin-top: 2rem;
  }

  div.hosts_flex_text h3 {
    font-size: var(--mobile_h3_heading);
  }

  div.hosts_flex_text h2 {
    font-size: var(--mobile_h2_heading);
  }

  div.environment_images {
    display: flex;
    flex-direction: row;
  }

  .nature_break.flex_end_x > .nature_break_content {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .about_page p {
    text-align: center;
    font-size: var(--mobile_p_text);
  }

  section.landlord_hero_section {
    min-height: 60vh;
  }

  .landlord_hero_section h1 {
    text-align: center;
    font-size: var(--mobile_h1_heading);
  }
  .landlord_hero_section h2 {
    text-align: center;
    font-size: var(--mobile_h2_heading);
  }
  .landlord_hero_section h3 {
    text-align: center;
    font-size: var(--mobile_h3_heading);
  }
  .landlord_hero_section p {
    text-align: center;
    font-size: var(--mobile_p_text);
  }
}

.navigation_div {
  display: flex;
  flex-direction: row;
}

.remove_margin {
  margin: 0 !important;
}

.hero_grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: flex-start;
}

.hero_grid_item_image {
  width: 100%;
  display: flex;
}

.hero_grid_item_image img {
  display: block;
  width: 100%;
  max-height: 900px;
  object-fit: cover;
}

.hero_grid_item {
  display: block;
  padding-top: 25%;
  padding-left: 10%;
  min-width: 50%;
  max-width: 80%;
  min-width: 0;
  padding-right: 20%;
}

.hero_grid_item_heading {
  text-align: left;
}

/* Header Styles */
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.048);
  height: 140px;
}

header > div {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  height: 100%; /* Ensure flex children fill header height */
}

.home_icon_div {
  display: flex;
  overflow: hidden;
  max-width: 140px;
}

header .home_icon {
  display: flex;
  flex: 1 1 0;
  max-height: 140px;
  max-width: 140px;
}

header nav {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding-top: clamp(0.2rem, 1vw, 2rem);
  padding-bottom: clamp(0.2rem, 1vw, 2rem);
  overflow: hidden;
}

header nav ul {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0;
  flex-wrap: nowrap;
}

header nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease-in-out;
  white-space: nowrap;
}
header nav ul li a:hover,
header nav ul li a:active {
  border-bottom: 1px solid #000;
}

.active {
  border-bottom: 1px solid #000;
}

.header_contact {
  display: flex;
  align-items: center;
  border-left: 1px solid #eee;
  padding-inline: clamp(1em, 3vw, 2rem);
  min-width: max-content;
  margin-left: auto;
  transition: background-color 0.6s;
  flex-shrink: 0;
  height: 100%; /* Fill parent height */
}

.header_contact:hover {
  background-color: var(--primary_green);
  cursor: pointer;
}
.header_contact:hover a {
  color: #fff;
  transform: scale(1.05);
}

header > div > div:last-child a {
  text-decoration: none;
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s, transform 0.6s ease-in-out;
  cursor: pointer;
  will-change: transform;
}

header > div > div:last-child a span {
  font-size: 1.2em;
}

h3.gallery_heading {
  margin-top: 5rem;
}

.gallery_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  max-width: 320px;
  width: auto;
  background-color: var(--primary_green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: 1.5px;
  word-spacing: 1px;
  fill: #fff;
  border-radius: 0px;
  padding: 15px 30px;
  border: none;
  margin-top: 2rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.gallery_btn span {
  font-size: 1.2em;
  margin-left: 0.5em;
}
.gallery_btn:hover {
  background: #222;
  color: #56792f;
  fill: #56792f;
}

.nav_mobile {
  display: none;
}

.hamburger_menu {
  display: none;
}

.grid_reverse {
  display: grid;
}

.order2 {
  order: 2;
}

/* Features Grid */
.features_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-items: center;
  align-items: start;
  margin: 10rem auto 10rem auto;
  width: 80%;
}

.feature_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  transition: transform 0.2s;
}

.feature_item:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.feature_icon {
  margin-bottom: 0.5rem;
}
.feature_icon svg {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: #56792f;
  display: block;
}
.feature_title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #222;
}
.feature_desc {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.5;
  max-width: 320px;
}

/* Nature Gallery Section */
.nature_section {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  width: 80%;
  margin: 0 auto 3rem auto;
  padding: 2rem 1rem 0 1rem;
  text-align: center;
}

.nature_headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
}

.nature_headings h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #222;
}
.nature_headings h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  color: #222;
}
.nature_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.nature_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  box-shadow: none;
  border-radius: 1rem;
  padding: 0;
}
.nature_card img {
  width: 100%;
  aspect-ratio: 1.2/1;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.nature_card h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.2rem 0 0.7rem 0;
  color: #222;
  letter-spacing: 0.5px;
}
.nature_card div {
  font-size: 1.15rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.nature_btn_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Nature Break Section */
.nature_break {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-height: 550px;
  width: auto;
  background: #e9ecdf;
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
}
.nature_break_content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  margin-left: 3rem;
  margin-right: -3rem;
}
.nature_break_content h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #222;
}
.nature_break_content h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  color: #111;
}
.nature_break_content p {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}
.nature_break .gallery_btn {
  margin-top: 0;
  font-size: 1.3rem;
  padding: 0.9em 2.5em;
}
.nature_break_image {
  flex: 1 1 0;
  min-width: 500px;
}

.nature_break_image img {
  object-fit: cover;
  max-width: 100%;
  height: 550px;
}

@media (max-width: 900px) {
  .nature_break {
    flex-direction: column !important;
    min-height: 1020px;
    width: auto;
  }
  .nature_break_content,
  .nature_break.flex_end_x {
    padding: 1rem 1rem 1rem 1rem;
    max-width: 100vw;
    align-items: center;
    text-align: center;
    margin: 0;
  }
  .nature_break_image {
    min-width: 100vw;
    min-height: 200px;
    height: 220px;
  }

  .nature_break_image img {
    max-height: 100%;
  }

  h1 {
    font-size: var(--mobile_h1_heading);
  }
  h2 {
    font-size: var(--mobile_h2_heading);
  }
  h3 {
    font-size: var(--mobile_h3_heading);
  }
  p {
    font-size: var(--mobile_p_text);
  }
}

/* Fix: Ensure .nature_break.flex_end_x positions .nature_break_content at the right side */
.nature_break.flex_end_x {
  display: flex;
  flex-direction: row;
}

.nature_break.flex_end_x > .nature_break_image {
  order: 0;
}

/* Media Queries */
/* For mobile devices */
@media (max-width: 750px) {
  .nav_desktop {
    display: none;
  }

  .nav_mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1000;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 0.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
  }

  /* Show when open */
  .nav_mobile.open {
    display: flex;
    /* ...other styles for your sidebar... */
  }

  .nav_mobile ul {
    display: flex;
    flex-direction: column;
  }

  .nav_mobile li {
    padding-left: 0.5rem;
    padding-right: 2rem;
  }

  .nav_mobile ul li a {
    font-size: 1.3rem;
  }

  .nav_mobile li:first-child {
    display: flex;
  }

  .hero_grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .hamburger_menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0.5rem;
  }

  .hamburger_menu ul li {
    cursor: pointer;
    padding: 0.5rem;
  }
}

@media (min-width: 751px) {
  .nav_desktop {
    display: flex;
  }
  .nav_mobile,
  .hamburger_menu {
    display: none;
  }
}

@media (max-width: 1100px) {
  .features_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .nature_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .features_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature_icon svg {
    width: 70px;
    height: 70px;
  }
  .feature_title {
    font-size: 1.3rem;
  }
  .feature_desc {
    font-size: 1rem;
  }
  .nature_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .nature_card img {
    max-width: 100%;
  }
  .nature_headings h2 {
    font-size: 2rem;
  }
}

/* --- Guest Reviews Section (Slider) --- */
.reviews_section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 0 auto 4rem auto;
  padding: 0;
  min-height: 500px;
}
.reviews_container {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: stretch; /* Ensure children stretch vertically */
  max-width: 85%;
  width: 100vw;
  margin: 0 auto;
  padding: 2.5rem 0 2.5rem 0;
  min-height: 400px; /* Ensure enough height for carousel */
}
.reviews_left_card {
  position: relative;
  flex: 1 1 0;
  background: #f9f9f9;
  border-left: 35px solid #4e702d;
  border-bottom: 35px solid #4e702d;
  border-radius: 0;
  padding: 3rem 2rem 3rem 3rem;
  z-index: 2;
  min-width: 500px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  flex-shrink: 1;
}
.reviews_left_card h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #111;
  text-align: center;
}
.reviews_left_card h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 1px;
  text-align: center;
}

/* Embla Carousel Styles */
.embla {
  display: flex;
  position: relative;
  justify-items: stretch;
}

.embla_secondary_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.embla__container {
  display: flex;
}

.embla__slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  cursor: grab;
  user-select: none;
}

.embla__dots {
  display: flex;
  list-style: none;
  justify-content: center;
  padding-top: 10px;
}

.embla__dot {
  background-color: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
  outline: 0;
  border: 0;
  width: 30px;
  height: 30px;
  margin-right: 7.5px;
  margin-left: 7.5px;
  display: flex;
  align-items: center;
}

.embla__dot:after {
  background-color: #efefef;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  content: '';
}

.embla__dot.is-selected:after {
  background-color: rgb(86, 121, 47);
  opacity: 1;
}

.review_text {
  font-size: 2rem;
  font-weight: 400;
  color: #111;
  line-height: 1.3;
  text-align: left;
  overflow-wrap: anywhere;
}
.review_author {
  font-size: 1.3rem;
  color: #222;
  font-weight: 400;
  text-align: left;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.embla__viewport {
  overflow: hidden;
}
.embla__buttons {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 20%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none; /* allow buttons to be clickable but not block drag */
  z-index: 2;
}
.embla__prev,
.embla__next {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #4e702d;
  background: #fff;
  color: #4e702d;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.embla__prev:hover,
.embla__next:hover {
  background: #4e702d;
  color: #fff;
  border-color: #222;
}
@media (max-width: 700px) {
  .embla__buttons {
    padding: 0 0.1rem;
  }
  .embla__prev,
  .embla__next {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}
@media (max-width: 1400px) {
  div.reviews_container {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .reviews_container {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 98vw;
  }
  .reviews_left_card {
    min-width: 0;
    width: 100%;
    padding: 2rem 0.5rem 2rem 0.5rem;
  }
  .embla {
    min-width: 0;
    width: 100%;
    padding: 1rem 0 1rem 0;
  }
}
@media (max-width: 700px) {
  .reviews_section {
    min-height: 0;
    padding: 0;
  }
  .reviews_container {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100vw;
    padding: 0.5rem 0 0.5rem 0;
  }
  .reviews_left_card {
    min-width: 0;
    width: 100%;
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
  }
  .embla {
    min-width: 0;
    width: 100%;
    padding: 0.5rem 0 0.5rem 0;
  }
  .review_text {
    font-size: 1.1rem;
  }
}
/* --- End Guest Reviews Section (Slider) --- */

/* --- Email Input Section --- */
.email_section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 0 auto 3rem auto;
}
.email_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 85%;
  gap: 2.5rem;
  padding: 2.5rem 0;
}
.email_label {
  font-size: 1.5rem;
  font-weight: 400;
  color: #111;
  letter-spacing: 1px;
  text-align: left;
  flex: 1 1 0;
}
.email_form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 0;
  justify-content: flex-end;
}
.email_input {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 0.7em 1.2em;
  border: 1px solid #ddd;
  border-radius: 0;
  outline: none;
  min-width: 260px;
  max-width: 340px;
  background: #fff;
  color: #222;
  transition: border 0.2s;
}
.email_input:focus {
  border: 1.5px solid var(--primary_green);
}
.email_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 180px;
  width: auto;
  background-color: var(--primary_green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: 1px;
  border-radius: 0;
  padding: 0.7em 1.5em;
  border: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.email_btn span {
  font-size: 1.2em;
  margin-left: 0.5em;
}
.email_btn:hover {
  background: #222;
  color: #56792f;
}

/* --- Footer Section --- */
.footer_section {
  width: 100vw;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  margin-top: 2rem;
}
.footer_top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.5rem;
  max-width: 1650px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2.5rem 2rem;
  border-bottom: 1px solid #e5e5e5;
}
.footer_logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
/* .footer_logo_bg {
  width: 170px;
  height: 170px;
  background: var(--primary_green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_logo_bg .home_icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  max-width: 90px;
  max-height: 90px;
  padding: 0;
} */

.footer_logo_bg img {
  object-fit: contain;
  width: 250px;
}
.footer_desc {
  flex: 2 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2.5rem;
  font-size: 1.3rem;
  color: #111;
}
.footer_title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer_subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #222;
}
.footer_address {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 2.5rem;
  min-width: 220px;
}
.footer_address_title,
.footer_links_title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: #222;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .footer_links_title {
    text-align: center;
    width: 100%;
  }
}

.footer_links_title {
  margin-top: 1.5rem;
}

.footer_links {
  display: flex;
  flex-direction: column;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  align-items: flex-start;
}

.footer_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_links li {
  margin-bottom: 0.2rem;
}

.footer_links a {
  color: #56792f;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 2px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}

.footer_links a:hover,
.footer_links a:focus {
  border-bottom: 1.5px solid #56792f;
  border-radius: 2px;
}

.footer_address_text {
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
}
.footer_bottom {
  display: flex;
  flex: 1 1 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #222;
  padding: 1.5rem 0 1.5rem 0;
  border-top: 1px solid #e5e5e5;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .footer_top {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
  .footer_logo,
  .footer_desc,
  .footer_address {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
  .footer_logo_bg {
    margin-bottom: 1rem;
  }
}
/* --- Landlord Hero Section --- */
.landlord_hero_section {
  position: relative;
  display: flex;
  align-items: stretch; /* Changed from flex-start to stretch */
  min-height: 75vh;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}

.landlord_hero_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 0%;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 8vh;
  padding: 6vw 5vw 4vw 5vw;
  min-width: 0;
}

.landlord_hero_text {
  display: flex;
  flex-direction: column;
  max-width: 850px;
  color: #222;
  gap: 1rem;
}

.landlord_hero_subtitle {
  font-size: 2rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}

.landlord_hero_heading {
  text-align: left;
  font-size: 3rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.landlord_hero_paragraph {
  font-size: 1.25rem;
  color: #222;
  line-height: 1.5;
}

.landlord_hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.landlord_hero_svg_bg {
  width: 100%;
  height: 100%;
  display: block;
}

html,
body {
  overflow-x: hidden;
}

/* --- Hosts Section --- */
.hosts_section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: #fff;
  margin-bottom: 3rem;
}

.hosts_container {
  display: flex;
  width: 100%;
}

.hosts_content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
}

.hosts_image_wrapper {
  flex: 0 0 auto;
  position: relative;
}

.hosts_image {
  width: 300px;
  height: 400px;
  object-fit: cover;
  box-shadow: -35px 35px 0px 0px #4e702d;
}

.hosts_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
}

.hosts_subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 0.5rem;
}

.hosts_title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hosts_info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info_block h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.info_block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.hosts_flex_container {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}
.hosts_image_wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.hosts_image {
  width: 580px;
  height: 600px;
  object-fit: cover;
  box-shadow: -35px 35px 0px 0px #4e702d;
  background: #fff;
  border-radius: 0;
}
.hosts_flex_text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 800px;
  margin-top: 1.5rem;
}
.hosts_flex_text h3 {
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-align: left;
}
.hosts_flex_text h2 {
  margin-bottom: 2.5rem;
  text-align: left;
  letter-spacing: 1px;
}
.hosts_flex_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hosts_flex_block h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
}
.hosts_flex_block p {
  line-height: 1.7;
  text-align: left;
}
.hosts_flex_info hr {
  border: none;
  border-top: 1.5px solid #ddd;
  margin: 1rem 0 1rem 0;
  width: 100%;
}
@media (max-width: 1100px) {
  .hosts_image {
    width: 340px;
    height: 420px;
  }
  .hosts_flex_container {
    gap: 2rem;
  }
}
@media (max-width: 900px) {
  .hosts_flex_container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .hosts_image {
    width: 90vw;
    max-width: 340px;
    height: auto;
  }
  .hosts_flex_text {
    margin-top: 0;
    max-width: 100vw;
    align-items: center;
  }
  .hosts_flex_text h2,
  .hosts_flex_text h3 {
    text-align: center;
    width: 100%;
  }
  .hosts_flex_block h4,
  .hosts_flex_block p {
    text-align: center;
  }
}

/* --- Environment Section --- */
.environment_section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  align-items: center;
  align-self: center;
  gap: 40px;
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 85%;
}
.environment_content {
  flex: 1 1 480px;
  min-width: 340px;
  max-width: 600px;
}
.environment_subtitle {
  font-weight: 400;
  margin-bottom: 12px;
  color: #222;
}
.environment_heading {
  font-weight: 700;
  margin-bottom: 24px;
  color: #222;
  line-height: 1.1;
}
.environment_paragraph {
  margin-bottom: 16px;
  color: #222;
  line-height: 1.6;
}
.environment_images {
  display: flex;
  gap: 32px;
  min-width: 340px;
}

.environment_images > img:first-child {
  margin-top: 25px;
}

.environment_images > img:nth-child(2) {
  margin-bottom: 25px;
}

.environment_img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  background: #eee;
}

@media (max-width: 1100px) {
  .environment_section {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 0 16px 32px 16px;
  }
  .environment_images {
    justify-content: flex-start;
    gap: 16px;
  }
  .environment_img {
    max-width: 320px;
    height: 220px;
  }
}

@media (max-width: 700px) {
  .environment_section {
    margin-top: 40px;
    gap: 20px;
    padding: 0 4vw 24px 4vw;
  }
  .environment_content {
    max-width: 100%;
    min-width: 0;
  }
  .environment_images {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .environment_img {
    max-width: 98vw;
    height: 160px;
  }
}

.flex_end_x {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

/* Contact Page Styling */
.contact_page h1,
.contact_page h2,
.contact_page h3,
.contact_page p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
}

.contact_page h1 {
  font-size: var(--h1_heading);
}

.contact_page h2 {
  font-size: var(--h2_heading);
}

.contact_page h3 {
  font-size: var(--h3_heading);
}

.contact_page p {
  font-size: var(--p_text);
}

@media screen and (max-width: 900px) {
  .contact_page h1 {
    font-size: var(--mobile_h1_heading);
    text-align: center;
  }
  .contact_page h2 {
    font-size: var(--mobile_h2_heading);
    text-align: center;
  }
  .contact_page h3 {
    font-size: var(--mobile_h3_heading);
    text-align: center;
  }
  .contact_page p {
    font-size: var(--mobile_p_text);
  }

  h1.contact_hero_heading {
    font-size: var(--mobile_h1_heading);
    text-align: center;
  }

  .contact_hero_paragraph {
    font-size: var(--mobile_p_text);
    text-align: center;
  }

  div.contact_hero_text {
    margin-right: 10%;
    margin-left: 10%;
    margin-top: 10%;
    margin-bottom: 10%;
  }
}

.contact_hero_section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
  background-image: url('assets/front_pages_images/bullseye-gradient.svg');
  background-size: cover;
}

.contact_hero_text {
  flex-direction: column;
  align-items: flex-start;
  margin-right: 25%;
  margin-left: 25%;
  margin-top: 15%;
  margin-bottom: 15%;
}

.contact_hero_heading {
  text-align: left;
}

/* Contact Form Styles */
.contact_form_map_container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
}

.contact_form_container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(78, 112, 45, 0.1);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form_group {
  display: flex;
  flex-direction: column;
}

.form_input,
.form_textarea {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 0.9em 1.2em;
  border: 1.5px solid #e0e6d8;
  outline: none;
  background: #ffffff;
  color: #222;
  transition: border 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
  resize: none;
}

.form_input:focus,
.form_textarea:focus {
  border: 1.5px solid var(--primary_green);
  box-shadow: 0 0 0 2px rgba(78, 112, 45, 0.1);
  background: #fff;
}

.form_textarea {
  min-height: 110px;
  max-height: 220px;
}

.form_submit_btn {
  /* Use the same style as .gallery_btn */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  width: auto;
  background-color: var(--primary_green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: 1.5px;
  word-spacing: 1px;
  fill: #fff;
  padding: 15px 30px;
  border: none;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.form_submit_btn:hover {
  background: #222;
  color: #56792f;
  fill: #56792f;
}

@media (max-width: 900px) {
  .contact_form_map_container {
    flex-direction: column;
  }
}

/* Map Styles */
.contact_map_container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(78, 112, 45, 0.1);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact_map {
  min-width: 30vw;
  min-height: 30vh;
}

/* --- Contact Info Cards Section --- */
.contact_info_cards_section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
.contact_info_cards_container {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact_info_card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #4e702d;
  border-radius: 12px;
  padding: 24px 32px;
  min-width: 320px;
  box-shadow: 0 2px 8px rgba(78, 112, 45, 0.05);
  gap: 24px;
}
.contact_info_icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_info_label {
  font-size: 1rem;
  color: #4e702d;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.contact_info_value {
  font-size: 1.1rem;
  color: #222;
  font-weight: 400;
}
.contact_info_value a {
  color: #222;
  text-decoration: none;
}
.contact_info_value a:hover {
  color: #4e702d;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .contact_info_cards_container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .contact_info_card {
    min-width: 220px;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Non-Smoking Info Grid Styles */
.nonsmoking_grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem auto 4rem auto;
  width: 80%;
}
.nonsmoking_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f8faf6;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(78, 112, 45, 0.07);
  padding: 5rem 2.2rem 5rem 2.2rem;
  gap: 2.5rem;
  width: 100%;
  max-width: 1400px;
}
.nonsmoking_icons {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.nonsmoking_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  border-radius: 12px;
  background: #ffffff;
  border: 3px solid #4e702d;
  font-size: 2.2rem;
  box-shadow: 0 2px 8px rgba(78, 112, 45, 0.1);
}
.nonsmoking_icon svg {
  width: 64px;
  height: 64px;
  display: block;
}
.nonsmoking_text {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin-left: 2rem;
}
.nonsmoking_text h3 {
  font-size: 3rem;
  color: #222;
  display: block;
  margin-bottom: 0.5rem;
}

.nonsmoking_text p,
.nonsmoking_text span {
  font-size: 1.3rem;
}

@media (max-width: 1200px) {
  .nonsmoking_item {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  .nonsmoking_grid {
    width: 98%;
  }
  .nonsmoking_text h3 {
    font-size: 2.2rem;
  }

  .nonsmoking_text {
    font-size: 1rem;
    text-align: center;
  }

  .nonsmoking_icon {
    width: 100px;
    height: 100px;
  }
}

.nonsmoking_icon_container {
  position: relative;
  display: inline-block;
}
.nonsmoking_icon_container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  background: red;
  opacity: 0.7;
  transform: rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
}

