/*Our Properties section on homepage - Option 2 properties on the left and image on the right*/
.property-hover-gallery {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.property-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.property-name {
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.property-name:hover {
  color: #B08D57; /* or your brand color */
}

.property-image {
  flex: 2;
  text-align: center;
}

.property-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .property-hover-gallery {
    flex-direction: column;
  }
  .property-image img {
    max-width: 100%;
  }
}
/*---------------------------*/

/*Forminator booking form*/
.sticky-booking {
  /*position: sticky;*/
  top: 100px; /* adjust for header height */
  align-self: start;
}

/* Sticky Booking Form Container */
.wp-block-column.sticky-booking {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 15px;
    position: sticky;
    top: 120px;
}

/* Half-width date fields - Adjust selectors if needed */
#forminator-module-505 .forminator-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#forminator-module-505 .forminator-row .forminator-col {
    flex: 1 1 48%;
}

/* Center-align Book Button */
#forminator-module-505 .forminator-button-submit {
    display: block;
    margin: 20px auto 0 auto;
    background-color: #516E45;   /* Golden color */
    color: #ffffff;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

#forminator-module-505 .forminator-button-submit:hover {
    background-color: #B59410;   /* Forest green */
    color: #ffffff;
}

#forminator-module-505 {
	  font-family: 'Merriweather', serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
	  font-size: 12px;
    font-weight: 600;
}

/* Success Message Styling (Optional - already handled by Forminator) */


/*We are Almanac - Our Story - grow effect*/

.scroll-grow {
    transition: transform 1s ease;
    transform-origin: center;
    transform: scale(1);  /* initial state */
}

.scroll-grow.in-view {
    transform: scale(1.2); /* stronger zoom */
    transition-delay: 0.2s; /* short pause before zoom */
}


/*List your property form*/
/* FORM CONTAINER - PREMIUM COMPACT STYLE */
#forminator-module-795 {
    background: linear-gradient(145deg, #D3C8B87A, rgba(245,245,245,200));
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Merriweather', serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 80px auto 0 auto;  /* Push form below header */
}

/* INPUT FIELDS - MINIMAL, COMPACT */
#forminator-module-795 input,
#forminator-module-795 textarea,
#forminator-module-795 select {
    background-color: rgba(255,255,255,0.6);
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border-radius: 5;
    font-family: 'Merriweather', serif;
    font-size: 12px;
    padding: 6px 4px;
    box-shadow: none;
    width: 100%;
    margin-bottom: 10px;
}


/* Hide all field labels except checkbox group title and checkbox options */
#forminator-module-795 label:not([class*="forminator-checkbox"]) {
  display: none !important;
}

/* Ensure 2-column layout and clean alignment for each checkbox + label row */
#forminator-module-795 .forminator-checkbox--inline {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 4px;
  font-size: 12px;
}

#forminator-module-795 .forminator-checkbox {margin-top: 1px !important;}

/* Style and align the label text */
#forminator-module-795 .forminator-checkbox-label {
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  top: 1px;
}

/* Final visual alignment fix for checkbox */
#forminator-module-795 input[type="checkbox"][id^="forminator-field-checkbox"] {
  transform: translateY(1px) !important;
  width: 13px !important;
  height: 13px !important;
  margin: 0 !important;
}

/* Optional: group title label (e.g., “Type of Property”) */
#forminator-module-795 .forminator-label {
  font-size: 12px;
	margin-bottom: 1px !important
}



/* REMOVE FILE UPLOAD BORDER */
#forminator-module-795 .forminator-upload {
    border: none !important;
    background: rgba(255,255,255,0.7);
}

/* SUBMIT BUTTON - SMALL, FULL WIDTH, PREMIUM */
#forminator-module-795 .forminator-button-submit {
    background-color: #516e45;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Merriweather', serif;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* BUTTON HOVER EFFECT */
#forminator-module-795 .forminator-button-submit:hover {
    background-color: #c49b3f;
    transform: scale(1.04);
}

/* MOBILE RESPONSIVENESS */
@media(max-width: 768px){
    #forminator-module-795 {
        padding: 15px;
        margin: 60px auto 0 auto;
    }
}

