:root {
  --color-primary-dark-violet: #3A006F; /* Main dark violet */
  --color-secondary-violet: #5C00B8; /* Slightly lighter violet */
  --color-light-violet: rgba(255, 255, 255, 0.9); /*  lighter violet */
  --color-background: #F0F4F8; /* Professional light blue-grey background */
  --color-accent: #c2b621; /* Marker / accent color (for hover/borders) */
  --color-accent-light: #D9D28F; /* Lighter version of accent for borders */
  --color-text-dark: #2d3748; /* Dark grey for main text */
  --color-text-light: #FFFFFF; /* White for text on dark backgrounds */
  --color-border: var(--color-accent-light); /* General border color */
  --font-primary: "Lato", sans-serif; /* Primary font */
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--color-background);
  color: var(--color-text-dark);
  line-height: 1.6;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure body takes full viewport height */
}

.site-content {
  flex-grow: 1; /* Allow content to grow and push footer down */
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary-dark-violet);
}

a {
  color: inherit; /* Inherit color from parent */
  text-decoration: none; /* Remove underline */
}
a:hover {
  text-decoration: underline; /* Add underline on hover */
}

p a {
  color: var(--color-accent);
  text-decoration: underline;
}

.site-content img {
  max-width: 100%;
  height: auto;
}

.accent-bold {
  color: var(--color-accent);
  font-weight: bold;
}

.recent-posts-sidebar-content ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 1.2em; /* Adjust as needed for bullet visibility */
}

.site-header {
  background: var(--color-primary-dark-violet);
  padding: 0.3rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-light-violet);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.site-header .header-main .top-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 1rem);
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  flex-grow: 0;
}
.site-header .site-branding .custom-logo-link img {
  max-height: 45px;
  width: auto;
  display: inline-block;
}
.site-header .site-branding .site-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-header .site-branding .site-title {
  margin: 0;
  font-size: 1.4em;
}
.site-header .site-branding .site-title a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.site-header .site-branding .site-title a:hover {
  color: var(--color-accent);
}
.site-header .site-branding .site-description {
  margin: 0;
  font-size: 0.8em;
  color: var(--color-light-violet);
}
.site-header .main-navigation {
  flex-grow: 1;
  flex-shrink: 1;
  text-align: right;
}
.site-header .main-navigation .menu-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.site-header .main-navigation .menu-toggle .hamburger-icon {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 3px;
  background-color: var(--color-text-light);
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}
.site-header .main-navigation .menu-toggle .hamburger-icon::before, .site-header .main-navigation .menu-toggle .hamburger-icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-text-light);
  transition: transform 0.3s ease;
}
.site-header .main-navigation .menu-toggle .hamburger-icon::before {
  top: -10px;
}
.site-header .main-navigation .menu-toggle .hamburger-icon::after {
  top: 10px;
}
.site-header .main-navigation .menu-toggle[aria-expanded=true] .hamburger-icon {
  background-color: transparent;
}
.site-header .main-navigation .menu-toggle[aria-expanded=true] .hamburger-icon::before {
  transform: translateY(10px) rotate(45deg);
}
.site-header .main-navigation .menu-toggle[aria-expanded=true] .hamburger-icon::after {
  transform: translateY(-10px) rotate(-45deg);
}
.site-header .main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.site-header .main-navigation ul li a {
  display: block;
  padding: 0.5rem 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.site-header .main-navigation ul li a:hover {
  color: var(--color-accent);
}

body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 51.719px);
  padding-top: 51.719px; /* Adjusted based on header's actual height */
}

.site-content {
  flex-grow: 1;
}

.site-container {
  max-width: 1200px; /* Max width for content */
  margin: 0 auto; /* Center the container */
  padding: 0 20px; /* Add horizontal padding */
}

.content-area {
  padding: 20px 0; /* Add vertical padding */
}

.site-main-and-sidebar {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  align-items: flex-start; /* Align items to the top */
}

.site-main {
  flex: 1; /* Allow main content to grow and shrink */
  margin-right: 2rem; /* Space between main content and sidebar */
}

.sidebar-area {
  flex: 0 0 300px; /* Fixed width for sidebar */
  max-width: 100%; /* Ensure it's not overflow on small screens */
}

.sidebar-separator {
  border-top: 1px solid var(--color-primary-dark-violet);
  margin: 1.5rem 0;
}

