/* Professional Corporate Color Scheme */
/* 
  Primary: #2B3A67 (Navy blue)
  Secondary: #496A81 (Steel blue)
  Accent1: #F8F9FA (Off-white)
  Accent2: #66999B (Cadet blue)
  ButtonColor: #D64045 (Warm red)
  TextDark: #333333
  TextLight: #FFFFFF
*/

/* General Styles */
.topNavContainer, .copyright {
  background: #2B3A67; /* Navy blue (replacing Deep teal) */
}

h1, h2 {
  color: #2B3A67; /* Navy blue (replacing Deep teal) */
}

.topNav a:hover {
  color: #496A81; /* Steel blue (replacing Turquoise) */
}

.breadcrumbsContainer {
  background: #496A81; /* Steel blue (replacing Turquoise) */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #496A81; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #66999B !important; /* Cadet blue (replacing Coral) */
}

.breadcrumbs li a:hover { 
  background: #7297AC; /* Lighter steel blue (replacing Lighter turquoise) */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #7297AC !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #496A81; /* Steel blue (replacing Turquoise) */
  color: white; /* Light text for contrast */
}

h1.showLodgesHeader, h2.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(to bottom, #2B3A67, #496A81); /* Navy blue to Steel blue gradient */
  color: white;
}

h2.foundNum {
  color: #333333; /* Darker text color for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {

  background: #d2dde7 !important; /* Off-white (replacing Mint cream) */
  color: #2B3A67; /* Navy blue */

}

.container {
  color: #333333;
}

/* Buttons */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 6px; /* Slightly less rounded for professional look */
  color: white; /* White text for contrast */
  background: #D64045; /* Warm red for standout buttons */
  text-align: center;
  width: 100%;
  font-weight: bold;
  border: none; /* Removed border for cleaner look */
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtler shadow */
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: #C13238; /* Darker red on hover */
  transform: translateY(-1px); /* Subtler lift effect */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  color: white;
}

/* Rating Element */
.reevooScore {
  background: #66999B; /* Cadet blue (replacing Coral) */
  color: white;
  padding: 5px 10px;
  border-radius: 3px; /* Slightly less rounded */
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 90px;
}

.infoText {
  margin-right: 15px;
  color: #555555;
}

.infoText i {
  color: #66999B; /* Cadet blue (replacing Coral) */
  margin-right: 5px;
}

/* Hero Section */
.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%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.heroTitle {
  color: white !important;
  font-size: 3rem; /* Slightly smaller for professional look */
  font-weight: 700;
  letter-spacing: 1px; /* Less spacing for professional look */
  margin-bottom: 5px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
}

.heroSubtitle {
  color: #F8F9FA !important; /* Off-white for contrast */
  font-size: 1.6rem; /* Slightly smaller */
  font-weight: 500;
  letter-spacing: 0.5px; /* Less spacing */
  margin-bottom: 15px;
  animation: fadeInDown 1.2s ease-out 0.2s;
}

.heroDivider {
  width: 80px; /* Slightly narrower */
  height: 3px; /* Slightly thinner */
  background: #D64045; /* Warm red accent */
  margin: 12px auto;
  animation: scaleIn 1.5s ease-out;
}

.heroTagline {
  color: white !important;
  font-size: 1rem;
  margin-top: 0;
  animation: fadeInLeft 1.2s ease-out;
}

/* Animations kept 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);}
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {
  h1.showLodgesHeader {
    color: white;
  }
  
.newButtonContainerMobile a.newButton {

  border-radius: 0 !important;

}

  .mobAvailButt {
    background: #D64045; /* Warm red to match desktop buttons */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 3px; /* Less rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtler shadow */
  }
  
  .favourites {
    color: #66999B; /* Cadet blue (replacing previous color) */
  }
}

