/* Solmar Villa Holidays Color Scheme */

/* General Styles */
.topNavContainer, .copyright {
  background: #1B9BD7; /* Solmar bright blue */
}

.copyright a {
  color: white;
}

h1, h2 {
  color: #1B9BD7; /* Solmar bright blue */
}

.visitorRating {
  color: #1B9BD7 !important; /* Solmar bright blue */
}

.topNav a:hover {
  color: #E91E63; /* Pink accent for hover */
}

.breadcrumbsContainer {
  background: #E91E63; /* Pink accent */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #E91E63; /* Match breadcrumb container */
}

.breadcrumbs li a:hover { 
  background: #F8BBD0; /* Light pink */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #F8BBD0 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #E91E63; /* Pink accent */
  color: white; /* White text for contrast */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(to bottom, #1B9BD7, #0D7DB8); /* Gradient blue */
  color: white;
}

.attractionsTitle span {
  color: #1B9BD7; /* Solmar bright blue */
}

h2.foundNum {
  color: #E91E63; /* Pink accent */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #1B9BD7; /* Solmar bright blue for menu headers */
  color: white; /* White text */
}

.container {
  color: #1B9BD7; /* Solmar bright blue */
}

/* Buttons - Bold Contrasting Color (UNCHANGED) */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  color: white;
  background: #3EAA65; /* Brighter green - standout button color */
  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: #1D6E41; /* Darker green for hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Rating Element */
.reevooScore, .ratingMobile {
  background: #E3F2FD; /* Light blue background */
  color: #1B9BD7; /* Solmar bright blue text */
  padding: 5px 10px;
  border-radius: 4px;
}

.innerLogo img {
  max-width: 190px;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.infoTextContainer i {
  color: #1B9BD7 !important; /* Solmar bright blue */
}

.infoText {
  margin-right: 15px;
  color: #333333; /* Dark gray for readability */
}

.infoText i {
  color: #1B9BD7; /* Solmar bright blue */
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(0, 0, 0, 0.5), 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: 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.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out 0.2s;
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: #3EAA65; /* Brighter green - matching buttons */
  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;
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {
  h1.showLodgesHeader {
    color: white;
  }

  .newButton {
    border-radius: 0;
  }
  
  .mobAvailButt {
    background: #3EAA65; /* Brighter green - matching desktop buttons */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .favourites {
    color: #E91E63; /* Pink accent */
  }
}

/* Mobile Adjustments */
@media only screen and (max-width: 600px) {

  .mobAvailContainer {
    margin: 0 auto;
  }

  .infoTextContainer {
    justify-content: center !important;
    gap: 20px;
  }
 
  .infoText {
    font-size: 12pt !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .infoText i {
    font-size: 15pt !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 10px !important;
  }

  .shortDescriptionMob {
    font-size: 11pt !important;
  }
}