/* Professional Color Palette */
/* Primary: Deep Teal #1a5f5f | Secondary: Warm Sand #d4b896 | Accent: Vibrant Orange #ff6b35 */

/* General Styles */
.topNavContainer, .copyright {
  background: #1a5f5f; /* Deep teal - professional and calming */
}

h1, h2 {
  color: #1a5f5f; /* Deep teal for headings */
}

.topNav a:hover {
  color: #d4b896; /* Warm sand for subtle hover */
}

.breadcrumbsContainer {
  background: #2a7a7a; /* Medium teal */
}

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

.infoTextContainer i {
  color: #1a5f5f !important; /* Deep teal for icons */
}

.breadcrumbs li a:hover {
  background: #3a9a9a; /* Lighter teal */
}

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

.breadcrumbs li a, .breadcrumbs li div {
  background: #2a7a7a; /* Medium teal */
  color: white; /* Clean white text */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(135deg, #1a5f5f 0%, #0d3d3d 100%); /* Sophisticated teal gradient */
  color: white;
}

h2.foundNum {
  color: #2d2d2d; /* Deep charcoal for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #f5f1eb; /* Soft cream background */
  color: #1a5f5f; /* Deep teal text */
  border-left: 4px solid #d4b896; /* Warm sand accent border */
}

.container {
  color: #2d2d2d; /* Deep charcoal for body text */
}

/* Premium Orange Buttons - Professional & Eye-catching */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, #ff6b35 0%, #ff5517 100%); /* Rich orange gradient */
  text-align: center;
  width: 100%;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: linear-gradient(135deg, #ff7d4d 0%, #ff6b35 100%); /* Lighter orange gradient on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  color: white;
}

/* Rating Element */
.reevooScore {
  background: linear-gradient(135deg, #d4b896 0%, #c9a87e 100%); /* Warm sand gradient */
  color: #1a5f5f; /* Deep teal text */
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(212, 184, 150, 0.3);
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.infoText {
  margin-right: 15px;
  color: #555555;
}

.infoText i {
  color: #d4b896; /* Warm sand for icons */
  margin-right: 5px;
}

/* Premium Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(26, 95, 95, 0.7), rgba(13, 61, 61, 0.8)), 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: 3px;
  margin-bottom: 5px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.heroSubtitle {
  color: #d4b896 !important; /* Warm sand for elegant contrast */
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 15px;
  animation: fadeInDown 1.2s ease-out 0.2s;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.heroDivider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent); /* Orange accent */
  margin: 15px auto;
  animation: scaleIn 1.5s ease-out;
}

.heroTagline {
  color: #f5f1eb !important; /* Soft cream */
  font-size: 1rem;
  margin-top: 0;
  animation: fadeInLeft 1.2s ease-out;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* 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: linear-gradient(135deg, #ff6b35 0%, #ff5517 100%); /* Premium orange gradient */
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(255, 107, 53, 0.3);
    font-weight: 600;
  }

  .favourites {
    color: #d4b896; /* Warm sand */
  }
}