:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #fc9b0e;
  --bs-green: #198754;
  --bs-teal: #2fb2c6;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #ffc800;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc800;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 255, 200, 0;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 200, 0;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Roboto Slab, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #ffc800;
  --bs-link-hover-color: #cca000;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff4cc;
  --bs-btn-color: #fff;
  --bs-btn-bg: #fc9b0e;
  --bs-btn-border-color: #ffc800;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2fb2c6;
  --bs-btn-hover-border-color: #cca000;
  --bs-btn-focus-shadow-rgb: 255, 208, 38;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #cca000;
  --bs-btn-active-border-color: #bf9600;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #fc9b0e;
  --bs-btn-disabled-border-color: #fc9b0e;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.nav-logo {
  object-fit: cover;
  height: 80% !important;
  width: 100% !important;
}

html {
  scroll-padding-top: 4.5rem;
}

.rsv-mini {
  height: 100%;

  .image img {
    height: 100%;
    width: 100%;
  }

}

@media only screen and (max-width: 992px) {
  .rsv-mini {
    flex-wrap: wrap;

    .image img {
      width: 100% !important;
    }
  }
}

.h90vh {
  height: 90vh;
}

.translate {
  transform: translateY(-30%);
}

.header-font {
  h3 {
    font-size: 4rem;
  }

  p {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 992px) {
  .img-rv {
    width: 100% !important;
    height: 400px;
  }
}

@media only screen and (max-width: 750px) {
  .translate {
    transform: translateY(0%);
  }

  .header-font {
    h3 {
      font-size: 2.5rem;
    }

    p {
      font-size: 1.2rem;
    }
  }

  .h90vh-rv {
    height: 50vh !important;
    width: 100% !important;
  }
}

@media only screen and (max-width: 500px) {

  .translate {
    transform: translateY(0);
  }


}

.main-bg-color {
  background: rgba(255, 200, 0, 0.9);
}

.main-color {
  color: rgba(255, 200, 0, 0.9);
}

.bar {
  position: absolute;
  height: 3px;
  width: 80%;
  background: #fff;
  transition: all .3s;
  left: 3px;
  top: 5px;
}

.bar.middle-bar {
  top: 50%;
  margin-top: -2px;
}

.bar.bottom-bar {
  top: 75%;
}

.hamburger-init.active {
  z-index: 2;
  animation: rotateHamburger .5s linear 0s forwards;
}

.hamburger-init.active .bar {
  background: #fff;
}

.hamburger-init.active .bar.top-bar {
  transform: translateY(12px) rotate(45deg);
}

.hamburger-init.active .bar.middle-bar {
  width: 0;
}

.hamburger-init.active .bar.bottom-bar {
  transform: translateY(-7px) rotate(-45deg);
}


@media only screen and (max-width: 500px) {
  h1 {
    font-size: 56px !important;
  }
}

.page-section {
  padding: 3rem 0;
  font-size: 22px;
}

.page-section h2.section-heading,
.page-section .section-heading.h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-section h3.section-subheading,
.page-section .section-subheading.h3 {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  section {
    padding: 9rem 0;
  }
}

.btn-social {
  height: 2.5rem;
  width: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 100%;
}

.navbar-nav li a {
  color: rgb(161 147 109) !important;
  opacity: 1;
  font-weight: bold;
}


.buttons {
  background-color: rgb(161 147 109) !important;
  color: #000;

}

#mainNav {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212529;
}

#mainNav .navbar-toggler {
  padding: 1rem;
  font-size: 1.5rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-transform: uppercase;
  font-weight: 700;

}

#mainNav .navbar-brand {
  color: #ffc800;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
}

#mainNav .navbar-brand img {
  height: 60px;
  width: 150px;
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.0625em;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: #ffc800;
}

@media (min-width: 992px) {
  #mainNav {
    padding-bottom: 1.5rem;
    border: none;
    background-color: transparent;
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
  }

  #mainNav .navbar-brand {
    font-size: 1.5em;
    transition: font-size 0.3s ease-in-out;
  }

  #mainNav .navbar-brand img {
    transition: height 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink {
    padding-top: rem;
    padding-bottom: 0.25rem;
    background-color: #212529;
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.25em;
  }



  #mainNav .navbar-nav .nav-item {
    margin-right: 1rem;
  }

  #mainNav .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

