/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&display=swap');

/* General Styles */
.topNavContainer, .copyright {
  background: #134055; /* Deep Navy */
}

.place {
  font-weight: normal !important;
}

h1, h2 {
  color: #134055; /* Deep Navy */
}

.topNav a:hover {
  color: #369ECB; /* Sky Blue */
}

.breadcrumbsContainer {
  background: #1a5470; /* Mid Navy — slightly lighter than Deep Navy */
}

.breadcrumbs li a::after, .breadcrumbs li div::after {
  border-left: 30px solid #1a5470; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #369ECB !important; /* Sky Blue */
}

.breadcrumbs li a:hover {
  background: #134055; /* Deep Navy */
}

.breadcrumbs li a:hover:after {
  border-left-color: #134055 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #1a5470; /* Mid Navy */
  color: white;
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: #134055; /* Deep Navy */
  color: white;
}

h2.foundNum {
  color: #1a5470; /* Mid Navy for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #dceef6; /* Light sky tint */
  color: #134055; /* Deep Navy */
}

.container {
  color: #134055;
}

/* Buttons - Coral for standout contrast */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {

  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #FF824F; /* Coral */
  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: #e06030; /* Darker coral for hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;

}

/* Rating Element */
.reevooScore {
  background: #369ECB; /* Sky Blue */
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 65px;
}

@media only screen and (min-width: 769px) {
  .innerLogo img {
    margin-bottom: 10px;
  }
}

.infoText {
  margin-right: 15px;
  color: #134055;
}

.infoText i {
  color: #369ECB; /* Sky 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: #369ECB; /* Sky Blue 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: #FF824F; /* Coral */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .favourites {
    color: #369ECB; /* Sky Blue */
  }
}