.layout {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh;
  border-top: 3px solid var(--color-border);
  border-bottom: 3px solid var(--color-border);
  gap: 2rem;
}
.layout__content, .layout__slideshow {
  flex: 1 1 0;
  padding: 2rem 4rem;
  box-sizing: border-box;
}
.layout__content img, .layout__slideshow img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}
.layout__slideshow {
  background: var(--color-secondary-violet);
  border-left: 1px solid var(--color-border);
}

.site-footer {
  background: var(--color-primary-dark-violet);
  padding: 0.3rem 1rem;
  border-top: 1px solid var(--color-border);
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .site-info.footer-main {
  display: flex;
  align-items: center;
  justify-content: center; /* Center content in footer */
  flex-wrap: nowrap;
  min-height: 50px;
  width: 100%;
  text-align: center;
}

body.front-page .site-footer.front-page-footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 999;
}

.front-page-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}

.left-content {
  flex: 1 1 50%;
  padding-right: 2rem;
}

.right-slideshow {
  flex: 1 1 50%;
  position: relative;
}

/* Front Page Specific Styles */
body.front-page-body {
  /* Desktop styles for front-page-text-box */
}
body.front-page-body .site-header {
  /* min-height: 150px;*/
}
body.front-page-body .site-header .header-main {
  flex-direction: column; /* Stack top-header-row and subtitle */
  align-items: flex-start; /* Align to the top-left */
  justify-content: flex-start; /* Push content to the top */
}
body.front-page-body .site-header .top-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 1rem); /* Ensure it takes full width */
}
body.front-page-body .site-header .site-description-wrap {
  margin-top: 0px; /* Reduced space between top row and description */
  margin-bottom: 7px;
  width: 100%; /* Ensure it takes full width */
}
body.front-page-body .site-header .site-description-wrap .site-description {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0; /* Remove default paragraph margin */
}
body.front-page-body .front-page-text-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 300px; /* Adjust as needed */
  background-color: var(--color-light-violet);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10; /* Ensure it's above the background image */
}

.slideshow-container {
  --slide-display-duration: 13s;
  --slide-transition-duration: 7s;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: auto;
}
.slideshow-container .slide {
  opacity: 0;
  transition: opacity 7s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.slideshow-container .slide img {
  width: 100%;
  height: auto;
  display: block;
}
.slideshow-container .slide.active {
  opacity: 1;
  z-index: 1;
}

.lang-button {
  padding: 8px 15px;
  cursor: pointer;
}

#map {
  border-top: 5pt solid var(--color-accent);
  border-right: 5pt solid var(--color-accent);
  border-left: none;
  border-bottom: none;
  border-radius: 0; /* Ensure no border-radius */
  animation: none; /* Remove any existing animations */
}

/* Assuming hotel list items have a class like .hotel-list-item or target li directly */
ul#hotel-list li {
  border-left: 5pt solid var(--color-accent);
  border-right: 5pt solid var(--color-accent);
  border-bottom: 5pt solid var(--color-accent);
  border-top: none;
  border-radius: 0; /* Ensure no border-radius */
  animation: none; /* Remove any existing animations */
}

.hotel-results-heading {
  background-color: var(--color-primary-dark-violet);
  color: var(--color-text-light);
  padding: 10px; /* Add some padding for better visual */
}

.map-filters {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 5px;
}
.map-filters button {
  margin-right: 10px;
  padding: 8px 15px;
  cursor: pointer;
  background-color: #f3f5f6; /* Default button background */
  color: #000; /* Default button text color */
  border: 1px solid #ccc;
  border-radius: 3px;
}
.map-filters button#filter-update {
  /*background-color: #4A90E2 */
  background-color: var(--color-secondary-violet);
  color: white;
  border: none;
}
.map-filters button#filter-reset {
  /*background-color: #f44336;*/
  background-color: var(--color-secondary-violet);
  color: white;
  border: none;
}
.map-filters button.active-filter {
  background-color: var(--color-accent);
  color: white;
}
.map-filters input[type=text] {
  padding: 8px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.map-filters .lang-button {
  margin-left: 5px;
  padding: 8px 15px;
  cursor: pointer;
  background-color: #f3f5f6; /* Default language button background */
  color: #000; /* Default language button text color */
  border: 1px solid #ccc;
  border-radius: 3px;
}
.map-filters .lang-button.active-lang {
  background-color: #4A90E2;
  color: white;
}

.map-language-controls {
  position: absolute;
  top: 10px;
  left: 10px; /* Position to the left */
  right: unset; /* Remove right positioning */
  z-index: 1000;
}

.map-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#hotel-results {
  flex: 1;
  min-width: 300px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 20px;
  border-right: 1px solid #eee;
}
#hotel-results h2 {
  margin-bottom: 20px; /* Added separation */
}