header.masthead {
  padding-bottom: 12.5rem;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  height: 90vh;
}

/* header.masthead .masthead-subheading {
  font-weight: 700;

  h1 {
    font-size: 80px;
    color: #000;
  }

  p {
    color: #000;
    font-size: 30px;
  }
} */

/* header.masthead .masthead-heading {
  font-size: 1.25rem;
  font-weight: 700;

  p {
    margin-bottom: 4rem;
    color: #000;
  }

  a {
    padding: 1.25rem 2.5rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    font-weight: 700;
    background-color: blue;
    color: white;

    &:hover {
      color: var(--bs-btn-hover-color);
      background-color: var(--bs-btn-hover-bg);
      border-color: var(--bs-btn-hover-border-color);
    }
  }
} */

/* 
@media (min-width: 768px) {
  header.masthead {
    padding-top: 17rem;
    padding-bottom: 12.5rem;
  }

  header.masthead .masthead-subheading {

    margin-bottom: 2rem;
    color: orange;

    h1 {
      font-size: 3.25rem;

    }
  }

  header.masthead .masthead-heading {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 3.5rem;
    margin-bottom: 4rem;
  }
} */

#portfolio .portfolio-item {
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

#portfolio .portfolio-item .portfolio-link {
  position: relative;
  display: block;
  margin: 0 auto;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 200, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity ease-in-out 0.25s;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 1.25rem;
  color: white;
}

#portfolio .portfolio-item .portfolio-link:hover .portfolio-hover {
  opacity: 1;
}

#portfolio .portfolio-item .portfolio-caption {
  padding: 1.5rem;
  text-align: center;
  background-color: #fff;
}

#portfolio .portfolio-item .portfolio-caption .portfolio-caption-heading {
  font-size: 1.5rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  margin-bottom: 0;
}

#portfolio .portfolio-item .portfolio-caption .portfolio-caption-subheading {
  font-style: italic;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.portfolio-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}

.portfolio-modal .modal-content {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.portfolio-modal .modal-content h2,
.portfolio-modal .modal-content .h2 {
  font-size: 3rem;
  line-height: 3rem;
}

.portfolio-modal .modal-content p.item-intro {
  font-style: italic;
  margin-bottom: 2rem;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.portfolio-modal .modal-content p {
  margin-bottom: 2rem;
}

.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 2rem;
}

.portfolio-modal .modal-content img {
  margin-bottom: 2rem;
}

.portfolio-modal .close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  background-color: transparent;
}

.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}

.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: #e9ecef;
}

.timeline>li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.timeline>li:after,
.timeline>li:before {
  display: table;
  content: " ";
}

.timeline>li:after {
  clear: both;
}

.timeline>li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline>li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline>li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline>li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: #2fb2c6;
}

.timeline>li .timeline-image h4,
.timeline>li .timeline-image .h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}

.timeline>li.timeline-inverted>.timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline>li:last-child {
  margin-bottom: 0;
}

.timeline .timeline-heading h4,
.timeline .timeline-heading .h4 {
  margin-top: 0;
  color: inherit;
}

.timeline .timeline-heading h4.subheading,
.timeline .timeline-heading .subheading.h4 {
  text-transform: none;
}

.timeline .timeline-body>ul,
.timeline .timeline-body>p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }

  .timeline>li {
    min-height: 100px;
    margin-bottom: 100px;
  }

  .timeline>li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }

  .timeline>li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }

  .timeline>li .timeline-image h4,
  .timeline>li .timeline-image .h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }

  .timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .timeline>li {
    min-height: 150px;
  }

  .timeline>li .timeline-panel {
    padding: 0 20px 20px;
  }

  .timeline>li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }

  .timeline>li .timeline-image h4,
  .timeline>li .timeline-image .h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }

  .timeline>li.timeline-inverted>.timeline-panel {
    padding: 0 20px 20px;
  }
}

@media (min-width: 1200px) {
  .timeline>li {
    min-height: 170px;
  }

  .timeline>li .timeline-panel {
    padding: 0 20px 20px 100px;
  }

  .timeline>li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }

  .timeline>li .timeline-image h4,
  .timeline>li .timeline-image .h4 {
    margin-top: 40px;
  }

  .timeline>li.timeline-inverted>.timeline-panel {
    padding: 0 100px 20px 20px;
  }
}