#forminator-module-795 input,
#forminator-module-795 textarea,
#forminator-module-795 select {
    border-bottom: 1px solid #ccc !important;
    background-color: rgba(255,255,255,0.6);
    transition: border-color 0.3s ease;
}

#forminator-module-795 input:focus,
#forminator-module-795 textarea:focus,
#forminator-module-795 select:focus {
    border-color: #516e45 !important;
}
#forminator-module-795 input::placeholder,
#forminator-module-795 textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

#forminator-module-795 input:focus::placeholder,
#forminator-module-795 textarea:focus::placeholder {
    opacity: 0.2;
}
#forminator-module-795 textarea {
    height: 60px !important;
    min-height: 60px !important;
    resize: none;
}
/* Hide drag and drop area under file upload */
#forminator-module-795 .forminator-multi-upload-message {
    display: none !important;
}
/* Forminator error message box */
#forminator-module-795 .forminator-error-message {
    background-color: #FFFFFF00 !important;
    color: #b60000 !important;
    font-family: 'Merriweather', serif;
    font-size: 12px !important;
    border: none !important;
    border-radius: none !important;
    display: block !important;
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}
#forminator-module-795 input::placeholder,
#forminator-module-795 textarea::placeholder {
    color: #222222 !important;
    opacity: 1 !important;
}
#forminator-module-795 .forminator-description {
	  font-family: 'Merriweather', serif !important;
    font-size: 12px !important;
	  color: #222222;
}

/*Form 505 Booking Form Styling*/
/* HIDE LABELS (Use placeholders instead) */
#forminator-module-505 label {
    display: none !important;
}

/* MOBILE: Show first 8 amenities by default */
@media(max-width: 768px) {
    .amenities-toggle-group > .wp-block-columns .wp-block-column > .wp-block-uagb-container:nth-child(n+3) {
        display: none !important;
    }

    .amenities-toggle-group.show-all > .wp-block-columns .wp-block-column > .wp-block-uagb-container {
        display: flex !important;
    }
}

body {
    margin-bottom: 0 !important;
}


/*Sticky Mobile Tray*/
/* Sticky Tray Styling */
.mobile-sticky-tray {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: fixed;
  bottom: 0;
  left: 0;
	right: 0;
  width: 100%;
	height: 60px;
  background-color: #fff;
  border-top: 1px solid #ccc;
  z-index: 9999;
}

.mobile-sticky-tray .book-now-btn {
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
  font-family: Merriweather, serif;
  font-weight: bold;
  color: #fff;
  background-color: #516E45;
  border: none;
  cursor: pointer;
  display: block;
  width: 50%;
}


.mobile-sticky-tray .icon-btn {
  width: 25%;
  background-color: #516E45;
	display: flex;
	justify-content: center;
  align-items: center;
  height: 100%; /* Match sticky tray height */
}

.mobile-sticky-tray .icon-btn img {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}

/* Style for icon buttons in sticky tray */
.mobile-sticky-tray .icon-btn {
    width: 25%;
    background-color: #516E45 !important; /* Same green as Book Now */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
}

/* Style for the icons inside the buttons */
.mobile-sticky-tray .icon-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); /* Make icons white */
}


/* Popup Styling */
@media (max-width: 768px) {
   #booking-form-popup {
      display: none;
   }
}

.booking-form-popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.booking-form-popup form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  width: 400px;
}

.close-popup-btn {
  display: block;
  margin: 10px auto 0;
  padding: 10px 20px;
  background: #444;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Popup Container Fullscreen Styling */
.booking-form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow-y: auto;
  padding: 20px;
}

/* Force Forminator Form Full Width Inside Popup */
.booking-form-popup .forminator-ui.forminator-custom-form {
  width: 100% !important;
  max-width: none !important;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Move Close Button Below Form */
.close-booking-btn {
  width: 100%;
  background-color: #444;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-family: Merriweather, serif;
  font-weight: bold;
  border: none;
  margin-top: 20px;
  cursor: pointer;
}

/* Style Form 505 Container */
#forminator-module-505 {
    background: #ffffff !important;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: Merriweather, serif;
}

