/* General Styles - Sophisticated Muted Palette */
.topNavContainer, .copyright {
  background: #4A5568; /* Dark slate gray */
}

h1, h2 {
  color: #2D3748; /* Deep charcoal */
}

a#mainMenu:hover {
  color: white;
}

.topNav a:hover {
  color: white;
}

.breadcrumbsContainer {
  background: #E2D5C7; /* Warm beige */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #E2D5C7; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #2D3748 !important; /* Deep charcoal for consistency */
}

.breadcrumbs li a:hover { 
  background: #D4C4B0; /* Darker beige hover */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #D4C4B0 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #E2D5C7; /* Warm beige */
  color: #2D3748; /* Deep charcoal for text contrast */
}

h1.showLodgesHeader, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: #A8B5C8; /* Soft blue-gray background */
  color: #2D3748 !important; /* Deep charcoal for text */
}

h2.foundNum {
  color: #2D3748; /* Deep charcoal for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #D4C4B0; /* Medium beige */
  color: #4A5568; /* Dark slate gray */
}

.container {
  color: #4A5568; /* Dark slate gray */
}

.visitorRating, .footerHeader {
  color: #4A5568; /* Dark slate gray */
}

.footer {
  background: #F5F1ED; /* Very light beige */
}

a.footerLink, .footer, .footerItem, .footer i {
  color: #718096 !important; /* Medium gray */
}

a.footerLink:hover {
  color: #2D3748 !important; /* Deep charcoal hover */
}

/* Buttons - Contrasting Blue-Gray */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #18921e; /* Medium blue-gray - stands out from palette */
  text-align: center;
  width: 100%;
  font-weight: bold;
  border: none;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: rgb(0, 119, 36); /* Darker blue-gray for hover state */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  color: white;
}

/* Rating Element */
.reevooScore {
  background: #E2D5C7; /* Warm beige */
  color: #4A5568; /* Dark slate gray for text */
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #D4C4B0;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 130px;
}

.infoText {
  margin-right: 15px;
  color: #4A5568; /* Dark slate gray */
}

.infoText i {
  color: #718096; /* Medium gray for icons */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(74, 85, 104, 0.4), rgba(74, 85, 104, 0.6)), url('/images/cottage-hero.jpg') no-repeat center center;
  background-size: cover;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.heroTitle {
  color: white !important;
  font-family: 'Ink Free', cursive;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  animation: fadeInDown 1.2s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.heroSubtitle {
  color: white !important;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  animation: fadeInDown 1.2s ease-out 0.2s;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #A8B5C8; /* Soft blue-gray accent */
  margin: 15px auto;
  animation: scaleIn 1.5s ease-out;
}

.heroTagline {
  color: white !important;
  font-size: 1rem;
  margin-top: 0;
  animation: fadeInLeft 1.2s ease-out;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animations - keeping the same */
@keyframes fadeInDown {
  0% {opacity: 0; transform: translateY(-40px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(40px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInLeft {
  0% {opacity: 0; transform: translateX(-40px);}
  100% {opacity: 1; transform: translateX(0);}
}

@keyframes scaleIn {
  0% {transform: scaleX(0);}
  100% {transform: scaleX(1);}
}

/* Card Elements */
.propertyCard {
  border: 1px solid #D4C4B0; /* Medium beige border */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45, 55, 72, 0.1); /* Subtle shadow */
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}

.propertyCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(45, 55, 72, 0.15); /* Enhanced shadow on hover */
  border-color: #A8B5C8;
}

.propertyCardHeader {
  background: #A8B5C8; /* Soft blue-gray */
  color: #2D3748; /* Deep charcoal for text */
  padding: 10px 15px;
  border-bottom: 1px solid #D4C4B0;
}

.propertyCardContent {
  padding: 15px;
  background: white;
  color: #4A5568;
}

.propertyCardFooter {
  background: #F5F1ED; /* Very light beige */
  padding: 10px 15px;
  border-top: 1px solid #E2D5C7;
  color: #4A5568;
}

/* List Styles */
.featuresList li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  list-style-type: none;
  color: #4A5568;
}

.featuresList li:before {
  content: "•";
  color: #7A8FA3; /* Medium blue-gray bullet points */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {
  h1.showLodgesHeader {
    color: #2D3748; /* Deep charcoal for text */
  }
  
  .mobAvailButt {
    background: #7A8FA3; /* Medium blue-gray for mobile buttons */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    font-weight: bold;
  }
  
  .favourites {
    color: #4A5568; /* Dark slate gray */
  }
  
  .heroTitle {
    font-size: 2.5rem;
  }
  
  .heroSubtitle {
    font-size: 1.4rem;
  }

  .mobAvailContainer {

	margin: 0;

}

.newButton {
    border-radius: 0;
}

}