/* Professional Business Color Scheme
 * Primary: #2C3E50 (Dark Blue)
 * Secondary: #34495E (Medium Blue)
 * Accent: #16A085 (Teal)
 * Light: #ECF0F1 (Off-White)
 * Text: #333333 (Dark Gray)
 */

/* General Styles */
.topNavContainer, .copyright {
  background: #2C3E50; /* Dark Blue */
}

h1, h2 {
  color: #2C3E50; /* Dark Blue */
}

.topNav a:hover {
  color: #16A085; /* Teal */
}

.breadcrumbsContainer {
  background: #34495E; /* Medium Blue */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #34495E; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #16A085 !important; /* Teal for icons */
}

a#mainMenu:hover {
  color: #16A085; /* Teal */
}

.breadcrumbs li a:hover { 
  background: #16A085; /* Teal */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #16A085 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #34495E; /* Medium Blue */
  color: white; /* Ensure visibility */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: #2C3E50; /* Dark Blue - no gradient */
  color: white;
}

h2.foundNum {
  color: #333333; /* Dark text color for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #ECF0F1; /* Off-White */
  color: #2C3E50; /* Dark Blue */
}

.container {
  color: #333333; /* Dark Gray */
}

/* Buttons - Made to Stand Out */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px; /* Kept original font size */
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px; /* Restored original border radius */
  color: white;
  background: #16A085; /* Teal */
  text-align: center;
  width: 100%;
  font-weight: bold;
  border: none;
  transition: background-color 0.2s, transform 0.1s; /* Restored original transition */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Restored original shadow */
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: #138a72; /* Darker Teal */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Kept original hover shadow */
  color: white;
}

/* Rating Element */
.reevooScore {
  background: #16A085; /* Teal */
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 100px;
}

.infoText i {
  margin-right: 15px;
  color: #555 !important;
}

.infoText i {
  color: #a5a5a5; /* Teal */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 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;
}

/* Preserving original hero text styles and just changing colors */
.heroTitle {
  color: white !important;
  font-size: 3.2rem; /* Preserved original font size */
  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; /* Preserved original font size */
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  animation: fadeInDown 1.2s ease-out 0.2s;
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #16A085; /* Teal */
  margin: 15px auto;
  animation: scaleIn 1.5s ease-out;
}

.heroTagline {
  color: white !important;
  font-size: 1rem; /* Preserved original font size */
  margin-top: 0;
  animation: fadeInLeft 1.2s ease-out;
}

/* Animations - preserved from original */
@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: #16A085; /* Teal */
    color: white;
    padding: 10px; /* Restored original padding */
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Restored original shadow */
  }
  
  .favourites {
    color: #2C3E50; /* Dark Blue */
  }
}