/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.grecaptcha-badge {
    display: none !important;
}


/* Target Search & Filter form inputs and selects */

/* Make the list and list items full width */
.searchandfilter ul,
.searchandfilter li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.searchandfilter input[type="text"],
.searchandfilter input[type="search"],
.searchandfilter textarea,
.searchandfilter select {
    background-color: #ffffff; /* white background */
    color: #000000; /* black text */
    padding: 10px; 
    border: 1px solid #ccc; /* subtle border */
    width: 100%; /* full width of parent div */
    box-sizing: border-box; /* include padding in width */
    /* Border radius with vendor prefixes for older browsers */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom:8px;
}
.searchandfilter input[type="submit"] {
    color: #fff;
    background-color: #000;
    padding: 8px;
    border: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%; /* full width of parent div */
}
.searchandfilter input[type="submit"]:hover {
    color: #000;
    background-color:#FEBADF;
}

a.adv-search {
    color: #fff;
    font-weight: 500;
    display: block;
    text-align: center;
    margin-top:8px;
}
a.adv-search:hover {
    color: #000;
    background-color:#FEBADF;
     -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.advanced-search h4 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #7F1029;
    margin: 40px 0 40px 0;
}
.advanced-search .searchandfilter ul li ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr)); /* each col at least 200px */
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.advanced-search .searchandfilter input[type="submit"] {
   margin-top:40px;
}

.advanced-search .searchandfilter ul li ul li {
  margin: 0; /* optional: tidy up */
}

