.topNavContainer, .copyright {
  background: #3E442B; /* Changed to drab dark brown */
}

h1, h2 {
  color: #3E442B; /* Changed to drab dark brown */
}

.topNav a:hover {
  color: #6A7062; /* Changed to ebony for hover links */
}

.breadcrumbsContainer {
  background: #6A7062; /* Changed to darker ebony color for better contrast with white text */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #6A7062; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #777777 !important;
}

.breadcrumbs li a:hover { 
  background: #AAADC4; /* Changed to cool gray on hover */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #AAADC4 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #6A7062; /* Match breadcrumb container */
  color: white; /* Ensure text is visible on darker background */
}

h1.showLodgesHeader, .footer, .a3AccommName, H2.newHeader, H4.newHeader, .attractionsTitle {
  background: linear-gradient(to bottom, #3E442B, #6A7062); /* Gradient from drab dark brown to ebony */
  color: white; /* Ensure text is visible on dark background */
}

h2.foundNum {
  color: #333333; /* Darker text color for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #D6EEFF; /* Changed to Columbia blue */
  color: #3E442B; /* Changed to drab dark brown */
}

.container {
  color: #333333; /* Default text color */
}

/* Buttons */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px; /* Less rounded corners */
  color: white;
  background: #FF8024; /* Bright orange button color */
  text-align: center;
  width: 90%;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  width: 100%;
  border: 1px solid #E86000; /* Darker orange for border */
  transition: background-color 0.2s, transform 0.1s; /* Smooth transitions */
  box-shadow: 0 3px 5px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: #E86000; /* Darker orange on hover */
  cursor: pointer;
  transform: translateY(-2px); /* Slight lift effect on hover */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Enhanced shadow on hover */
}

/* Rating element styling */
.reevooScore {
  background: #8D909B; /* Changed to cool gray */
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Info text elements */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 240px;
}

.infoText {
  margin-right: 15px;
  color: #555;
}

.infoText i {
  color: #6A7062; /* Changed to ebony for icons */
  margin-right: 5px;
}


/* Hero Header Styles */
.bigHeader {
  width: 100%;
}

.availabilityHeaderContainer {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('/images/cottage-hero.jpg') no-repeat center center;
  background-size: cover;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

.availabilityHeaderContainerInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.innerLogo {
  margin-bottom: 10px;
}

.innerLogo img {
  max-width: 120px;
  height: auto;
}

.heroText {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 20px 20px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.heroTitle {
  color: white !important;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
}

.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;
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: white;
  margin: 15px auto;
  animation: scaleIn 1.5s ease-out;
}

.heroTagline {
  color: white !important;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 0;
  animation: fadeInUp 1.2s ease-out;
}

/* Animations */
@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 scaleIn {
  0% {transform: scaleX(0);}
  100% {transform: scaleX(1);}
}

/* Mobile specific adjustments */
@media only screen and (max-width: 768px) {
  h1.showLodgesHeader {
      color: white;
  }
  
  .mobAvailButt {
      background: #8D909B; /* Changed to cool gray */
      color: white;
      padding: 10px;
      text-align: center;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
  }
  
  .favourites {
      color: #8D909B; /* Changed to cool gray */
  }
}