/* Modern UK Travel Site Color Scheme */

/* Color Palette:
   Primary Navy: #1A365D (Deep, trust-inspiring navy)
   Accent Teal: #00B4A6 (Fresh, modern teal)
   Warm Gold: #FFB74D (Welcoming gold/amber)
   Sage Green: #6B8E72 (Soft, natural green)
   Light Cream: #F8F7F4 (Warm, elegant cream)
   Charcoal: #2D3748 (Modern dark gray)
   Soft Blue: #EBF8FF (Light blue accent)
*/

/* General Styles */
.topNavContainer, .copyright {
  background: #1A365D; /* Deep navy for professional header */
}

h1, h2 {
  color: #1A365D; /* Navy for main headings */
}

.topNav a:hover {
  color: #00B4A6; /* Teal hover effect */
}

.breadcrumbsContainer {
  background: #00B4A6; /* Modern teal breadcrumbs */
}

.breadcrumbs li a::after, .breadcrumbs li div::after { 
  border-left: 30px solid #00B4A6; /* Match breadcrumb container */
}

.infoTextContainer i {
  color: #FFB74D !important; /* Warm gold for icons */
}

.breadcrumbs li a:hover { 
  background: #6B8E72; /* Sage green hover */
}

.breadcrumbs li a:hover:after { 
  border-left-color: #6B8E72 !important; /* Match hover background */
}

.breadcrumbs li a, .breadcrumbs li div {
  background: #00B4A6; /* Teal background */
  color: white; /* White text for contrast */
}

h1.showLodgesHeader, .footer, .a3AccommName, h2.newHeader, h4.newHeader, .attractionsTitle {
  background: linear-gradient(135deg, #1A365D, #00B4A6); /* Navy to teal gradient */
  color: white;
}

h2.foundNum {
  color: #2D3748; /* Modern charcoal for readability */
}

.refineHeader, .destinationsHeader, .listPropertyContainer, .leftMenuHeader {
  background: #F8F7F4; /* Warm cream background */
  color: #1A365D; /* Navy text */
  border-left: 4px solid #FFB74D; /* Gold accent border */
}

.container {
  color: #2D3748; /* Modern charcoal text */
}

/* Buttons */
.viewButton, .moreInfoButton, .viewAccomsButtonDesktop, .viewAccomsButtonMobile, .newButton, .carousel-view-button {
  font-size: 16px;
  padding: 18px 12px;
  box-sizing: border-box;
  border-radius: 12px; /* More modern radius */
  color: white;
  background: linear-gradient(135deg, #d81b1b, #d81b1b); /* Teal to sage gradient */
  text-align: center;
  width: 100%;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 180, 166, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.viewButton:hover, .newButton:hover, .moreInfoButton:hover, .carousel-view-button:hover {
  background: linear-gradient(135deg, #b81111, #b81111); /* Darker gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 180, 166, 0.3);
  color: white;
}

/* Premium button variant */
.premiumButton {
  background: linear-gradient(135deg, #FFB74D, #FF9800);
  box-shadow: 0 4px 12px rgba(255, 183, 77, 0.3);
}

.premiumButton:hover {
  background: linear-gradient(135deg, #FF9800, #E65100);
  box-shadow: 0 6px 16px rgba(255, 183, 77, 0.4);
}

/* Rating Element */
.reevooScore {
  background: #FFB74D; /* Gold rating background */
  color: #1A365D; /* Navy text */
  padding: 8px 15px;
  border-radius: 25px; /* Pill shape */
  box-shadow: 0 2px 8px rgba(255, 183, 77, 0.2);
  font-weight: bold;
}

/* Info Text */
.infoTextContainer {
  display: flex;
  flex-wrap: wrap;
  background: #EBF8FF; /* Soft blue background */
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
}

.innerLogo img {
  max-width: 240px;
}

.infoText {
  margin-right: 15px;
  color: #2D3748; /* Modern charcoal */
}

.infoText i {
  color: #FFB74D; /* Gold icons */
  margin-right: 8px;
  font-size: 1.1em;
}

/* Hero Section */
.availabilityHeaderContainer {
  background: linear-gradient(rgba(26, 54, 93, 0.7), rgba(0, 180, 166, 0.5)), 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;
  position: relative;
}

.heroTitle {
  color: white !important;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  animation: fadeInDown 1.2s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.heroSubtitle {
  color: #FFB74D !important; /* Gold subtitle for contrast */
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  animation: fadeInDown 1.2s ease-out 0.2s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.heroDivider {
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #FFB74D, #00B4A6);
  margin: 20px auto;
  animation: scaleIn 1.5s ease-out;
  border-radius: 3px;
}

.heroTagline {
  color: white !important;
  font-size: 1.1rem;
  margin-top: 0;
  animation: fadeInLeft 1.2s ease-out;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Additional accent elements */
.accentCard {
  background: white;
  border-left: 5px solid #00B4A6;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.accentCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Animations remain the same */
@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, #00B4A6, #6B8E72);
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 180, 166, 0.2);
    font-weight: bold;
  }
  
  .favourites {
    color: #FFB74D; /* Gold for favorites */
  }
  
  .heroTitle {
    font-size: 2.8rem;
  }
  
  .heroSubtitle {
    font-size: 1.5rem;
  }
}

/* Advanced hover effects */
.property-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 180, 166, 0.15);
}

/* Success/info states */
.success-message {
  background: linear-gradient(135deg, #6B8E72, #4CAF50);
  color: white;
  padding: 15px;
  border-radius: 10px;
}

.info-message {
  background: #EBF8FF;
  color: #1A365D;
  border-left: 4px solid #00B4A6;
  padding: 15px;
  border-radius: 0 10px 10px 0;
}