/* ✅ At 767px and below → 2 columns + smaller font */
@media (max-width: 767px) {
  .advanced-search .searchandfilter ul li ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .advanced-search .searchandfilter ul li ul li {
    font-size: 11px;
  }
}
/* ✅ At 767px and below → 2 columns + smaller font */
@media (max-width: 380px) {
  .advanced-search .searchandfilter ul li ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bookster-search-button {
    color: #fff;
    font-weight: 400;
    background-color: #000;
    padding: 5px;
    border: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%; /* full width of parent div */
    display: block;
    text-align: center;
    margin: 0 auto;
}
.bookster-search-button:hover {
    color: #000;
    background-color:#FEBADF;
}
@media (max-width: 1024px) {
  .home-search .searchandfilter ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .home-search .searchandfilter ul li {
    width: calc(50% - 10px); /* Two columns with space between */
    box-sizing: border-box;
  }

  .home-search .searchandfilter select,
  .home-search .searchandfilter input[type="submit"] {
    width: 100%;
    padding: 8px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .home-search .searchandfilter ul li {
    width: 100%; /* Stack in one column */
  }
}
/* Make WooCommerce rating stars gold for filled, grey for empty */
.woocommerce .star-rating span:before {
    color: #FFD700; /* Gold active stars */
}

.woocommerce .star-rating:before {
    color: #ccc; /* Grey inactive stars */
}

/*woof filters*/
/* Style the filter container */
.woof_container_inner h4 {
	margin-bottom: 9px;
	font-size: 18px;
	color: #fff;
	font-family: roboto slab;
	font-weight: 300;
}
.woof_front_toggle, .woof_front_toggle_opened, .woof_front_toggle_closed {
	color: #fff;
}
a.woof_front_toggle {
	font-size: 25px;
}
.woof.woof_products {
    background-color: #ffffff;   /* white background */
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.woof label {
	color: #fff;
}
/* Style checkboxes/radio labels */
.woof input[type="checkbox"] + label,
.woof input[type="radio"] + label {
    display: block;
    padding: 5px 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* Hover / checked state */
.woof input[type="checkbox"]:checked + label,
.woof input[type="radio"]:checked + label {
    background-color: #febadf;  /* your brand color */
    color: #fff;
}

/* Style select dropdowns */
.woof select {
    background-color: #ffffff; /* white background */
    color: #000000; /* black text */
    padding: 10px; 
    border: 1px solid #ccc; /* subtle border */
    width: 100%; /* full width of parent div */
    box-sizing: border-box; /* include padding in width */
    /* Border radius with vendor prefixes for older browsers */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom:8px;
}

/* Style AJAX loader */
.woof .woof_ajax_loading {
    text-align: center;
    margin-top: 10px;
}

.button.woof_submit_search_form {
	color: #fff !important;
	font-family: roboto slab;
	background-color: #000 !important;
	font-weight: 300 !important;
    padding: 8px;
    border: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%; /* full width of parent div */
}
.button.woof_submit_search_form:hover {
	 color: #e2e2e2 !important;
}

.details-tick {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* default: 3 cols */
    gap: 10px 20px;
}

.details-tick li {
    padding-left: 28px;
    background: url('img/details-tick.jpg') no-repeat left 3px;
    background-size: 18px;
}

/* Tablet: 2 columns */
@media (max-width: 767px) {
    .details-tick {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .details-tick {
        grid-template-columns: 1fr;
    }
}

/* Tablet: 481px–767px, force 6 across and scale images */
@media (min-width: 481px) and (max-width: 767px) {
  .elementor-image-gallery .gallery.gallery-columns-8 .gallery-item {
      max-width: none !important;      /* override Elementor's 50% */
      width: 100% !important;          /* fill the grid cell */
  }

  .elementor-image-gallery .gallery {
      display: grid !important;
      grid-template-columns: repeat(6, 1fr) !important;
      gap: 6px !important;
  }

  .elementor-image-gallery .gallery-item img {
      width: 100% !important;
      height: auto !important;
      display: block !important;
      object-fit: cover !important;
  }
}




/* Mobile: 480px and below, force 3 images per row */
@media (max-width: 480px) {
  .elementor-image-gallery .gallery {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 8px;
  }
  .elementor-image-gallery .gallery-item {
      margin: 0 !important;
      width: auto !important;
      float: none !important;
  }
}




.tl-book-now {
	display: none;
}
/* Custom Styling for Desktop/Tablets */
.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* Space between each location */
}

.loc-thumb {
    flex-shrink: 0; /* Prevent image from shrinking */
    margin-right: 20px; /* Space between image and text */
}

.loc-desc {
    flex-grow: 1; /* Allow text to fill remaining space */
}

.loc-desc h5 {
    font-size: 18px;
    margin: 0;
}

.loc-desc p {
    margin: 5px 0;
}

.read-more {
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .location-item {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center; /* Center the text */
    }

    .loc-thumb {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 10px; /* Space between image and text */
    }

    .loc-desc {
        text-align: center; /* Center the text content */
    }

    .loc-desc h5 {
        font-size: 16px;
    }

    .loc-desc p {
        font-size: 14px;
    }

    .read-more {
        font-size: 13px;
    }
}

/* Extra small mobile responsiveness */
@media (max-width: 480px) {
    .location-item {
        margin-bottom: 15px; /* Reduce margin on very small screens */
    }

    .loc-desc h5 {
        font-size: 14px;
    }

    .loc-desc p {
        font-size: 12px;
    }

    .read-more {
        font-size: 12px;
    }
}

/* reviews */
.woocommerce #reviews #comments h2, #reply-title {
  font-family: "Roboto Slab", serif;
  font-weight: 300; /* light */
  font-size: 1.3rem; /* keep it slightly smaller */
  margin-bottom: 1.2rem;
  color: #222;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  background: #f7f7f7;       /* light grey */
  margin-left: 0;            /* remove left offset */
  padding: 1.2rem 1.5rem;    /* add spacing inside */
  border-radius: 6px;        /* smooth corners */
  border: 1px solid #e0e0e0; /* subtle border */
  width: 100%;               /* full width */
  box-sizing: border-box;    /* ensure padding doesn’t break width */
}
.woocommerce #reviews #comments ol.commentlist {
	padding:0
}
.woocommerce-review__author {
  font-family: "Roboto Slab", serif;
  font-weight: 700;   /* bold */
  font-size: 18px;
  color: #222;
}
#comment-form-rating-label, .comment-form-comment label {
	font-weight: 600;
	margin: 20px 0 20px 0;
	display: block;
}
.woocommerce .required {
  color: red;
  font-weight: 700;  /* make it stand out */
}
.woocommerce #review_form #respond textarea {
  border: 1px solid #e0e0e0;  /* lighter grey border */
  border-radius: 6px;
  padding: 0.8rem 1rem;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;            /* keeps it neat but still resizable */
}
.woocommerce #review_form #respond .form-submit input {
	font-family: Roboto;
	font-size: 1.1 rem;
	font-weight:500;
	color: #000;
	background-color: #febadf;
}
.woocommerce #review_form #respond .form-submit input:hover {
	background-color:#ce2369;
	color:#fff;
}