/* Style Input Fields */
#forminator-module-505 input,
#forminator-module-505 select,
#forminator-module-505 textarea {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Style Button */
#forminator-module-505 .forminator-button {
    background-color: #3e5c50 !important;
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: bold;
    font-family: Merriweather, serif;
    padding: 12px 20px;
    font-size: 12px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

/* Button Hover */
#forminator-module-505 .forminator-button:hover {
    background-color: #2f4f4f !important;
}
#forminator-module-505 .forminator-input-with-icon {
    padding-left: 35px !important;  /* Adjust this value as needed */
    font-family: Merriweather, serif !important;
}

#forminator-module-505 .forminator-icon-calendar {
    left: 10px !important;  /* Keep icon near the edge */
    z-index: 1;
}

/* Style the visible Select Property text inside popup */
#booking-form-popup .select2-selection__rendered {
    font-size: 12px !important;
    font-family: Merriweather, serif !important; /* Optional: to match other fields */
}
.select2-results__option {
    font-size: 12px !important;
    font-family: Merriweather, serif !important; /* Optional */
}
.select2-search__field {
    font-size: 12px !important;
    font-family: Merriweather, serif !important; /* Optional */
}
/*Force forms inside columns to behave normally */
.wp-block-column .forminator-ui {
    display: block !important;
    width: 100% !important;
}
	
/* Add right border to Book Now and Call buttons */
.mobile-sticky-tray .book-now-btn,
.mobile-sticky-tray .icon-btn {
    border-right: 1px solid #ffffff50; /* subtle white divider */
}

/* Remove border from last button (email icon) */
.mobile-sticky-tray .icon-btn:last-child {
    border-right: none;
}

/* Container Styling */
#forminator-module-2445 {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Merriweather', serif;
    width: 100%;
    box-sizing: border-box;
}

/* Input Fields */
#forminator-module-2445 input,
#forminator-module-2445 select,
#forminator-module-2445 textarea {
    background-color: rgba(255,255,255,0.7);
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border-radius: 5px;
    font-family: 'Merriweather', serif;
    font-size: 12px;
    padding: 10px 8px;
    width: 100%;
    margin-bottom: 10px;
    box-shadow: none;
}

/* Hide Labels */
#forminator-module-2445 label {
    display: none !important;
}

/* Date Pickers: Half Width */
#forminator-module-2445 .forminator-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#forminator-module-2445 .forminator-row .forminator-col {
    flex: 1 1 48%;
}

/* Calendar Icon Positioning (if using Forminator icons) */
#forminator-module-2445 .forminator-input-with-icon {
    padding-left: 35px !important;
}

#forminator-module-2445 .forminator-icon-calendar {
    left: 10px !important;
    z-index: 1;
}

/* Button Styling */
#forminator-module-2445 .forminator-button-submit {
    background-color: #516E45;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Merriweather', serif;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#forminator-module-2445 .forminator-button-submit:hover {
    background-color: #c49b3f;
    transform: scale(1.04);
}

#forminator-module-2445 .select2-selection__rendered {font-size: 12px !important;
    font-family: Merriweather, serif !important; }


/* Styling for Form 2635 (copied from 795) */
#forminator-module-2635 {
    background: linear-gradient(145deg, #D3C8B87A, rgba(245,245,245,200));
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Merriweather', serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 80px auto 0 auto;
}

#forminator-module-2635 input,
#forminator-module-2635 textarea,
#forminator-module-2635 select{
    background-color: rgba(255,255,255,0.6);
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border-radius: 5;
    font-family: 'Merriweather', serif;
    font-size: 12px;
    padding: 6px 4px;
    box-shadow: none;
    width: 100%;
    margin-bottom: 10px;
}

#forminator-module-2635 .forminator-button-submit {
    background-color: #516e45;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Merriweather', serif;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#forminator-module-2635 .forminator-button-submit:hover {
    background-color: #c49b3f;
    transform: scale(1.04);
}

#forminator-module-2635 .forminator-multi-upload-message {
    display: none !important;
}

