.topNavContainer, .copyright {
    background: #4e1521; /* Changed to dark burgundy */
}

h1, h2 {
    color: #4e1521; /* Changed to match brand burgundy */
}

.topNav a:hover {
    color: #a93546; /* Medium red accent color for hover links */
}

.breadcrumbsContainer {
    background: #7a4b55; /* Light pink background */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
    border-left: 30px solid #7a4b55; /* Match breadcrumb container */
}

.infoTextContainer i {
    color: #777777 !important;
}

.breadcrumbs li a:hover { 
    background: #7a4b55; /* Slightly darker on hover */
}

.breadcrumbs li a:hover:after { 
    border-left-color: #7a4b55 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
    background: #7a4b55; /* Match breadcrumb container */
}

h1.showLodgesHeader, .footer, .a3AccommName, H2.newHeader, H4.newHeader, .attractionsTitle {
    background: linear-gradient(to bottom, #4e1521, #7e2231); /* Burgundy gradient */
    color: white; /* Ensure text is visible on dark background */
}

h2.foundNum {
    color: #333333; /* Darker text color for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
    background: #f5d6d6; /* Light pink background */
    color: #4e1521; /* Burgundy text */
}

.container {
    color: #333333; /* Default text color */
}

/* Buttons */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
    font-size: 16px;
    padding: 18px 12px;
    box-sizing: border-box;
    border-radius: 10px; /* Less rounded corners */
    color: white;
    background: #2d7d64; /* Teal green - contrasting color */
    text-align: center;
    width: 90%;
    font-weight: bold;
    border: 0;
    cursor: pointer;
    width: 100%;
    border: 1px solid #256954; /* Slightly darker border */
    transition: background-color 0.2s, transform 0.1s; /* Smooth transitions */
    box-shadow: 0 3px 5px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
    background: #225e4b; /* Darker teal on hover */
    cursor: pointer;
    transform: translateY(-2px); /* Slight lift effect on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Enhanced shadow on hover */
}

/* Rating element styling */
.reevooScore {
    background: #ab5462; /* Teal green - matching buttons */
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Info text elements */
.infoTextContainer {
    display: flex;
    flex-wrap: wrap;
}

.innerLogo img {

    max-width: 240px;

}

.infoText {
    margin-right: 15px;
    color: #555;
}

.infoText i {
    color: #a93546; /* Medium red icons */
    margin-right: 5px;
}


/* Hero Header Styles */
.bigHeader {
    width: 100%;
  }
  
  .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%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
  }
  
  .availabilityHeaderContainerInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .innerLogo {
    margin-bottom: 10px;
  }
  
  .innerLogo img {
    max-width: 120px;
    height: auto;
  }
  
  .heroText {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px 20px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .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: 1.2rem;
    line-height: 1.6;
    margin-top: 0;
    animation: fadeInUp 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 scaleIn {
    0% {transform: scaleX(0);}
    100% {transform: scaleX(1);}
  }

/* Mobile specific adjustments */
@media only screen and (max-width: 768px) {
    h1.showLodgesHeader {
        color: white;
    }
    
    .mobAvailButt {
        background: #2d7d64; /* Teal green - matching buttons */
        color: white;
        padding: 10px;
        text-align: center;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    }
    
    .favourites {
        color: #2d7d64; /* Teal green - matching buttons */
    }
}