#hotel-list {
  list-style: none;
  padding: 0;
}
#hotel-list li {
  margin-bottom: 20px; /* More spacing between hotels */
}
#hotel-list .odd-entry {
  background-color: #f5f5f5; /* Pale background for every second entry */
  padding: 15px;
  border-radius: 5px;
}

#map-wrapper {
  position: relative;
  flex: 2;
  min-width: 600px;
  height: 600px;
}

#map-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

#map {
  width: 100%;
  height: 100%;
}

/* Styles for hotel list items */
.hotel-list-item {
  background-color: #ffffff; /* White background for each item */
  border: 1px solid #e0e0e0; /* Light border */
  border-radius: 8px; /* Slightly more rounded corners */
  margin-bottom: 20px; /* Spacing between items */
  padding: 15px; /* Inner padding */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.2s ease-in-out; /* Smooth hover effect */
}
.hotel-list-item:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}
.hotel-list-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hotel-list-item h3 {
  margin-top: 0; /* Remove default top margin */
  margin-bottom: 10px;
  color: var(--color-primary-dark-violet); /* Use theme's primary color */
  font-size: 1em; /* Reduced further */
  text-align: left;
}
.hotel-list-item img {
  width: 100%; /* Make image take full width of its container */
  height: 200px; /* Fixed height */
  object-fit: cover; /* Crop from middle */
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
}
.hotel-list-item.odd-entry {
  background-color: #f9f9f9; /* Lighter background for odd entries, subtle */
  padding: 15px; /* Ensure consistent padding for odd entries */
}

#hotel-results {
  flex: 1;
  min-width: 300px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 20px;
  border-right: 1px solid #eee;
}
#hotel-results h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  padding-left: 15px;
  font-size: 1.3em; /* Reduced further */
  color: var(--color-light-violet); /* Apply theme color to heading */
}

#hotel-list {
  list-style: none;
  padding: 0;
  /* The 'li' styles are now handled by .hotel-list-item directly */
}

.entry-content {
  margin-left: 2%;
  margin-right: 2%;
}

