/* Modern Color Scheme - Airbnb Inspired with slight variations */

/* Primary Colors */
:root {
  --primary: #eb2c32; /* Slightly different from Airbnb's red */
  --primary-dark: #bb1a1f;
  --secondary: #00848a; /* Teal accent */
  --black: #222222; /* Near-black for text */
  --dark-gray: #484848;
  --mid-gray: #767676;
  --light-gray: #f7f7f7;
  --white: #ffffff;
}

/* General Styles */
.topNavContainer, .copyright {
  background: var(--white);
  border-bottom: 1px solid #ebebeb;
}

h1, h2 {
  color: var(--black);
  font-weight: 600;
}

.topNav a {
  color: var(--dark-gray);
}

.topNav a:hover {
  color: var(--primary);
}

.breadcrumbsContainer {
  background: var(--light-gray);
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid var(--light-gray);
}

.infoTextContainer i {
  color: var(--primary) !important;
}

.breadcrumbs li a:hover { 
  background: var(--primary);
  color: var(--white);
}

.breadcrumbs li a:hover:after { 
  border-left-color: var(--primary) !important;
}

.breadcrumbs li a, .breadcrumbs li div {
  background: var(--light-gray);
  color: var(--dark-gray);
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

h2.foundNum {
  color: var(--dark-gray);
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: var(--light-gray);
  color: var(--black);
  border-radius: 12px;
}

.container {
  color: var(--dark-gray);
}

/* Buttons - Modern Airbnb style */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button, a.newButton {
  font-size: 16px;
  padding: 14px 24px;
  box-sizing: border-box;
  border-radius: 8px;
  color: white;
  background: #eb2c32;
  text-align: center;
  width: 100%;
  font-weight: 500;
  border: none;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: none;
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover, a.newButton:hover {
  background: var(--primary-dark);
  transform: none;
  box-shadow: none;
  color: white;
}



/* Rating Element */
.reevooScore {
  background: var(--secondary);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
}

.innerLogo img {
  max-width: 240px;
}

.infoText {
  margin-right: 15px;
  color: var(--dark-gray);
}

.infoText i {
  color: var(--primary);
  margin-right: 5px;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 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;
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0;
}

.heroTitle {
  color: white !important;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 5px;
  animation: fadeInDown 1.2s ease-out;
}

.heroSubtitle {
  color: white !important;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 15px;
  animation: fadeInDown 1.2s ease-out 0.2s;
}

.heroDivider {
  width: 60px;
  height: 2px;
  background: white;
  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;
}

/* Animations */
@keyframes fadeInDown {
  0% {opacity: 0; transform: translateY(-20px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInLeft {
  0% {opacity: 0; transform: translateX(-20px);}
  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: var(--black);
  }
  
  .mobAvailButt {
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
  }
  
  .favourites {
    color: var(--primary);
  }
  
  /* Search bar styling for mobile */
  .searchBar {
    border-radius: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    background: var(--white);
  }
}

/* Footer Styling */
footer, .footer {
  background-color: var(--black);
  color: var(--white);
  padding: 40px 0;
  margin-top: 50px;
}

footer h3, .footer h3, 
footer h4, .footer h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

footer a, .footer a {
  color: #dddddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}

footer a:hover, .footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 20px;
  margin-top: 30px;
}

.contact-us {
  margin-bottom: 20px;
}

/* Newsletter subscription */
.subscribe-form {
  margin-top: 15px;
}

.subscribe-form input[type="email"] {
  background-color: #333333;
  border: 1px solid #444444;
  color: var(--white);
  padding: 12px 15px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 10px;
}

.subscribe-form input[type="email"]::placeholder {
  color: #999999;
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
}

.subscribe-button {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
}

.subscribe-button:hover {
  background-color: var(--primary-dark);
}

/* Social media icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--white);
  font-size: 20px;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: var(--primary);
}

/* Copyright text */
.copyright {
  background-color: #111111;
  color: #999999;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* Category Navigation */
.categoryNav {
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
}

.categoryNav a {
  color: var(--dark-gray);
  font-size: 14px;
  text-decoration: none;
  margin: 0 10px;
  padding-bottom: 14px;
}

.categoryNav a.active {
  color: var(--black);
  border-bottom: 2px solid var(--black);
  font-weight: 500;
}

.categoryNav a:hover {
  color: var(--black);
}

/* Filter buttons */
.filterButton {
  border: 1px solid #dddddd;
  border-radius: 30px;
  padding: 8px 16px;
  background: var(--white);
  font-size: 14px;
  color: var(--black);
  margin-right: 8px;
}

.filterButton:hover {
  border-color: var(--dark-gray);
}

/* Property cards */
.propertyCard {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.propertyCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Profile elements */
.profileElement {
  border-radius: 50%;
  background-color: var(--light-gray);
  border: 1px solid #dddddd;
  padding: 8px;
}

.profileElement:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 600px) {

  h1.showLodgesHeader {
    color: rgb(31, 22, 22) !important;
  }

  a#mainMenu {

    color: white;
  }

  /* Buttons - Modern Airbnb style */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button, a.newButton {

    border-radius: 0;

  }

}