/* custom.css - Clean, subtle enhancements for Bootstrap theme */
body {
  background: #f7f8fa;
  color: #222;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

/* Consistent Button Styling */
.btn {
  min-height: 44px; /* Mobile touch targets */
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Primary buttons - Black with white text */
.btn-primary {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

/* Secondary buttons - White with black text and black outline */
.btn-outline-primary {
  background-color: #fff;
  border-color: #000;
  color: #000;
  border-width: 2px;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

/* Newsletter/Carvery buttons - Gold theme */
.btn-warning, .btn-newsletter {
  background-color: #DFA13A;
  border-color: #DFA13A;
  color: #fff;
  font-weight: 600;
}

.btn-warning:hover, .btn-warning:focus,
.btn-newsletter:hover, .btn-newsletter:focus {
  background-color: #C8941F;
  border-color: #C8941F;
  color: #fff;
}

/* Reservation buttons - Keep unique style but consistent format */
.btn-reservation {
  background-color: #e67e22;
  border-color: #e67e22;
  color: #fff;
  font-weight: 600;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-reservation:hover, .btn-reservation:focus {
  background-color: #d35400;
  border-color: #d35400;
  color: #fff;
}

/* Consistent form controls */
.form-control-consistent, .form-control:focus, .form-select:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

/* Gallery image modal styling */
.gallery-image {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Social media section spacing */
.social-media-section {
  margin-bottom: 3rem;
}
body::after {
  content: "";
  position: fixed;
  left: 0;
  bottom: 0;
  width: 50vw;
  max-width: 50vw;
  height: 350px;
  background: url('/public/media/pagebackground.png') center bottom no-repeat;
  background-size: 50vw auto;
  z-index: -1; /* Move background image behind everything */
  pointer-events: none;
}
.hero-section,
section.intro-section,
#main-content,
.navbar,
footer {
  position: relative;
  z-index: 1;
}
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 2;
}
.navbar-brand {
  font-weight: bold;
  color: #dfa13a !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.navbar-nav .nav-link {
  color: #222 !important;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: color 0.2s, background 0.2s;
  padding: 0.5rem 1.5rem; /* Increased horizontal padding for more spacing */
  margin: 0 0.25rem; /* Add slight margin between items */
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: #dfa13a !important;
  background: #f7f8fa;
}
.dropdown-menu {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-radius: 0.5rem;
  border: 1px solid #ececec;
  background: #fff;
}
.dropdown-item {
  border-radius: 0.25rem;
  transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: #f7f8fa;
  color: #dfa13a;
}
footer {
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.03);
  border-top: 1px solid #ececec;
  padding: 2rem 0 1rem 0;
  margin-top: 2rem;
}
footer h6 {
  color: #222;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
footer a {
  color: #222;
  font-weight: 500;
  transition: color 0.2s, text-decoration 0.2s;
  border-radius: 0.25rem;
  text-decoration: none;
}
footer a:hover, footer a:focus {
  color: #dfa13a;
  text-decoration: underline;
  font-weight: 600;
  background: none;
}
footer .text-muted {
  color: #6b7280 !important;
}
.hero-section {
  position: relative;
  width: 100vw;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  overflow: hidden;
  z-index: 1;
}
.hero-section video.hero-video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.navbar {
  position: relative;
  z-index: 2;
}
#main-content {
  position: relative;
  z-index: 1;
}
.mb-4 {
    margin-bottom: 0!important;
}
.WI-carousel-container {
            max-width: 100%;
            width: 100%;
            position: relative;
        }

        .WI-carousel-wrapper {
            overflow: hidden;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0);
            padding: 40px 60px;
        }

        .WI-carousel-track {
            display: flex;
            transition: transform 0.4s ease-in-out;
            gap: 20px;
        }

        .WI-carousel-track.WI-no-transition {
            transition: none;
        }

        .WI-card {
            flex: 0 0 calc(33.333% - 14px);
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .WI-card:hover {
            transform: translateY(-5px);
        }

        .WI-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 48px;
            font-weight: bold;
        }

        .WI-card-content {
            padding: 20px;
            text-align: center;
        }

        .WI-card-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .WI-card-description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .WI-carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 2px solid #ddd;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #333;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .WI-carousel-button:hover {
            background: #f5f5f5;
            border-color: #333;
            transform: translateY(-50%) scale(1.1);
        }

        .WI-carousel-button:active {
            transform: translateY(-50%) scale(0.95);
        }

        .WI-carousel-button.WI-prev {
            left: 10px;
        }

        .WI-carousel-button.WI-next {
            right: 10px;
        }

        .WI-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .WI-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .WI-dot.WI-active {
            background: #333;
            width: 30px;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .WI-card {
                flex: 0 0 calc(50% - 10px);
            }

            .WI-carousel-wrapper {
                padding: 40px 50px;
            }
        }

        @media (max-width: 480px) {
            .WI-card {
                flex: 0 0 100%;
            }

            .WI-carousel-wrapper {
                padding: 30px 40px;
            }
        }

.WI-testimonials-container {
            max-width: 100%;
            width: 100%;
            position: relative;
        }

        .WI-testimonials-wrapper {
            overflow: hidden;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0);
            padding: 60px 80px;
        }

        .WI-testimonials-track {
            display: flex;
            transition: transform 0.4s ease-in-out;
            gap: 30px;
        }

        .WI-testimonials-track.WI-no-transition {
            transition: none;
        }

        .WI-testimonial {
            flex: 0 0 calc(50% - 15px);
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .WI-testimonial:hover {
            transform: translateY(-5px);
        }

        .WI-testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .WI-testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #666;
            margin-right: 15px;
        }

        .WI-testimonial-info {
            flex: 1;
        }

        .WI-testimonial-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .WI-testimonial-role {
            font-size: 14px;
            color: #666;
        }

        .WI-testimonial-rating {
            color: #ffc107;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .WI-testimonial-text {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            font-style: italic;
        }

        .WI-testimonials-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 2px solid #ddd;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #333;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .WI-testimonials-button:hover {
            background: #f5f5f5;
            border-color: #333;
            transform: translateY(-50%) scale(1.1);
        }

        .WI-testimonials-button:active {
            transform: translateY(-50%) scale(0.95);
        }

        .WI-testimonials-button.WI-prev {
            left: 10px;
        }

        .WI-testimonials-button.WI-next {
            right: 10px;
        }

        .WI-testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .WI-test-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .WI-test-dot.WI-active {
            background: #333;
            width: 30px;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .WI-testimonial {
                flex: 0 0 100%;
            }

            .WI-testimonials-wrapper {
                padding: 40px 50px;
            }
        }


form#ftb-bookingWidgetForm {
    background-color: #8298a92b !important;
    border-radius: 15px;
    border: 1px solid #d9d9d9;
    box-shadow: var(--bs-box-shadow-sm) !important;
}
    /* Small custom styling to keep the layout professional */
    .room-title { font-weight: 600; letter-spacing: .2px; }
    .lead-cta { font-size: 1.05rem; }
    .feature-icon { font-size: 1.25rem; color: #0d6efd; }
    .amenity { min-height: 3.5rem; }
    .gallery-img { cursor: pointer; transition: transform .2s ease; }
    .gallery-img:hover { transform: scale(1.02); }
    .booking-card { border-radius: .5rem; box-shadow: 0 6px 18px rgba(13,110,253,0.06); }
    .reserve-btn { width:100%; }
    @media (min-width: 992px) {
      /* Keep hero out of scope (user has already) and make booking panel sticky on large screens */
      .booking-sticky { position: sticky; top: 6rem; }
    }