/* Modern Professional Color Scheme - 2025 Edition */

/* General Styles */
.topNavContainer, .copyright {
  background: #2C3E50; /* Rich dark slate */
}

.copyright a {
  color: #ECF0F1; /* Off-white */
}

h1, h2 {
  color: #34495E; /* Dark slate gray */
}

.fa-bars, .fa-times, a.mobileHomeLink, a.mobileHomeLink:hover, .mobileMenuLink, .mobileMenuLink:hover {
  color: #3498DB !important; /* Vibrant blue */
}

.visitorRating {
  color: #34495E !important; /* Dark slate gray */
}

.topNav a:hover {
  color: #3498DB; /* Vibrant blue */
}

.breadcrumbsContainer {
  background: #F5F7FA; /* Ultra light gray */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #F5F7FA; /* Match breadcrumb container */
}

.breadcrumbs li a:hover { 
  background: #E5E9F0; /* Slightly darker shade for hover */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #E5E9F0 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #F5F7FA; /* Ultra light gray */
  color: #34495E; /* Dark slate text for contrast */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(to right, #2C3E50, #3498DB); /* Horizontal gradient from dark to vibrant */
  color: white;
}

.attractionsTitle span {
  color: #3498DB; /* Vibrant blue */
}

h2.foundNum {
  color: #7F8C8D; /* Medium gray */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #F5F7FA; /* Ultra light gray */
  color: #34495E; /* Dark slate text */
}

.container {
  color: #5D6D7E; /* Medium slate 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: 6px;
  color: white;
  background: #b5072d; /* Professional red */
  text-align: center;
  width: 100%;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(192, 57, 43, 0.2);
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: #e01541; /* Slightly lighter red for hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(192, 57, 43, 0.3);
  color: white;
}

/* Rating Element */
.reevooScore, .ratingMobile {
  background: #F5F7FA; /* Ultra light gray */
  color: #34495E; /* Dark slate text */
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.innerLogo img {
  max-width: 190px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.infoTextContainer i {
  color: #3498DB !important; /* Vibrant blue */
}

.infoText {
  margin-right: 15px;
  color: #5D6D7E; /* Medium slate gray */
}

.infoText i {
  color: #3498DB; /* Vibrant blue */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(52, 152, 219, 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: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
}

.heroSubtitle {
  color: white !important;
  font-size: 1.7rem;
  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: #C0392B; /* Red accent to match buttons */
  margin: 15px auto;
  animation: scaleIn 1.5s ease-out;
}

.heroTagline {
  color: white !important;
  font-size: 1.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: 6px;
    margin: 10px 0;
  }
  
  .mobAvailButt {
    background: #16A085; /* Teal to match desktop buttons */
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(22, 160, 133, 0.2);
    font-weight: 600;
  }
  
  .favourites {
    color: #E5E9F0; /* Light gray */
  }
}

/* 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;
  }
}