/* Modern Professional Color Scheme */

/* General Styles */
.topNavContainer, .copyright {
  background: #1A2A3A; /* Deep navy blue */
}

.copyright a {
  color: white;
}

h1, h2 {
  color: #1A2A3A; /* Deep navy blue */
}

.fa-bars, .fa-times, a.mobileHomeLink, a.mobileHomeLink:hover, .mobileMenuLink, .mobileMenuLink:hover {
		
  color: #2D4356 !important;
  
}

.visitorRating {
  color: #2D4356 !important; /* Medium navy */
}

.topNav a:hover {
  color: #90A4AE; /* Cool gray */
}

.breadcrumbsContainer {
  background: #E0E7EB; /* Very light gray-blue */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #E0E7EB; /* Match breadcrumb container */
}

.breadcrumbs li a:hover { 
  background: #CFD8DC; /* Slightly darker shade for hover */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #CFD8DC !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #E0E7EB; /* Very light gray-blue */
  color: #1A2A3A; /* Deep navy text for contrast */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(to bottom, #1A2A3A, #2D4356); /* Professional dark gradient */
  color: white;
}

.attractionsTitle span {
  color: #2D4356; /* Medium navy */
}

h2.foundNum {
  color: #607D8B; /* Blue-gray */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #E0E7EB; /* Very light gray-blue */
  color: #1A2A3A; /* Deep navy text */
}

.container {
  color: #546E7A; /* Medium blue-gray */
}

/* Buttons - Bold Contrasting Color */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #00A3E0; /* Bright modern blue */
  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: #0082B3; /* Darker blue for hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Rating Element */
.reevooScore, .ratingMobile {
  background: #E0E7EB; /* Light gray-blue */
  color: #1A2A3A; /* Deep navy text */
  padding: 5px 10px;
  border-radius: 4px;
}

.innerLogo img {
  max-width: 190px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.infoTextContainer i {
  color: #2D4356 !important; /* Medium navy */
}

.infoText {
  margin-right: 15px;
  color: #455A64; /* Dark blue-gray */
}

.infoText i {
  color: #2D4356; /* Medium navy */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  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;
}

.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;
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #00A3E0; /* Bright blue 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;
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {
  h1.showLodgesHeader {
    color: white;
  }

  .newButton {
    border-radius: 0;
  }
  
  .mobAvailButt {
    background: #00A3E0; /* Bright blue 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: #CFD8DC; /* Light gray-blue */
  }
}

/* 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;
  }
}