/* contact form 7*/
#responsive-form{
	margin:0 auto;
    width:100%;
}
.form-row{
	width: 100%;
}
.column-half, .column-full{
	float: left;
	position: relative;
	padding: 0.25rem;
	width:100%;
	-webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) { 
	.column-half{
		width: 50%;
	}
}
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea {
	border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
	width: 100%;
	-webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box;
	      box-sizing: border-box
}
.wpcf7 input[type="text"]:focus{
	background: #fff;
}
.wpcf7-submit{
	float: right;
	background-color: #ffe5f3;
	color: #333;
	text-transform: uppercase;
	border: none;
	padding: 8px 20px;
	cursor: pointer;
	display: block;
		border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.wpcf7-submit:hover{
	background: #ce2369;
}
span.wpcf7-not-valid-tip{
	text-shadow: none;
	font-size: 12px;
	color: #fff;
	background: #ff0000;
	padding: 5px;
}
div.wpcf7-validation-errors { 
	text-shadow: none;
	border: transparent;
	background: #f9cd00;
	padding: 5px;
	color: #9C6533;
	text-align: center;
	margin: 0;
	font-size: 12px;
}
div.wpcf7-mail-sent-ok{
	text-align: center;
	text-shadow: none;
	padding: 5px;
	font-size: 12px;
	background: #59a80f;
	border-color: #59a80f;
	color: #fff;
	margin: 0;
}
.cottages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* ensures cards same height per row */
}

.cottage-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  background: #fff;
  text-align: center;
}

.cottage-content {
  flex-grow: 1; /* fills space so button is at bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.cottage-image-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ratio */
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}

.cottage-image-wrap img.cottage-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills div, cropping as needed */
  object-position: center;
}

.cottage-title {
  font-family: 'Roboto Slab', serif;
  margin: 10px 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.cottage-title a {
  text-decoration: none;
  color: #CE2369;
}

.cottage-title a:hover {
  color: #000;
}

.cottage-attributes {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.5;
}

.cottage-attributes > div {
  margin-bottom: 4px;
}

.price,
.custom-price {
  font-weight: bold;
  margin-bottom: 10px;
}

.cottage-excerpt {
  color: #666;
  margin-bottom: 10px;
}

.book-now-wrap {
  padding: 10px 15px;
  margin-top: 20px;
  background-color: #fcedf5;
  width: 100%;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.book-now-wrap:hover {
  background-color: #ce2369;
}

.book-now-wrap a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.book-now-wrap a:hover {
  color: #fff !important;
}

/* Responsive: 1 column on smaller screens */
@media (max-width: 768px) {
  .cottages-grid {
    grid-template-columns: 1fr;
  }
}

.book-now-wrap {
	padding: 10px 15px 10px 15px;
	margin-top: 20px;
	background-color: #fcedf5;
	width: 100% !important;
	border-radius: 6px !important;
	transition: background-color 0.3s ease;
	cursor: pointer; /* 👈 This is the hand cursor */
	
}
.book-now-wrap:hover {
	background-color: #ce2369;
	color: #fff !important;
}
.book-now-wrap a {
	color: #000;
	font-weight: 600;
}
.book-now-wrap a:hover {
	color: #fff !important;
}

.e-n-tabs-content h1, .e-n-tabs-content h2, .e-n-tabs-content h3, .e-n-tabs-content h4, .e-n-tabs-content h5, .e-n-tabs-content h6 {
	font-size: 1.1rem;
}
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* desktop: 3 columns */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  box-sizing: border-box;
}

.entertainment-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  background: #fff;
  text-align: center;
}

.entertainment-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.entertainment-image-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ratio */
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}

.entertainment-image-wrap img.entertainment-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.entertainment-count {
  font-size: 0.9em;
  color: #666;
  margin-top: 4px;
  font-weight: bold;
}

