/* Professional Color Theme using provided palette */
/* Color Variables:
   #F4E04D - Maize (warm yellow)
   #F2ED6F - Light Maize (lighter yellow) 
   #CEE397 - Mindaro (soft green)
   #8DB1AB - Cambridge Blue (muted blue-green)
   #587792 - Slate Gray (professional blue-gray)
*/

/* General Styles */
.topNavContainer, .copyright {
  background: #587792; /* Slate gray - professional and sophisticated */
}

h1, h2 {
  color: #587792; /* Slate gray for headings */
}

a#mainMenu:hover {
  color: white;
}

.topNav a:hover {
  color: white;
}

.breadcrumbsContainer {
  background: #F2ED6F; /* Light maize - warm and inviting */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #F2ED6F; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #587792 !important; /* Slate gray for consistency */
}

.breadcrumbs li a:hover { 
  background: #F4E04D; /* Maize hover - slightly warmer */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #F4E04D !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #F2ED6F; /* Light maize */
  color: #587792; /* Slate gray for excellent readability */
}

a.footerLink, .footer, .footer i, .footerItem, .footer label {
  color: #ffffff !important; /* Cambridge blue - softer accent */
}

.footerHeader {
   color: #000000 !important; /* Slate gray for headers */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {

  background: none; /* Mindaro - fresh green accent */

  color: #183c80 !important; /* Slate gray text for contrast */
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important; /* Removes filter-based shadows */


}

h2.foundNum {
  color: #587792; /* Slate gray for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader, .footer {
  background: #8DB1AB; /* Cambridge blue - calming background */
  color: #ffffff; /* Slate gray text */
}

.visitorRating {

  color: #587792; /* Slate gray text */
}

.container {
  color: #587792; /* Slate gray for body text */
}

/* Buttons - High contrast standout design */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 12px;
  color: #ffffff; /* Dark slate text for maximum readability */
  background: #1481e0; /* Bright maize - maximum contrast and attention */
  text-align: center;
  border: none;
  width: 100%;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: #0088ff; /* Flip to slate gray */
  color: #ffffff; /* Bright maize text */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(88, 119, 146, 0.35);
}

/* Rating Element */
.reevooScore {
  background: #CEE397; /* Mindaro - soft green background */
  color: #587792; /* Slate gray text */
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #8DB1AB; /* Cambridge blue border */
  font-weight: 600;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 70%;
}

.infoText {
  margin-right: 15px;
  color: #587792; /* Slate gray */
}

.infoText i {
  color: #8DB1AB; /* Cambridge blue for icons */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: 
    linear-gradient(rgba(88, 119, 146, 0.7), rgba(141, 177, 171, 0.5)),
    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(88, 119, 146, 0.8);
}

.heroSubtitle {
  color: #F2ED6F !important; /* Light maize for subtitle */
  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(88, 119, 146, 0.8);
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #F4E04D; /* Maize accent divider */
  margin: 15px auto;
  animation: scaleIn 1.5s ease-out;
  box-shadow: 0 2px 4px rgba(88, 119, 146, 0.3);
}

.heroTagline {
  color: #ffffff !important;
  font-size: 1rem;
  margin-top: 0;
  animation: fadeInLeft 1.2s ease-out;
  text-shadow: 1px 1px 2px rgba(88, 119, 146, 0.8);
}

/* 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: 2px solid #8DB1AB; /* Cambridge blue border */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(141, 177, 171, 0.2);
  transition: all 0.3s ease;
  background: white;
}

.propertyCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(141, 177, 171, 0.3);
  border-color: #587792; /* Slate gray on hover */
}

.propertyCardHeader {
  background: #CEE397; /* Mindaro header */
  color: #587792; /* Slate gray text */
  padding: 12px 18px;
  border-bottom: 2px solid #8DB1AB;
  font-weight: 600;
}

.propertyCardContent {
  padding: 18px;
  background: white;
  color: #587792;
}

.propertyCardFooter {
  background: #F2ED6F; /* Light maize footer */
  padding: 12px 18px;
  border-top: 2px solid #8DB1AB;
  color: #587792;
  font-weight: 500;
}

/* List Styles */
.featuresList li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  list-style-type: none;
  color: #587792;
  line-height: 1.4;
}

.featuresList li:before {
  content: "●";
  color: #F4E04D; /* Maize bullet points */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {

  .mobAvailContainer {

	margin: 0;

}

.newButton {
    border-radius: 0;
}


  h1.showLodgesHeader {
    color: #587792; /* Slate gray for text */
  }
  
  .mobAvailButt {
    background: #F4E04D; /* Maize for mobile buttons */
    color: #587792; /* Slate gray text */
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(88, 119, 146, 0.25);
    font-weight: bold;
    border: 2px solid #587792;
  }
  
  .mobAvailButt:hover {
    background: #587792;
    color: #F4E04D;
  }
  
  .favourites {
    color: #587792; /* Slate gray */
  }
  
  .heroTitle {
    font-size: 2.5rem;
  }
  
  .heroSubtitle {
    font-size: 1.4rem;
  }
}

/* Additional Professional Enhancements */
.accent-border {
  border-left: 4px solid #F4E04D; /* Maize accent borders */
}

.highlight-text {
  background: linear-gradient(120deg, #F2ED6F 0%, #CEE397 100%);
  padding: 2px 6px;
  border-radius: 3px;
  color: #587792;
  font-weight: 600;
}

.professional-shadow {
  box-shadow: 0 4px 12px rgba(88, 119, 146, 0.15);
}

/* Focus states for accessibility */
.viewButton:focus, .newButton:focus, .moreInfoButton:focus {
  outline: 3px solid #CEE397;
  outline-offset: 2px;
}