.team-member {
  margin-bottom: 3rem;
  text-align: center;
}

.team-member img {
  width: 14rem;
  height: 14rem;
  border: 0.5rem solid rgba(0, 0, 0, 0.1);
}

.team-member h4,
.team-member .h4 {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.img-brand {
  height: 2.75rem;
}

section#contact {
  background-color: #212529;
  background-image: url("../assets/img/map-image.png");
  background-repeat: no-repeat;
  background-position: center;
}

section#contact .section-heading {
  color: #fff;
}

section#contact form#contactForm .form-group {
  margin-bottom: 1.5rem;
}

section#contact form#contactForm .form-group input,
section#contact form#contactForm .form-group textarea {
  padding: 1.25rem;
}

section#contact form#contactForm .form-group input.form-control {
  height: auto;
}

section#contact form#contactForm .form-group-textarea {
  height: 100%;
}

section#contact form#contactForm .form-group-textarea textarea {
  height: 100%;
  min-height: 10rem;
}

section#contact form#contactForm p.help-block {
  margin: 0;
}

section#contact form#contactForm .form-control:focus {
  border-color: #ffc800;
  box-shadow: none;
}

section#contact form#contactForm ::-webkit-input-placeholder {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #ced4da;
}

section#contact form#contactForm :-moz-placeholder {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #ced4da;
}

section#contact form#contactForm ::-moz-placeholder {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #ced4da;
}

section#contact form#contactForm :-ms-input-placeholder {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #ced4da;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

span {
  color: #22a3bd;
}

.sevillana-regular {
  font-family: "Sevillana", cursive;
  font-weight: 400;
  font-style: normal;
}

.hidden {
  display: none !important;
}

.img-info {
  img {
    height: 250px;
  }

  .caption {
    top: -130%;
    left: 0%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.7s ease-out;

    span {
      height: 1px;
    }
  }
}

.img-info:hover .caption {
  z-index: 1;
  top: 0;
}

.btn-book {
  background-color: white;
  width: 98.78px;
  height: 37.6px;

  a {
    color: black;
  }
}

.btn-book:hover {
  transition: 0.5s ease-out;
  background-color: black !important;

  a {
    transition: 0.5s ease-out;
    color: white;
  }
}

.feature {
  text-align: center;
  margin-bottom: 20px;
}

.feature i {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .feature {
    margin-bottom: 10px;
  }
}

.special-features {
  background-color: #ff7f00;
  /* Orange color */
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.feature-item {
  background-color: #007bff;
  /* Blue color */
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.feature-icon {
  font-size: 4em;
  margin-bottom: 10px;
}




@media only screen and (max-width: 991.9px) {
  .rv-logo {
    display: flex;
    flex-direction: column;

  }

}

.modal {
  display: none;
  /* Hidden by default */
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: hidden;
}

.modal-content {
  overflow-y: scroll;
  background-color: #fff;
  margin: 1.1% auto;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  height: 95vh;
}

.close {
  color: #aaa;
  float: right;
  font-size: 40px;
  font-weight: bold;
  width: fit-content;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
  }
}

.pop-up-bg {
  display: none;
  /* hide the popup by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* dark gray background with 50% opacity */
  z-index: 1000;
}

.popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 50%;
  right: 50%;
  width: 300px;
  transform: translate(50%, 50%);
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.popup-content {
  padding: 20px;
  text-align: center;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #aaa;
}

.close-button:hover {
  color: #000;
}



.nav-link {
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.dropdown-menu .dropdown-item:hover {
  background: #ffc107;
  color: #000;
}

/* Navbar style */
#mainNav {
  height: 110px; /* أصغر من العادي */
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Logo أصغر */
#mainNav .nav-logo {
  height: 110px !important;
}

/* Links أصغر */
#mainNav .nav-link {
  font-size: 14px;
  padding: 6px 10px;
}