.entertainment-title {
  font-family: 'Roboto Slab', serif;
  margin: 10px 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.entertainment-title a {
  text-decoration: none;
  color: #CE2369;
}

.entertainment-title a:hover {
  color: #000;
}

.entertainment-excerpt {
  color: #666;
  margin-bottom: 10px;
}

.entertainment-button-wrap {
  width: 100%;
  margin-top: auto;
}

.entertainment-button {
  display: block;
  width: 100%;
  padding: 12px 0;
  background-color: #fcedf5;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.entertainment-button:hover {
  background-color: #ce2369;
  color: #fff;
}

.entertainment-button.disabled {
  display: block;
  width: 100%;
  padding: 12px 0;
  background-color: #ccc;
  color: #666;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  cursor: not-allowed;
}

/* 2 columns at <= 1200px */
@media (max-width: 1200px) {
  .entertainment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1 column at <= 768px */
@media (max-width: 768px) {
  .entertainment-grid {
    grid-template-columns: 1fr;
  }
}


.ttd_standard h1, .ttd_standard h2, 
.ttd_multi h1, .ttd_multi h2, 
.faq h1, .faq h2,
.cookies h1, .cookies h2,
.contact h1, .contact h2,
.privacy-policy h1, .privacy-policy h2 {
  font-family: 'Roboto Slab', serif;
  margin: 10px 0;
  font-size: 1.8rem;
  font-weight: 300;
  color:#CE2369;
}
.ttd_standard h3, .ttd_standard h4, 
.ttd_multi h3, .ttd_multi h4, 
.faq h3, .faq h4,
.cookies h3, .cookies h4,
.contact h3, .contact h4,
.privacy-policy h3, .privacy-policy h4  {
  font-family: 'Roboto Slab', serif;
  margin: 10px 0;
  font-size: 1.4rem;
  font-weight: 300;
  color:#000;
}
.ttd_standard h5, .ttd_standard h6, 
.ttd_multi h5, .ttd_multi h6, 
.faq h5, .faq h6,
.cookies h5, .cookies h6,
.contact h5, .contact h6,
.privacy-policy h5, .privacy-policy h6 {
  font-family: 'Roboto Slab', serif;
  margin: 10px 0;
  font-size: 1.2rem;
  font-weight: 400;
  color:#000;
}
/* Apply only to single blog posts */
.single-post .content-sections-wrapper {
    gap: 10; /* space between boxes */
}
.content-sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px; /* space between boxes */
}
.content-section-row {
    display: flex;
    align-items: stretch;
    gap: 20px; /* space between photo and text */
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}
/* Apply only to single blog posts */
.single-post .content-section-row {
  border: 0;
  box-shadow: 0 0 0;

}

.content-section-photo {
    flex: 0 0 25%; /* photo fixed width */
}
.content-section-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text content fills remaining space */
.content-section-text {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* Text content fills remaining space */
.single-post .content-section-text {
    padding: 0px;
}


/* Alternate photo left/right */
.photo-left { order: 0; }
.text-right { order: 1; }

.photo-right { order: 1; }
.text-left { order: 0; }

/* Titles and content */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.section-content {
    font-size: 1rem;
    margin-bottom: 10px;
}
.section-link a {
    color: #0073aa;
    text-decoration: underline;
}
.section-link a:hover {
    color: #005177;
}

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
    .content-section-row {
        flex-direction: column;
    }
    .content-section-photo,
    .content-section-text {
        width: 100%;
        order: 0 !important;
    }
    .content-section-text { padding: 15px; }
}

.walking-route-box {
    border: 1px solid #ccc;
    padding: 12px 15px;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 1.1rem; /* increased font size */
}

.walking-route-box .walking-route-item {
    display: inline-flex;
    gap: 5px;
}
.walking-route-box strong {
    font-weight: bold;
}
.walking-route-box em {
    font-style: italic;
}

/* Newsletter login form styling */
.newsletters-management-login {
  max-width: 450px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  font-family: inherit;
  text-align: center;
}

.newsletters-management-login h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #333;
}

.newsletters-management-login p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.newsletters-management-login .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.newsletters-management-login label {
  font-size: 0.9rem;
  margin-bottom: .3rem;
  color: #444;
}

.newsletters-management-login input[type="text"],
.newsletters-management-login input[type="email"] {
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: .5rem;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletters-management-login input[type="text"]:focus,
.newsletters-management-login input[type="email"]:focus {
  border-color: #ce2369;
  box-shadow: 0 0 0 3px rgba(0,115,230,0.15);
  outline: none;
}

.newsletters-management-login button {
  padding: 0.8rem 1.5rem;
  background: #ce2369;
  border: none;
  border-radius: .5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.newsletters-management-login button:hover {
  background: #ce2369;
}

.newsletters-management-login button:active {
  transform: scale(0.98);
}

