/* General Styles */
.topNavContainer, .copyright {
  background: #3D5A80; /* Softer navy blue */
}

.copyright a {
  color: white;
}

h1, h2 {
  color: #3D5A80; /* Softer navy blue */
}

.visitorRating {

  color: #293446 !important;
}



.topNav a:hover {
  color: #98C1D9; /* Pale blue */
}

.breadcrumbsContainer {
  background: #98C1D9; /* Pale blue */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #98C1D9; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #8ca7a7 !important; /* Very light blue, almost white */
}

.breadcrumbs li a:hover { 
  background: #E0FBFC; /* Very light blue */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #E0FBFC !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #98C1D9; /* Pale blue */
  color: #293241; /* Dark navy text for contrast */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(to bottom, #3D5A80, #5D7A9E); /* Very subtle blue gradient */
  color: white;
}

.attractionsTitle span {
  color: #293241; /* Softer dark blue */
}

h2.foundNum {
  color: #434E5E; /* Muted slate */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #98C1D9; /* Pale blue */
  color: #293241; /* Dark blue text */
}

.container {
  color: #434E5E; /* Muted slate */
}

/* Buttons - Standout 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: #E53E3E; /* Vibrant red */
  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: #C53030; /* Darker red for hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Rating Element */
.reevooScore, .ratingMobile {
  background: #A8DADC; /* Soft aqua */
  color: #293241; /* Dark blue text */
  padding: 5px 10px;
  border-radius: 4px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 240px;
}

.infoText {
  margin-right: 15px;
  color: #5C6878; /* Softer gray */
}

.infoText i {
  color: #98C1D9; /* Pale blue */
  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: 1.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
}

.heroSubtitle {

  color: white !important;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out 0.2s;

}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #E53E3E; /* Red 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;
}

/* 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) {
  h1.showLodgesHeader {
    color: white;
  }

  .newButton {
    border-radius: 0;
  }
  
  
  .mobAvailButt {
    background: #E53E3E; /* Red 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: #A8DADC; /* Soft aqua */
  }
}


/* 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;
  }



}