/* Optional: group title label (e.g., “Type of Property”) */
#forminator-module-2635 .forminator-label {
  font-size: 12px;
	margin-bottom: 1px !important
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    z-index: 10001;
}
.popup-close-btn:hover {
    color: #000;
}

#forminator-module-2635 .forminator-description {
	  font-family: 'Merriweather', serif !important;
    font-size: 12px !important;
	  color: #222222;
}

/* Hide only non-checkbox labels — preserve checkbox labels and group titles */
#forminator-module-2635 label:not([class*="forminator-checkbox"]) {
  display: none !important;
}

/* Show and align checkbox options */
#forminator-module-2635 .forminator-checkbox--inline {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 4px;
  font-size: 12px;
}

#forminator-module-2635 .forminator-checkbox {
  margin-top: 1px !important;
}

/* Ensure checkbox label text is visible and styled */
#forminator-module-2635 .forminator-checkbox-label {
  font-size: 12px;
  line-height: 1;
  display: inline-block !important;
  white-space: nowrap;
  position: relative;
  top: 1px;
  color: #222; /* fallback just in case */
}

/* Make sure checkboxes are visible and aligned */
#forminator-module-2635 input[type="checkbox"][id^="forminator-field-checkbox"] {
  transform: translateY(1px) !important;
  width: 13px !important;
  height: 13px !important;
  margin: 0 !important;
  display: inline-block !important;
}



/*Properties page styling*/

.property-card-column-2 {
  border-right: 1px solid #ccc;
  padding-left: 20px;
}

/* Stick buttons to bottom of cover with margin */

.cover-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px; /* spacing from bottom */
}

/* Apply Posterama to site title */
.site-title,
.header-branding .site-title {
    font-family: 'Posterama Regular', sans-serif !important;
    font-weight: 400;
}

/*Property tag capsule*/
.badge-wrapper {
  position: relative;
}

.property-badge {
  position: absolute;
  top: 10px;
  right: 0px;
	align-content: right;
	width: auto;
  background: #D4C9B7;
  color: black;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
	font-family: 'Quicksand', sans-serif;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  z-index: 5;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Add shimmer layer */
.property-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  width: 50%;
  height: 98%;
  background: linear-gradient(120deg, transparent, rgba(255,255,240,0.4), transparent);
  transform: skewX(0deg);
  animation: shimmer 1.7s infinite;
}

@keyframes shimmer {
  0% {
    left: 15%;
  }
  100% {
    left: 50%;
  }
}

/* Make sure image wrapper is relatively positioned */
.wp-block-group {
  position: relative;
}

/*property type in individual properties page top section */
.property-type {
  position: absolute;
  top: 10px;
  right: 20px;
	align-content: right;
	width: auto;
  background: #D4C9B7;
  color: black;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
	font-family: 'Quicksand', sans-serif;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  z-index: 5;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/*pet friendly icon individual property pages */
.pet-friendly-icon {
  position: absolute;
  bottom: 20px;
  right: 5px;
	align-content: right;
	width: auto;
  color: white;
  padding: 4px 4px;
  z-index: 5;
  text-transform: uppercase;
}

/*pet friendly icon home page */
.pet-friendly-icon-home {
  position: absolute;
  top: 10px;
  left: 10px;
	align-content: left;
	width: auto;
  color: white;
  padding: 4px 4px;
  z-index: 5;
  text-transform: uppercase;
}

/*homepage CTA position on mobile*/
.home-cover-cta-mobile {
  position: absolute;
  bottom: 20px;
	align-content: center;
	width: auto;
  color: white;
  z-index: 5;
  text-transform: uppercase;
}

/*homepage CTA position on desktop*/
.home-cover-cta-desktop {
  position: absolute;
  bottom: 20px;
	align-content: center;
	width: auto;
  color: white;
  z-index: 5;
  text-transform: uppercase;
}


.circle-image img {
  width: 200px;        /* adjust size */
  height: 200px;       /* adjust size */
  object-fit: cover;   /* ensures image fills the circle */
  border-radius: 50%;  /* makes it a circle */
  display: block;
  margin: 0 auto;      /* center if needed */
}

.posterama-text {
  font-family: 'Posterama 2001', serif;
}

