/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Ramabhadra&display=swap');

/* General Styles */
.topNavContainer, .copyright {
  background: #1B5E6F; /* Deep teal */
}

.place {
  font-weight: normal !important;
}

h1, h2 {
  color: #1B5E6F; /* Deep teal */
}

.topNav a:hover {
  color: #F5A623; /* Warm orange accent */
}

.breadcrumbsContainer {
  background: #F5F1EB; /* Warm cream */
}

.breadcrumbs li a::after, .breadcrumbs li div::after {
  border-left: 30px solid #F5F1EB; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #1B5E6F !important; /* Deep teal for consistency */
}

.breadcrumbs li a:hover {
  background: #E8DFD5; /* Light cream hover */
}

.breadcrumbs li a:hover:after {
  border-left-color: #E8DFD5 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #F5F1EB; /* Warm cream */
  color: #1B5E6F; /* Deep teal text */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: #1B5E6F; /* Deep teal */
  color: white;
}

h2.foundNum {
  color: #1B5E6F; /* Deep teal for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #F5F1EB; /* Warm cream */
  color: #1B5E6F; /* Deep teal */
}

.container {
  color: #3A3A3A;
}

/* Buttons - Bright contrasting color for standout */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {

  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #E67E22; /* Vibrant orange - high contrast */
  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: #D95A1B; /* Darker orange for hover state */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;

}

/* Rating Element */
.reevooScore {
  background: #2D8A99; /* Medium teal */
  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: #3A3A3A;
}

.infoText i {
  color: #2D8A99; /* Medium teal */
  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: 'Ramabhadra', cursive;
  font-size: 3.5rem;
  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: -30px;
}

.heroSubtitle {
  color: white !important;
  font-family: 'Ramabhadra', cursive;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  margin-top: -45px;
  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: #E67E22; /* Vibrant orange 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: #E67E22; /* Vibrant orange */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .favourites {
    color: #1B5E6F; /* Deep teal */
  }
}