/*
Theme Name: Listings
Theme URI: https://example.com/listings
Author: Your Name
Author URI: https://example.com
Description: A minimal custom WordPress theme for listings.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: listings
*/
@font-face {
  font-family: 'Source Sans Pro';
  src: url('assets/fonts/SourceSansPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('assets/fonts/SourceSansPro-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('assets/fonts/SourceSansPro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('assets/fonts/SourceSansPro-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
}


*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  object-fit: cover;
  height: auto;
}

a {
  text-decoration: none;
}

/* ----------------- Banner CSS ------------------ */

.hero-section-banner {

  height: 60vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.hero-section-banner::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
  z-index: 0;
}


.hero-section-banner h1 {
  font-size: 4.375rem;
  line-height: 7rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-family: "Source Sans Pro", sans-serif;
}


.hero-section-banner .booking-form {
  position: relative;
  z-index: 1;
}


/* ----------------- Header CSS ------------------ */

/* General Header styles */
header {
  position: relative;
  z-index: 999;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.125rem 0.75rem;
}

.navigation {
  text-align: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  padding: 4px 1rem;
}

.navigation .logo img {
  height: 6.6875rem;
  object-fit: contain;
  margin: 10px 0px;
  padding: 0;
}

.navigation nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0px;

}

.navigation nav ul li a {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  color: var(--header-color);
  display: inline-block;
  transition: all 0.5s ease;
}

.navigation nav ul li a:hover {
  color: var(--header-color-hover);
  /*background: linear-gradient(90deg, #16b1f5, #003cea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  /* text-fill-color: transparent; */
  /* padding-bottom: 5px; */
  /* border-bottom: 1.5px solid #16b1f5; */
}


.menu-toggle {
  display: none;
  border: none;
  background-color: transparent;
  outline: none;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
  font-size: 1.5rem;
}


.close-map-popup {
  display: none;
}


@media (min-width:768px) and (max-width: 991.99px) {

  .navigation .logo img {
    height: 10rem;
    padding: 3px 0;
  }

  .navigation nav ul li a {
    font-size: 1.1rem;
  }
}


/* Mobile view styles */
@media (max-width: 767px) {

  .map-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    overflow: hidden;
  }

  .close-map-popup {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
  }

  #map-mobile {
    width: 100%;
    height: 100%;
    border: 2px solid red;
  }

  .navigation nav {
    display: none;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    height: 85dvh;
    align-items: center;
    justify-content: center;
  }

  .navigation nav.open {
    display: flex;
  }

  .navigation nav ul {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .navigation nav ul li {
    margin: 7px 0;
  }

  .navigation .logo img {
    height: 10rem;
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 10001;
  }

  .menu-toggle .bar-icon,
  .menu-toggle .x-icon {
    font-size: 26px;
    cursor: pointer;
  }

  .menu-toggle .x-icon {
    display: none;
  }

  .menu-toggle.show-close .bar-icon {
    display: none;
  }

  .menu-toggle.show-close .x-icon {
    display: inline-block;
  }

  .toggle-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    text-align: center;
    padding-top: 230px;
  }

  .toggle-menu ul {
    list-style: none;
    padding: 0;
  }

  .toggle-menu a {
    display: block;
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
  }

  .toggle-menu .x-icon {
    position: absolute;
    top: 50px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
  }

  body.menu-open {
    overflow: hidden;
  }
}


/* ----------------- Header CSS ------------------ */
footer {
  padding: 20px;
  text-align: left;
  background: #f3f3f3;
}

footer .footer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
}

footer .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 30%;
}

footer .footer-logo img {
  width: 270px;
  mix-blend-mode: darken;
}

footer .footer-logo h2 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
}

footer .footer-text {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
  line-height: 24px;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 0px;
  width: 65%;
}

footer .footer-links .footer-link-list {
  width: calc(100% / 2 - 20px);
}




footer .footer-links .footer-link-list h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
}

footer .footer-links .footer-link-list ul {
  list-style: none;
}

footer .footer-links .footer-link-list ul li {
  margin-bottom: 10px;
}

footer .footer-links .footer-link-list ul li a {
  text-decoration: none;
  color: var(--header-color);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s ease;
  font-family: "Source Sans Pro", sans-serif;
}

footer .footer-links .footer-link-list ul li a:hover {
 /* background: linear-gradient(90deg, #16b1f5, #003cea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  padding-left: 3px;*/
  color: var(--header-color-hover);
}



footer .footer-social {
  margin-top: 20px;
}

footer .footer-social a {
  margin-right: 20px;
  font-size: 20px;
  color: var(--header-color);
  text-decoration: none;
  transition: all 0.5s ease;
}

footer .footer-social a:hover {
  /*background: linear-gradient(90deg, #16b1f5, #003cea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;*/
  color: var(--header-color-hover);
}