/* Hotel Images */
.single-hotel-main-image-container {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.single-hotel-main-image-container img {
  border-left: 5pt solid var(--color-accent);
  border-right: 5pt solid var(--color-accent);
  border-bottom: 5pt solid var(--color-accent);
  border-top: none;
  border-radius: 0;
  padding: 10pt; /* Specific padding for main hotel image */
  max-width: 93%;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

.single-hotel-secondary-image-container {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
  max-width: 40%;
  margin-top: -100px;
}
.single-hotel-secondary-image-container img {
  border-left: 5pt solid var(--color-accent);
  border-right: 5pt solid var(--color-accent);
  border-bottom: 5pt solid var(--color-accent);
  border-top: none;
  border-radius: 0;
  padding: 10pt; /* Specific padding for secondary hotel image */
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

/* Hotel Details List Styling */
.entry-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.entry-content ul li {
  margin-bottom: 8px;
  line-height: 1.4;
}
.entry-content ul li strong {
  display: inline-block;
  min-width: 120px;
  margin-right: 10px;
  color: var(--color-primary-dark-violet);
}
.entry-content ul li a {
  color: var(--color-accent);
  text-decoration: none;
}
.entry-content ul li a:hover {
  text-decoration: underline;
}

/* Map Container Styling */
#hotel-map-container {
  position: relative;
  height: 400px;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}

#hotel-map {
  height: 100%;
  width: 100%;
}

.map-language-controls {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  display: flex;
  gap: 5px;
}
.map-language-controls button {
  padding: 6px 10px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.85em;
  color: var(--color-text-dark);
  transition: background-color 0.2s ease;
}
.map-language-controls button:hover {
  background-color: rgb(255, 255, 255);
}
.map-language-controls button.active-lang {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  border-color: var(--color-accent);
}

@media (max-width: 768px) {
  .single-hotel-floated-image-wrapper,
  .village-description-box {
    float: none;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/* General Post Elements */
.entry-header .entry-title {
  /* Borders removed as per request */
  border-radius: 0; /* Remove existing border-radius */
  animation: none; /* Remove any existing animations */
}
.entry-header .entry-title h1 { /* For singular post titles */
  /* No specific styling here, inherits from theme */
}
.entry-header .entry-title h2 { /* For post list titles */
  font-size: 1.5em; /* Smaller font size for list view */
  margin-bottom: 0.5em;
}
.entry-header .entry-title h2 a {
  text-decoration: none; /* Remove underline from links */
}
.entry-header .entry-meta .post-date {
  font-size: 0.9em;
  color: #777;
  display: block; /* Ensures it takes its own line */
  margin-top: 5px;
}

.entry-footer {
  clear: both;
}

/* Featured Images */
.post-list-featured-image img {
  border-left: 5pt solid var(--color-accent);
  border-right: 5pt solid var(--color-accent);
  border-bottom: 5pt solid var(--color-accent);
  border-top: none;
  border-radius: 0;
  box-sizing: border-box;
  margin-bottom: 10px;
  width: 50%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 15px;
  margin-right: 20px;
  float: left;
}

@media (max-width: 768px) {
  .post-list-featured-image img {
    width: 100%;
    margin-right: 0px;
  }
}
/* Single Hotel/Post Specific Elements */
.single-hotel-main-image-container img,
.single-hotel-floated-image-wrapper img,
.single-post-featured-image-wrapper img {
  border-left: 5pt solid var(--color-accent);
  border-right: 5pt solid var(--color-accent);
  border-bottom: 5pt solid var(--color-accent);
  border-top: none;
  border-radius: 0;
  padding: 10px; /* Space between image and border */
  box-sizing: border-box; /* Include padding in element's total width and height */
  max-width: 93%;
  height: 300px;
  object-fit: cover;
}

.hotel-location-info {
  margin-left: 20px;
  font-style: italic;
  color: #555;
}

.village-description-box {
  float: right;
  width: 30%;
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  margin-left: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
}
.village-description-box.expanded {
  max-height: none; /* Full height when expanded */
}
.village-description-box.full-width-on-expand {
  width: 100%;
  float: none; /* Remove float when full width */
}
.village-description-box .read-more-button {
  background: none;
  border: none;
  color: blue;
  cursor: pointer;
  position: absolute;
  bottom: 5px;
  right: 10px;
}

.hotel-details-box {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  border-radius: 5px;
}

.widget_search,
.widget_search ~ .widget {
  display: none;
}

.site-content {
  flex-grow: 1; /* Allow content to grow and push footer down */
}

body.front-page .site-content {
  background-image: var(--front-page-background-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0; /* Remove default padding */
  display: flex;
  flex-direction: column;
}

.front-page-container {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 2rem;
  width: 100%;
}

.content-box {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 2rem;
  max-width: 450px;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 5%;
  margin-right: 5%;
}

@media (max-width: 768px) {
  body.front-page-body .site-content {
    background-image: none !important; /* Remove desktop background on mobile */
  }
  .front-page-container {
    justify-content: center;
    flex-direction: column;
    padding: 0px;
    align-items: center;
    justify-content: flex-start;
  }
  .site-main-and-sidebar {
    flex-direction: column; /* Stack main content and sidebar vertically */
  }
  .site-main,
  .sidebar-area {
    flex: none; /* Remove flex-grow/shrink */
    width: 100%; /* Take full width */
  }
  .mobile-background-image-container {
    display: block; /* Show mobile background */
    height: 300px; /* Adjust height as needed */
    background-image: var(--front-page-background-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
  }
  div.content-box {
    padding: 0;
    position: static; /* Remove absolute positioning */
    width: 100%; /* Full width */
    margin: 0; /* Remove margins */
    padding-left: 20px; /* Add padding */
    pading-right: 20px;
    box-shadow: none; /* Remove shadow */
    border-radius: 0; /* Remove border radius */
    max-width: none;
  }
  div.content-box p {
    padding-left: 20px; /* Add padding */
    padding-right: 20px;
  }
  .site-header .header-main {
    flex-direction: column; /* Stack branding and navigation vertically */
    align-items: flex-start; /* Align to the left */
    justify-content: flex-start; /* Push content to the top */
  }
  .site-header .site-branding {
    margin-bottom: 10px; /* Space between branding and navigation */
  }
  .site-header .main-navigation {
    width: 100%; /* Allow navigation to take full width */
    text-align: left; /* Align menu items to the left */
  }
  .site-header .main-navigation .menu-toggle {
    display: block; /* Ensure hamburger is visible */
    width: 40px;
    padding: 0.5rem;
    background: var(--color-secondary-violet);
    color: var(--color-text-light);
    border: none;
    cursor: pointer;
  }
  .site-header .main-navigation ul {
    flex-direction: column; /* Stack for mobile menu */
    display: none;
  }
  .site-header .main-navigation ul.toggled {
    display: flex;
    z-index: 9999; /* Higher z-index */
  }
  .site-header .main-navigation ul li {
    width: auto;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
