/* General Styles */
.topNavContainer, .copyright {
  background: #266362; /* Wine */
}

.place {
  font-weight: normal !important;
}

h1, h2 {
  color: #D5B9B2; /* Pale Dogwood - more subtle */
}

.topNav a:hover {
  color: #D5B9B2; /* Pale Dogwood */
}

.breadcrumbsContainer {
  background: #4f8584; /* Rose taupe */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #4f8584; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #4f8584 !important; /* Rose taupe for consistency */
}

.breadcrumbs li a:hover { 
  background: #4f8584; /* Pale Dogwood */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #4f8584 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #4f8584; /* Rose taupe */
  color: white; /* For better contrast on dark background */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: #4f8584; /* Pale Dogwood - softer header background */
  color: #ffffff; /* Wine - subtle contrast */
}

a.footerLink, .footerHeader, .copyright a {

  color: #ffffff !important;

}

a.footerLink:hover {

  color: #c0c0c0 !important;

}

.footerHeader {

  color: #000000 !important;

}

h2.foundNum {
  color: #88594d; /* Wine - for better contrast */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #ECE2D0; /* Bone */
  color: #88594d; /* Wine */
}

.container {
  color: #333333; /* Dark gray for main text */
}

/* Buttons - Making them more prominent */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #721639; /* Wine */
  text-align: center;
  width: 100%;
  font-weight: bold;
  border: none;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 0 4px 8px rgba(109, 46, 70, 0.4);
  letter-spacing: 0.5px;
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: #5e0f2d; /* Rose taupe for hover state */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(162, 103, 105, 0.5);
  color: white;
  letter-spacing: 0.6px;
}

/* Rating Element */
.reevooScore {
  background: #A26769; /* Rose taupe */
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 320px;
  z-index: 99999;
}

.infoText {
  margin-right: 15px;
  color: #555;
}

.infoText i {
  color: #A26769; /* Rose taupe */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), 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: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
}

.heroSubtitle {
  color: #ffffff !important; /* Bone */
  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: #D5B9B2; /* Pale Dogwood */
  margin: 15px auto;
  animation: scaleIn 1.5s ease-out;
}

.heroTagline {
  color: #ffffff !important; /* Silver */
  font-size: 1rem;
  margin-top: 0;
  animation: fadeInLeft 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 fadeInLeft {
  0% {opacity: 0; transform: translateX(-40px);}
  100% {opacity: 1; transform: translateX(0);}
}

@keyframes scaleIn {
  0% {transform: scaleX(0);}
  100% {transform: scaleX(1);}
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {
  /* Buttons - Keeping structure but updating colors */
  .viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
    border-radius: 0 !important;
  }

  h1.showLodgesHeader {
    color: white;
  }
  
  .mobAvailButt {
    background: #6D2E46; /* Wine 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: #A26769; /* Rose taupe */
  }
}