/* 
 * Custom CSS to replace Bootstrap functionality
 * SuiteTheme - Bootstrap Replacement
 */
h1.accommodation-title {
    text-align: center;
    margin: 60px;
}
.single-accommodation-wrap {
    display: grid;
    grid-template-columns: 50% 50fr;
    gap: 30px;
}
/* === GRID SYSTEM === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: space-between;
}

/* Column classes */
.col {
  flex: 1 0 0%;
  padding: 0 15px;
}

.col-md-1 { flex: 0 0 auto; width: 8.333333%; padding: 0 15px; }
.col-md-2 { flex: 0 0 auto; width: 16.666667%; padding: 0 15px; }
.col-md-3 {flex: 0 0 auto;padding: 0 15px;}
.col-md-4 { flex: 0 0 auto; width: 33.333333%; padding: 0 15px; }
.col-md-5 { flex: 0 0 auto; width: 41.666667%; padding: 0 15px; }
.col-md-6 { flex: 0 0 auto; width: 50%; padding: 0 15px; }
.col-md-7 { flex: 0 0 auto; width: 58.333333%; padding: 0 15px; }
.col-md-8 { flex: 0 0 auto; width: 66.666667%; padding: 0 15px; }
.col-md-9 { flex: 0 0 auto; width: 75%; padding: 0 15px; }
.col-md-10 { flex: 0 0 auto; width: 83.333333%; padding: 0 15px; }
.col-md-11 { flex: 0 0 auto; width: 91.666667%; padding: 0 15px; }
.col-md-12 { flex: 0 0 auto; width: 100%; padding: 0 15px; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 1.75rem;
  font-size: 1rem;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}

.btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

/* === FLEXBOX UTILITIES === */
.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.d-inline-block {
  display: inline-block !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-sm-row {
  flex-direction: row !important;
}

/* === NAVIGATION === */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 5px 0rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  font-size: 14px;
}

.nav-link:hover {
  color: #0a58ca;
}

.nav-item {
  margin-bottom: 0;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Fix for navbar-expand-lg behavior */
.navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand-lg .navbar-toggler {
  display: none;
}

/* Fix for navbar-expand-lg collapse behavior */
.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  justify-content: flex-end;
}

/* ms-auto class for margin-left auto */
.ms-auto {
  margin-left: auto !important;
}



.navbar-expand-lg .navbar-nav {
  flex-direction: row;
}

/* Fix collapse behavior for desktop */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }
}

/* Responsive fixes for mobile */
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-toggler {
    display: block !important;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: none;
  }
  
  .navbar-expand-lg .navbar-collapse.show {
    display: block !important;
  }
}
.accommodation-item {
    display: flex;
    width: 100%;
    border: 1px solid #af7726;
    padding: 20px;
    border-radius: 0px;
}
.accommodation-read-more-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 20%;
    align-items: center;
    border-left: 2px solid #bfa76a;
}
a.accommodation-read-more {
    background: #bfa76a;
    padding: 10px 30px;
    text-decoration: none;
    color: #fff !important;
    display: flex;
    height: max-content;
}
.accommodation-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
h2.card-title {
    margin: 0 0 20px;
}
.accommodation-item .card {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
}
.accommodation-item .card img {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid #af7726;
    padding: 2px;
}
.accommodation-archive {
    margin-bottom: 60px;
}
/* === SPACING UTILITIES === */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* === TEXT UTILITIES === */
.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.text-muted {
  color: #6c757d !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

/* === BORDER UTILITIES === */
.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}


/* === LIST UTILITIES === */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* === RESPONSIVE UTILITIES === */
@media (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
  
  .d-md-none {
    display: none !important;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .d-none {
    display: none !important;
  }
}

/* === ADDITIONAL THEME-SPECIFIC STYLES === */
/* Position utilities */
.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-sticky {
  position: sticky !important;
}

/* Background utilities */
.bg-light {
  background-color: #f8f9fa !important;
}

/* Rounded utilities */
.rounded {
  border-radius: 0.375rem !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* Shadow utilities */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Width utilities */
.w-100 {
  width: 100% !important;
}

/* Height utilities */
.h-100 {
  height: 100% !important;
}

.h-md-250 {
  height: 250px !important;
}

/* Display utilities for specific breakpoints */
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
}

/* Overflow utilities */
.overflow-hidden {
  overflow: hidden !important;
}

/* Gap utilities for flex containers */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

.g-0 { gap: 0 !important; }

/* Additional navbar utilities */
.navbar-dark .navbar-brand {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-brand:hover {
  color: #fff;
}

/* === NAVIGATION ALIGNMENT FIXES === */

/* Fix for navbar-expand-lg behavior */
.navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand-lg .navbar-toggler {
  display: none;
}

/* Fix for navbar-expand-lg collapse behavior */
.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  justify-content: flex-end;
}

/* ms-auto class for margin-left auto */
.ms-auto {
  margin-left: auto !important;
}




/* Fix collapse behavior for desktop */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }
}

/* Responsive fixes for mobile */
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-toggler {
    display: block !important;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: none;
  }
  
  .navbar-expand-lg .navbar-collapse.show {
    display: block !important;
  }
}

/* === PARALLAX SECTION STYLES === */
.parallax-section {
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.parallax-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile optimization for parallax */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    min-height: 400px;
  }
  
  .parallax-content h2 {
    font-size: 2rem;
  }
  
  .parallax-content p {
    font-size: 1rem;
  }
}

/* Smooth scrolling enhancement */
.parallax-section {
  will-change: transform;
  transform: translateZ(0);
}

/* Alternative parallax with transform (more performance-friendly) */
.parallax-transform {
  min-height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-transform .parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

.parallax-transform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.parallax-transform .parallax-content {
  position: relative;
  z-index: 3;
}

/* === DESKTOP NAVIGATION FIX === */
/* Ensure navigation is visible on desktop for navbar-expand-lg */
@media (min-width: 992px) {
  .navbar-expand-lg .collapse {
    display: flex !important;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
}