/* General Styles */
.topNavContainer, .copyright {
  background: #2a3e35; /* Dark green from mountains */
}

h1, h2 {
  color: #2a3e35; /* Dark green from mountains */
}

.topNav a:hover {
  color: #5e7a70; /* Medium sage green */
}

.breadcrumbsContainer {
  background: #5e7a70; /* Medium sage green */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #5e7a70; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #2a3e35 !important; /* Dark green for consistency */
}

.breadcrumbs li a:hover { 
  background: #8ba69b; /* Lighter sage green */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #8ba69b !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #5e7a70; /* Medium sage green */
  color: white; /* Ensure visibility */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(to bottom, #2a3e35, #1a2921); /* Dark green gradient */
  color: white;
}

h2.foundNum {
  color: #333333; /* Darker text color for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #e8ecea; /* Light gray with green tint */
  color: #2a3e35; /* Dark green */
}

.container {
  color: #333333;
}

/* Buttons - Keeping original styling as requested */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white; /* Changed to white for better contrast */
  background: #ff5517; /* Bright orange - kept as requested */
  text-align: center;
  width: 100%;
  font-weight: bold;
  border: none; /* Removed border for cleaner look */
  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: #e43f03; /* Slightly darker orange for hover state - kept as requested */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Rating Element */
.reevooScore {
  background: #5e7a70; /* Medium sage green */
  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: #5e7a70; /* Medium sage green */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(0, 0, 0, 0.4), 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: 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: white;
  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;
  }
  
  .mobAvailButt {
    background: #ff6b35; /* Bright orange to match desktop buttons - kept as requested */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .favourites {
    color: #2a3e35; /* Dark green */
  }
}