/* علشان الـ section اللي تحت ما يتغطاش */
body {
  padding-top: 80px; /* يساوي ارتفاع النافبار */
}
/* القائمة اللي بتظهر في الموبايل */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #222;   /* خلفية سودة */
    padding: 10px;
    border-radius: 0 0 10px 10px; /* حواف ناعمة لو عاوز شكل أحلى */
  }

  .navbar-collapse .nav-link {
    color: #ffc107 !important; /* تخلي الروابط واضحة */
    padding: 10px;
  }

  .navbar-collapse .dropdown-menu {
    background: #222; /* لون أغمق شوية للـ submenu */
    border: none;
  }

  .navbar-collapse .dropdown-item {
    color: #fff;
  }
  .navbar-collapse .dropdown-item:hover {
    background: #222;
  }
}

.flag-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%; /* يخليها دايرة */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flag-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.dropdown-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  border-radius: 8px;     /* حواف ناعمة */
  padding: 8px 0;  
}

.card-body .btn {
  white-space: normal;   /* يخلي النص ينزل سطر تاني بدل ما يخرج بره */
  word-break: break-word; /* يكسر الكلمة الطويلة لو مفيش مسافة */
  text-align: center;    /* يخلي النص دايمًا في النص */
  padding: 10px 15px;    /* يدي مساحة حوالين النص */
  min-width: 120px;      /* أقل عرض للزرار */
  flex: 1;               /* يخلي الزرار يتمدد بالتساوي */
}
#mainNav .container-fluid {
  flex-wrap: nowrap !important;
}
#mainNav {
  -webkit-backdrop-filter: blur(12px); /* دعم iOS */
  backdrop-filter: blur(12px);
}
/* Hero Section */
.cairo-hero {
  position: relative;
  width: 100%;
  height: 80vh; /* للشاشات الكبيرة */
  overflow: hidden;
}

.cairo-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(70%);
}

.cairo-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 8px;
}

/* Content */
.cairo-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 15px;
}

.cairo-subtitle {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.cairo-list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 15px;
}

.cairo-list-item {
  margin-bottom: 8px;
  font-size: 1rem;
}

.cairo-paragraph {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
}

/* ✅ Responsive (موبايل) */
@media (max-width: 768px) {
  .cairo-hero {
    height: 40vh; /* تقل شوية في الموبايل */
  }

  .cairo-title {
    font-size: 1.5rem;
    padding: 8px 12px;
    bottom: 10px;
  }

  .cairo-subtitle {
    font-size: 1.3rem;
  }

  .cairo-list-item,
  .cairo-paragraph {
    font-size: 0.9rem;
  }

  .cairo-container {
    margin: 20px auto;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .cairo-title {
    font-size: 1.2rem;
    padding: 6px 10px;
  }

  .cairo-subtitle {
    font-size: 1.1rem;
  }

  .cairo-list-item,
  .cairo-paragraph {
    font-size: 0.85rem;
  }
}


/* Cairo Modal */
.modal-cairo {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.modal-header-cairo {
  display: flex;
  justify-content: flex-end;
}

.modal-close-cairo {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.modal-close-cairo:hover {
  color: #e63946;
}

.modal-title-cairo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.modal-main-title-cairo {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin: 25px 0 15px;
}

.modal-subtitle-cairo {
  font-size: 20px;
  margin: 20px 0 10px;
  font-weight: bold;
}

.modal-table-cairo {
  width: 100%;
  margin-bottom: 20px;
}

.modal-list-cairo {
  margin-left: 20px;
  margin-bottom: 20px;
}

.modal-description-cairo p {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-cairo {
    padding: 15px;
  }
  .modal-main-title-cairo {
    font-size: 22px;
  }
  .modal-subtitle-cairo {
    font-size: 18px;
  }
  .modal-title-cairo {
    font-size: 18px;
  }
  .modal-description-cairo p {
    font-size: 14px;
  }
}



/* Hero Section */
.cairo-small-hero {
  position: relative;
  text-align: center;
  color: white;
}

.cairo-small-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(70%);
}

.cairo-small-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem; /* أصغر من 2rem */
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  max-width: 90%;
}
@media (max-width: 768px) {
  .cairo-small-title {
    font-size: 0.5rem;   /* أصغر */
    line-height: 1;
    max-width: 65%;
  }
}

/* موبايل صغير جداً */
@media (max-width: 480px) {
  .cairo-small-title {
    font-size: 0.4rem;   /* صغير جداً جداً */
    line-height: 1;
    max-width: 60%;
  }
}






/* Content Section */
.cairo-small-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 15px;
}