footer .footer-bottom {
  border-top: 2px solid #aaa;
  color: var(--heading-color);
  text-align: center;
  padding: 20px 10px;
  font-size: 17px;
  font-weight: 400;
  margin-top: 20px;
  font-family: "Source Sans Pro", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

footer .footer-bottom ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

footer .footer-bottom ul li a {
  text-decoration: none;
  color: var(--header-color);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s ease;
  font-family: "Source Sans Pro", sans-serif;
}

footer .footer-bottom ul li a:hover {
/*  background: linear-gradient(90deg, #16b1f5, #003cea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;*/
  color: var(--header-color-hover);
}


@media (min-width:768px) and (max-width: 991.99px) {
  footer .footer-logo img {
    width: 200px;
  }

  footer .footer-box {
    align-items: start;
  }
}


@media (max-width: 767px) {

  footer .footer-box {
    flex-direction: column;
    padding: 0;
  }

  footer .footer-logo,
  footer .footer-links {
    width: 100%;
  }

  footer .footer-links {
    flex-direction: column;
    margin-top: 20px;
  }

  footer .footer-links .footer-link-list {
    width: 100%;
  }

  footer .footer-logo img {
    width: 100%;
  }

}



/*============= Contact Page Design ===================*/


.form-detail-container {
  max-width: 76.5rem;
  padding: 0px 1rem;
  margin: 50px auto;
  min-height: 40vh;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.form-detail-container #wpcf7-f265-o1,
.form-detail-container .contact-container {
  width: 48%;
}

.form-detail-container form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-detail-container form input,
.form-detail-container form textarea {
  border-color: rgb(220, 220, 220);
  border-style: solid;
  border-width: 0.0625rem;
  color: var(--heading-color);
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.8125rem 1rem;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  font-family: "Source Sans Pro", sans-serif;
}


.form-detail-container form input::placeholder,
.form-detail-container form textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  font-family: "Source Sans Pro", sans-serif;
}

.form-detail-container form input:focus,
.form-detail-container form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-detail-container form input[type=submit] {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    line-height: 1.25rem;
    user-select: none;
    text-decoration: none;
    font-size: 1rem;
    height: 3.25rem;
    padding: 0px 2rem;
    border-radius: 0; 
    width: max-content;
    background-color: var(--button-color);
    color: rgb(255, 255, 255);
}


.form-detail-container form input[type=submit]:hover {
  background-color: var(--button-color-hover);
  border: 0.0625rem solid transparent;
  color: #fff;
}


.form-detail-container .contact-container {
  border: 1px solid rgba(82, 129, 146, 0.2);
  padding: 30px 25px;
  border-radius: 5px;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 30px;
  flex-direction: column;
}

.form-detail-container .contact-container .contact-row {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.form-detail-container .contact-container .contact-row .contact-icon i {
  font-size: 20px;
  color: var(--heading-color);
}

.form-detail-container .contact-container .contact-row .contact-text {
  color: var(--heading-color);
  font-size: 20px;
  font-family: "Source Sans Pro", sans-serif;
}

.contact-text a {
  color: #666;
  /* or match your existing text color */
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #333;
  /* optional hover effect */
  text-decoration: underline;
  /* optional */
}


.single-post-wrapper {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.post-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.post-text {
  flex: 1 1 60%;
}

.post-image {
  flex: 1 1 35%;
}

.post-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.post-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-family: "Source Sans Pro", sans-serif;

}

.post-meta {
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

.post-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--heading-color);
  font-family: "Source Sans Pro", sans-serif;
}


/*------------ Responsive Design ---------------*/

@media (min-width:768px) and (max-width:991.98px) {
  .form-detail-container .contact-container .contact-row .contact-text {
    font-size: 16px;
  }
}

@media (max-width:767px) {

  .form-detail-container #wpcf7-f265-o1,
  .form-detail-container .contact-container {
    width: 100%;
  }

  .form-detail-container .contact-container .contact-row .contact-text {
    font-size: 16px;
  }

  .form-detail-container {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .hero-section-banner h1 {
    font-size: 2.625rem;
    line-height: 3.25rem;
  }
}


/*------------ Responsive Design ---------------*/


/*============= Contact Page Design ===================*/

/*------Home page services section css ------*/



.section-wrapper.management-services h2 img {
  width: 40px;
  height: 40px;
}

.management-services .cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.management-services .card {
  flex: 1 1 250px;
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.management-services .card {
  flex: 0 0 calc(33.33% - 20px);
  box-sizing: border-box;
}

.management-services .card-icon {
  font-size: 40px;
  color: #ffcc00;
  margin-bottom: 15px;
}

.management-services .card-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", sans-serif;
  color: var(--heading-color);
  text-transform: uppercase;
}

.management-services .card-text {
  font-family: "Source Sans Pro", sans-serif;
  color: var(--heading-color);
  font-size: 14px;
  line-height: 1.5;  
  font-size: 17px;
  line-height: 24px; 
}

.management-services .btn-all-services {
  padding: 12px 30px;
  font-size: 16px;
  background-color: #528192;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.management-services .btn-all-services:hover {
  background-color: #032d3d;
}

@media (max-width: 768px) {
  /*.section-wrapper.management-services h2 {
    flex-direction: column;
    gap: 5px;
  }*/

  .management-services .card {
    flex: 0 0 100%;
  }
}

.lymebay-heading {
  text-align: center;
  margin: 20px 0px 60px 0px;
}

.lymebay-heading h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--heading-color);
}
section.section-wrapper.management-services {
  margin-top: 40px;
}



/* Custom Page Styles */

.custom-container.pages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.pages .custom-page-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
}

.pages .custom-page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-weight: 600;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.pages .custom-page-content {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--heading-color);
}

.pages .custom-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 15px;
}

 .pages .custom-no-content {
    text-align: center;
    color: #999;
    font-size: 1.2rem;
    margin-top: 50px;
}


.modal ul.amenities-list li img {
    width: 100%;
    margin-right: 16px;
    max-width: 25px;
}



.custom-page-article h2,
.custom-page-article h1,
.custom-page-article h3,
.custom-page-article h4,
.custom-page-article h5,
.custom-page-article h6,
.custom-page-article p,
.custom-page-article ul li,
.custom-page-article ol li{
  color: var(--heading-color);
  font-family: "Source Sans Pro", sans-serif;
}


.custom-page-article strong{
  color: var(--heading-color);
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
}

footer .footer-links .footer-link-list:last-child{
  display: none;
}


.dhPmZz * {
    font-family: "Source Sans Pro", sans-serif !important;
    font-weight: 600 !important;
}