/* Refined Modern Travel Color Scheme */

/* General Styles */
.topNavContainer, .copyright {
  background: #FFFFFF; /* Clean white */
  border-bottom: 1px solid #E2E8F0; /* Subtle border */
  color: #2D3748; /* Dark slate text */
}

.copyright a {
  color: #4A5568; /* Medium gray for links */
  text-decoration: underline;
}

h1, h2 {
  color: #2D3748; /* Dark slate for headings */
}

.fa-bars, .fa-times, a.mobileHomeLink, a.mobileHomeLink:hover, .mobileMenuLink, .mobileMenuLink:hover {
  color: #64748B !important; /* Slate gray */
}

.visitorRating {
  color: #64748B !important; /* Slate gray */
}

.topNav a {
  color: #4A5568; /* Medium gray for navigation */
}

.topNav a:hover {
  color: #16A34A; /* Green for hover state */
}

a {
  color: #64748B; /* Slate gray for links */
  text-decoration: underline;
}

a:hover {
  color: #16A34A; /* Green for hover */
}

.breadcrumbsContainer {
  background: #F8FAFC; /* Very light gray */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #F8FAFC; /* Match breadcrumb container */
}

.breadcrumbs li a:hover { 
  background: #F1F5F9; /* Slightly darker shade for hover */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #F1F5F9 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #F8FAFC; /* Very light gray */
  color: #4A5568; /* Medium gray text */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: #075985; /* Rich blue for headers */
  color: white;
}

.attractionsTitle span {
  color: #075985; /* Rich blue */
}

h2.foundNum {
  color: #64748B; /* Slate gray */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #F8FAFC; /* Very light gray */
  color: #334155; /* Slate gray text */
  border-left: 4px solid #075985; /* Rich blue accent */
}

.container {
  color: #4A5568; /* Medium gray for body text */
}

/* Buttons - Strong Vibrant Contrast */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #16A34A; /* Vibrant green - distinctive and conversion-focused */
  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.1);
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: #15803D; /* Darker green for hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Rating Element */
.reevooScore, .ratingMobile {
  background: #F8FAFC; /* Very light gray */
  color: #334155; /* Slate gray text */
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #E2E8F0;
}

.innerLogo img {
  max-width: 190px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.infoTextContainer i {
  color: #075985 !important; /* Rich blue */
}

.infoText {
  margin-right: 15px;
  color: #4A5568; /* Medium gray */
}

.infoText i {
  color: #075985; /* Rich blue */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 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-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

.heroSubtitle {
  color: white !important;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out 0.2s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #16A34A; /* Green accent to match buttons */
  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: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

/* Banner text - ensuring visibility */
.bannerText, .bannerContainer h1, .bannerContainer h2, .bannerContainer p {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); /* Strong text shadow for better readability */
  background-color: rgba(0, 0, 0, 0.3); /* Light semi-transparent background for text */
  padding: 5px 10px;
  border-radius: 4px;
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {
  h1.showLodgesHeader {
    color: white;
  }

  .newButton {
    border-radius: 0;
  }
  
  .mobAvailButt {
    background: #16A34A; /* Green to match desktop buttons */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .favourites {
    color: #E2E8F0; /* Light gray */
  }
}

a {
  text-decoration: none !important;
}

/* Mobile Adjustments */
@media only screen and (max-width: 600px) {
  .infoTextContainer {
    justify-content: center !important;
    gap: 20px;
  }
 
  .infoText {
    font-size: 12pt !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .infoText i {
    font-size: 15pt !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 10px !important;
  }

  .shortDescriptionMob {
    font-size: 11pt !important;
  }
}