/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&display=swap');

/* General Styles */
.topNavContainer, .copyright {
  background: #B8A5D6; /* Soft lavender purple */
}

.place {
  font-weight: normal !important;
}

h1, h2 {
  color: #8B7BA8; /* Muted purple */
}

.topNav a:hover {
  color: #304255; /* Soft blue */
}

.breadcrumbsContainer {
  background: #C5B8E2; /* Light lavender */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #C5B8E2; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #8B7BA8 !important; /* Muted purple for consistency */
}

.breadcrumbs li a:hover { 
  background: #D4C5F0; /* Lighter lavender */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #D4C5F0 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #C5B8E2; /* Light lavender */
  color: white; /* Ensure visibility */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: #9B8BB4; /* Medium purple */
  color: white;
}

h2.foundNum {
  color: #5A4A6A; /* Darker purple for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #E8D4F0; /* Very light lavender/pink */
  color: #8B7BA8; /* Muted purple */
}

.container {
  color: #5A4A6A;
}

/* Buttons - Bright contrasting color for standout */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {

  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #b328c5; /* Bright hot pink - high contrast */
  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: #c825dd; /* Darker pink for hover state */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;

}

/* Rating Element */
.reevooScore {
  background: #A8C7E7; /* Soft 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: #7A6A8A;
}

.infoText i {
  color: #A8C7E7; /* Soft blue */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.5) 100%),
    url('../images/cottage-hero.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.heroTitle {
  color: white !important;
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 0px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
  padding: 0;
  filter: none;
  margin-top: -12px;
}

.heroSubtitle {
  color: white !important;
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  margin-top: -15px;
  animation: fadeInDown 1.2s ease-out 0.2s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  filter: none;
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #B8A5D6 ; /* Bright hot pink accent */
  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;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* 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: #FF1493; /* Bright hot pink */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .favourites {
    color: #8B7BA8; /* Muted purple */
  }
}