/* CSS Variables */
body {
  --heading-font: "Inter", Roboto, sans-serif;
  --heading-font-weight: 400;
  --heading-color: var(--bs-dark);
  --heading-line-height: 1.24;

  --swiper-theme-color: var(--bs-primary);
  --swiper-pagination-bottom: 0;

  --custom-easing: cubic-bezier(.17,.67,.83,.67);

  --bs-body-font-family: "Inter", Roboto, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.7;
  --bs-body-color: #8f8f8f;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #ce071e;
  --bs-primary-dark: #8d0414;
  --bs-secondary: #6c757d;
  --bs-black: #111;
  --bs-light: #F1F1F0;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 206, 7, 30;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: var(--bs-dark);
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-hover-color-rgb: 17, 17, 17;
}

@media only screen and (max-width: 991px) {
  body {
    --bs-body-font-size: 1.2rem;
  }
}

:root {
  --accent-color: #333;
  --black-color: #000;
  --dark-color: #111;
  --gray-color-100: #F1F1F1;
  --gray-color-200: #E1E1E1;
  --gray-color-300: #D1D1D1;
  --gray-color-400: #ced4da;
  --gray-color-500: #adb5bd;
  --dark-gray-color: #7A7A7A;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --light-color: #fff;
  --swiper-theme-color: #111 !important;
  --body-font: "Inter", sans-serif;
  --heading-font: "Inter", sans-serif;
  --extra-font: "Playfair Display", sans-serif;
}

/* Base Styles */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 1.6;
  color: var(--accent-color);
  margin: 0;
}

a {
  color: var(--dark-color);
  text-decoration: none !important;
  transition: 0.3s color ease-out;
}

a:hover {
  color: var(--dark-color);
}

p {
  color: var(--dark-gray-color);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}

h2 {
  font-size: 2.8em;
}

/* Container */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 2rem;
}

.container-md {
  max-width: 1460px;
}

.container-lg {
  max-width: 1750px;
}

/* Preloader */
.preloader svg {
  width: 100px;
  height: 100px;
  margin: 20px;
  display: inline-block;
}

/* Header */
.site-header {
  width: 100%;
  z-index: 10;
  transition: background-color 0.3s ease-out;
}

.navbar-nav .nav-item a.nav-link {
  color: var(--accent-color);
  font-weight: 700;
  padding: 0;
}

#header-nav .navbar-toggler:focus {
  box-shadow: none;
}

/* Image Container */
.image-container {
  display: flex;
  gap: 1rem;
}

.left-image {
  flex: 2;
}

.right-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .image-container {
    flex-direction: column;
  }

  .left-image,
  .right-images {
    flex: 1 1 100%;
  }

  .right-images {
    flex-direction: row;
    gap: 1rem;
  }

  .right-images > div {
    flex: 1;
  }
}

.row {
  position: inherit;
  z-index: 1;
}

.btn-wrap {
  bottom: 34px;
  z-index: 1;
  transition: transform 0.2s ease;
}

.btn-wrap:hover {
  transform: scale(1.1);
}

.bg-gray {
  background: var(--gray-color-100);
}

.bold-text {
  right: 0;
  bottom: -42px;
  font-family: var(--extra-font);
  font-size: 8.8em;
  color: var(--gray-color-200);
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .bold-text {
    right: 0;
    bottom: -20px;
    font-size: 2.5em;
  }

  .bg-gray {
    padding: 2rem 1.5rem !important;
  }

  .coupon-header h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem;
  }

  .coupon-header p {
    font-size: 0.85rem;
  }

  .btn-wrap {
    text-align: center;
    margin-top: 1rem;
  }

  .btn-wrap img {
    height: 44px !important;
  }
}

/* Buttons */
.btn {
  --bs-btn-border-radius: 0;
}

.btn.btn-medium {
  padding: 0.8em 2.5em;
  font-size: 1.1em;
  letter-spacing: 2px;
}

.btn.btn-black {
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
}

.btn.btn-black:hover {
  color: var(--light-color);
}

.hvr-sweep-to-right {
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bs-red);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Product Store */
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}

.product-card .cart-button svg {
  width: 20px;
  height: 20px;
  fill: var(--dark-color);
}

/* Text Hover Effect */
.text-hover ul li>a,
.text-hover a,
a.text-hover {
  position: relative;
  transition: 0.3s ease-out;
}

.text-hover li a.nav-link:after,
.text-hover li a:after,
.text-hover a:after,
a.text-hover:after {
  content: "";
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s ease-out;
  border-bottom: 2px solid var(--dark-color);
}

.text-hover.light-border li a.nav-link:after,
.text-hover.light-border li a:after,
.text-hover.light-border a:after,
a.text-hover.light-border:after {
  border-bottom: 2px solid var(--light-color);
}

.card:hover .text-hover a.active:after,
.text-hover a.active:after,
.text-hover .active a:after,
.text-hover.active a.nav-link:after,
.text-hover a.nav-link:hover:after,
.text-hover li a:hover:after,
.text-hover a:hover:after,
a.text-hover:hover:after,
.text-hover li a:focus:after,
.text-hover a:focus:after,
a.text-hover:focus:after {
  width: 100%;
}

/* Floating Book Now Button */
.floating-book-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: var(--light-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(21, 18, 18, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2.5s infinite;
}

.floating-book-btn:hover {
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(225, 235, 29, 0.6);
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .floating-book-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    font-size: 1em;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.rental-policy-section {
  background-color: #f9f9f9;
}

.policy-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.policy-header .section-subtitle {
  font-size: 1rem;
  color: #666;
}

.policy-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.policy-card {
  display: flex;
  gap: 15px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: flex-start;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.policy-icon {
  font-size: 2.3rem;
  flex-shrink: 0;
}

.policy-content h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

.policy-content p {
  margin: 5px 0 0 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.policy-content a {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.policy-content a:hover {
  text-decoration: underline !important;
}

.policy-card .btn-success {
  padding: 4px 12px;
  font-weight: 600;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .rental-policy-section {
    padding: 2rem 0 !important;
  }

  .policy-cards {
    gap: 0.75rem !important;
  }

  .policy-card {
    padding: 15px;
    gap: 10px;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .policy-icon {
    font-size: 2rem;
  }

  .policy-content h5 {
    font-size: 1.2rem;
  }

  .policy-content p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

.footer-menu a {
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: rgba(var(--bs-primary-rgb),var(--bs-text-opacity)) !important; /* Theme blue */
  padding-left: 5px;
}

#footer {
  font-family: inherit;
}

#footer h6 {
  font-size: 0.85rem;
  color: #111;
}

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

/* Custom FAQ Styling */
.custom-faq .accordion-item {
  border: 1px solid #eee !important;
}

.custom-faq .accordion-button {
  padding: 1.25rem;
  box-shadow: none !important; /* Removes blue focus ring */
}

/* Removes the default blue background when expanded */
.custom-faq .accordion-button:not(.collapsed) {
  background-color: #fff !important;
  color: #111 !important;
}

/* Adjusts the arrow icon */
.custom-faq .accordion-button::after {
  background-size: 1rem;
}

.custom-faq .accordion-body {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
}