.cairo-small-content h2 {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #333;
}

.cairo-small-list {
  list-style: disc;
  padding-left: 20px;
}

.cairo-small-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #555;
}

.cairo-small-content p {
  margin: 10px 0;
  line-height: 1.6;
  color: #444;
}


/* ---------------- HERO SECTION ---------------- */
.luxor-hero {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.luxor-hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.luxor-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 8px;
}

/* ---------------- CONTAINER ---------------- */
.luxor-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.luxor-content {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
}

/* ---------------- LIST ---------------- */
.luxor-list {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.luxor-list-item {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ---------------- SUBTITLES ---------------- */
.luxor-subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
  color: #222;
  border-left: 4px solid #c4972f;
  padding-left: 10px;
}

/* ---------------- PARAGRAPHS ---------------- */
.luxor-paragraph {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet */
@media (max-width: 768px) {
  .luxor-title {
    font-size: 1.6rem;
    padding: 8px 15px;
  }

  .luxor-subtitle {
    font-size: 1.3rem;
  }

  .luxor-list-item {
    font-size: 1rem;
  }

  .luxor-paragraph {
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .luxor-title {
    font-size: 1.2rem;
    padding: 6px 12px;
  }

  .luxor-subtitle {
    font-size: 1.1rem;
  }

  .luxor-list-item {
    font-size: 0.9rem;
  }

  .luxor-paragraph {
    font-size: 0.85rem;
  }

  .luxor-hero-img {
    max-height: 250px;
  }
}
/* ---------------- HERO SECTION ---------------- */
.private-hero {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.private-hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.private-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 8px;
}

/* ---------------- CONTAINER ---------------- */
.private-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.private-content {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
}

/* ---------------- TABLE ---------------- */
.private-prices-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
  color: #444;
}

.private-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.private-table th,
.private-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.private-table th {
  background: #c4972f;
  color: #fff;
  font-weight: bold;
}

.private-table tr:nth-child(even) {
  background: #f9f9f9;
}

/* ---------------- LIST ---------------- */
.private-list {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.private-list-item {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ---------------- SUBTITLES ---------------- */
.private-subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
  color: #222;
  border-left: 4px solid #c4972f;
  padding-left: 10px;
}

/* ---------------- PARAGRAPHS ---------------- */
.private-paragraph {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet */
@media (max-width: 768px) {
  .private-title {
    font-size: 1.6rem;
    padding: 8px 15px;
  }

  .private-subtitle {
    font-size: 1.3rem;
  }

  .private-list-item {
    font-size: 1rem;
  }

  .private-paragraph {
    font-size: 0.95rem;
  }

  .private-table th,
  .private-table td {
    font-size: 0.9rem;
    padding: 8px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .private-title {
    font-size: 1.2rem;
    padding: 6px 12px;
  }

  .private-subtitle {
    font-size: 1.1rem;
  }

  .private-list-item {
    font-size: 0.9rem;
  }

  .private-paragraph {
    font-size: 0.85rem;
  }

  .private-hero-img {
    max-height: 250px;
  }

  .private-table th,
  .private-table td {
    font-size: 0.8rem;
    padding: 6px;
  }
}
.luxor-modal-section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.luxor-modal-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.luxor-modal-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.luxor-modal-image:hover {
  transform: scale(1.05);
}

.luxor-modal-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.luxor-modal-subtitle {
  font-size: 1.4rem;
  margin: 20px 0 10px;
  color: #444;
}

.luxor-modal-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.luxor-modal-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #555;
}

.luxor-modal-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .luxor-modal-section {
    padding: 20px;
  }
  .luxor-modal-title {
    font-size: 1.6rem;
  }
  .luxor-modal-subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .luxor-modal-title {
    font-size: 1.3rem;
  }
  .luxor-modal-subtitle {
    font-size: 1rem;
  }
  .luxor-modal-text {
    font-size: 0.9rem;
  }
}
.tour-details {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 40px 25px;
  margin-top: 40px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.tour-image-wrapper {
  text-align: center;
}

.tour-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

/* عناوين */
.tour-details h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.tour-details h2 {
  font-size: 1.4rem;
  margin: 20px 0 15px;
  color: #444;
}

/* لستة */
.tour-details ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.tour-details ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

/* النص */
.tour-details p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* موبايل */
@media (max-width: 768px) {
  .tour-details {
    padding: 20px 15px;
  }

  .tour-details h1 {
    font-size: 1.4rem;
  }

  .tour-details h2 {
    font-size: 1.1rem;
  }

  .tour-details p,
  .tour-details li {
    font-size: 0.9rem;
  }
}

/* Hero Section */
.cairo-hero {
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.cairo-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
}

.cairo-hero-title {
  font-size: 3rem;
  letter-spacing: 1px;
}

/* Carousel */
.cairo-carousel .swiper {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.cairo-carousel img {
  object-fit: cover;
}

/* Booking Form */
.cairo-form {
  border-radius: 12px;
}

.cairo-btn {
  background-color: #d4af37;
  color: #fff;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.cairo-btn:hover {
  background-color: #b38f2f;
}

/* Description Section */
.cairo-content {
  max-width: 900px;
}

.cairo-subtitle {
  color: #c0932f;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.cairo-list {
  margin-left: 1.5rem;
  line-height: 1.8;
}

.cairo-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .cairo-hero-title {
    font-size: 2rem;
  }

  .cairo-carousel .swiper {
    height: 300px;
  }
}

/* Cairo Hero Section */
.cairo-hero {
  height: 60vh;
  min-height: 450px;
  overflow: hidden;
}

.cairo-hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 6s ease;
}

.cairo-hero:hover .cairo-hero-img {
  transform: scale(1.05);
}


.cairo-hero-content {
  z-index: 2;
  max-width: 700px;
}

/* Title & Subtitle */
.cairo-hero-title {
  font-size: 2.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
}

.cairo-hero-subtitle {
  font-size: 1.1rem;
  color: #f8f9fa;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* 🔹 Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cairo-hero-title {
  animation: fadeInUp 1s ease forwards;
}

.cairo-hero-subtitle {
  animation: fadeInUp 1.3s ease forwards;
}

/* 🔹 Responsive adjustments */
@media (max-width: 992px) {
  .cairo-hero-title {
    font-size: 2rem;
  }
  .cairo-hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cairo-hero {
    height: 70vh;
    min-height: 380px;
  }
  .cairo-hero-title {
    font-size: 1.6rem;
  }
  .cairo-hero-subtitle {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}


.cairo-carousel {
  width: 100%;
  height: 420px;
}

.cairo-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .cairo-carousel {
    height: 280px;
  }
}
.luxor-content {
  line-height: 1.8;
}

.luxor-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a3d62;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.luxor-list {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.luxor-list li {
  margin-bottom: 0.5rem;
}

.luxor-tour-info li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.luxor-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #145a32;
  margin-top: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .luxor-subtitle {
    font-size: 1.3rem;
  }
  .luxor-section-title {
    font-size: 1.1rem;
  }
}

.cairo-hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.cairo-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* الصورة تملأ المساحة */
  object-position: center;
}


.cairo-hero-content {
  z-index: 2;
}

.cairo-hero-title {
  font-size: 3rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .cairo-hero {
    height: 70vh;
  }

  .cairo-hero-title {
    font-size: 1.8rem;
  }
}
/* ===== Booking Form Styling ===== */
.cairo-form {
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cairo-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* Title */
.cairo-form-title {
  font-size: 1.5rem;
  color: #1e3a8a;
  position: relative;
}

.cairo-form-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #fbbf24;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Inputs */
.cairo-input {
  border: 1px solid #ddd;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cairo-input:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 0.25rem rgba(30, 58, 138, 0.15);
}

/* Button */
.cairo-btn {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-weight: 600;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.cairo-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cairo-form {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .cairo-form-title {
    font-size: 1.3rem;
  }

  .cairo-btn {
    font-size: 0.95rem;
  }
}

/* ===== Footer Styling ===== */
.footer {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #f1f5f9;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Decorative light gradient line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fbbf24, transparent);
}

/* Brand */
.footer-brand {
  color: #fbbf24;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* Links */
.footer-link {
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fbbf24;
}

/* Social Buttons */
.btn-social {
  background-color: #776331;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f1f5f9;
  transition: all 0.3s ease;
}

.btn-social:hover {
  background-color: #fbbf24;
  color: #fbfcfe;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-brand {
    font-size: 1.1rem;
  }
}
