/* General Styles */
.topNavContainer, .copyright {
  background: #2D3047; /* Deep blue-purple */
}

.place {
  font-weight: normal !important;
}

h1, h2 {
  color: #2D3047; /* Deep blue-purple */
}

.topNav a:hover {
  color: #5C6CA9; /* Medium lavender-blue */
}

.breadcrumbsContainer {
  background: #5C6CA9; /* Medium lavender-blue */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #5C6CA9; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #2D3047 !important; /* Deep blue-purple for consistency */
}

.breadcrumbs li a:hover { 
  background: #8A9CDC; /* Lighter lavender-blue */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #8A9CDC !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #5C6CA9; /* Medium lavender-blue */
  color: white; /* Ensure visibility */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(to bottom, #535986, #969bc7); /* Deep blue-purple gradient */
  color: white;
}

h2.foundNum {
  color: #333333; /* Darker text color for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #EAE8F2; /* Light lavender-gray */
  color: #2D3047; /* Deep blue-purple */
}

.container {
  color: #333333;
}

/* Buttons - Keeping structure but updating colors */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {

  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #9A4C95; /* Rich purple */
  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: #7E3D7A; /* Darker purple for hover state */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
  
}

/* Rating Element */
.reevooScore {
  background: #5C6CA9; /* Medium lavender-blue */
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 240px;
}

.infoText {
  margin-right: 15px;
  color: #555;
}

.infoText i {
  color: #5C6CA9; /* Medium lavender-blue */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(96, 93, 100, 0.4), rgba(88, 87, 87, 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: 3.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.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  animation: fadeInDown 1.2s ease-out 0.2s;
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #9A4C95; /* Rich purple */
  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) {

/* Buttons - Keeping structure but updating colors */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {

  border-radius: 0 !important;

}

  h1.showLodgesHeader {
    color: white;
  }
  
  .mobAvailButt {
    background: #9A4C95; /* Rich purple 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: #2D3047; /* Deep blue-purple */
  }
}