/*************************************
  Root Variables
*************************************/ :root {
  --primary-color: #d80a7d;
  --secondary-color: #4a4a4a;
  --text-dark: #212529;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --bg-light-blue: #F5F8FF;
  --bg-light-orange: #fef9f6;
  --bg-light-grey: #F5F5F5;
  --bg-dark-blue: #061A60;
  --bg-dark-pink: #a9075f;
  --white: #FFFFFF;
  --black: #000000;
  --grey: #333333;
  --font-main: 'Poppins', sans-serif;
  --section-padding: 4rem;
  --transition-speed: 0.3s;
  --border-radius: 0.75rem;
  --border-width-2: 2px;
  --w-10: 10%;
  --w-20: 20%;
}
/*************************************
  Reset & Base
*************************************/
body, html {
  font-family: var(--font-main);
  color: var(--text-dark);
  scroll-behavior: smooth;
}
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}
a:hover {
  color: var(--bg-dark-pink);
  text-decoration: none;
}
ul, li {
  list-style: none !important;
  padding: 0px;
  margin: 0px;
}
h1, h2, h3, h4, h5 {
  font-weight: 700;
}
section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.bg-light-blue {
  background-color: var(--bg-light-blue) !important;
}
.bg-light-grey {
  background-color: var(--bg-light-grey) !important;
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all var(--transition-speed);
}
.btn-primary:hover {
  background-color: var(--bg-dark-pink);
  border-color: var(--bg-dark-pink);
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: var(--white);
}
.btn-outline-primary:hover, .btn-outline-primary.active {
  background-color: var(--bg-dark-pink);
  color: var(--white);
  border-color: var(--bg-dark-pink);
}
.border-primary {
  border-color: var(--primary-color) !important;
  border-width: var(--border-width-2) !important;
}
.w-10 {
  width: var(--w-10) !important;
}
.w-10 {
  width: var(--w-20) !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.z-10 {
  z-index: 100000;
}
/* ---------------------------------------
  Navbar
---------------------------------------- */
.navbar {
  background: var(--white) !important;
  border-bottom: 1px solid var(--white);
  z-index: 1030;
}
.navbar-brand img {
  height: 40px;
  transition: height var(--transition-speed);
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 32px;
  }
}

/* Enhanced CTA button in navbar */
.navbar .btn-outline-primary {
  color: var(--white);
  background: var(--primary-color);
  border-color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(216, 10, 125, 0.10);
  transition: all var(--transition-speed), box-shadow 0.2s;
}

.navbar .btn-outline-primary:hover, .navbar .btn-outline-primary:focus {
  background: var(--bg-dark-pink);
  color: var(--white);
  border-color: var(--bg-dark-pink);
  box-shadow: 0 4px 16px rgba(216, 10, 125, 0.18);
  transform: translateY(-2px) scale(1.04);
}
.nav-link {
  color: var(--black);
  font-weight: 500;
  position: relative;
}
.nav-link.active, .nav-link:hover {
  color: var(--primary-color);
}
.nav-link.active::after, .nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}
@media (max-width: 768px) {
  .navbar .btn {
    margin-top: 1rem;
  }
}
/*************************************
  Mobile Navigation
*************************************/
.mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mobile-nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.25rem;
}
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1045;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  margin-left: auto;
  display: block;
  margin-bottom: 1rem;
}
/*************************************
  Hero Section
*************************************/
.hero-carousel {
  position: relative;
  overflow: hidden;
}
.hero-wrapper {
  height: 100vh;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  margin-left: 0;
  padding-left: 0;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-content p {
  font-size: 1.25rem;
  margin-top: 1rem;
  line-height: 1.6;
}
.hero-content .btn {
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  margin-top: 1.75rem;
}
.hero-carousel .custom-indicators {
  position: absolute !important;
  top: 50% !important;
  right: 2rem !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  z-index: 10 !important;
  left: inherit;
}
.hero-carousel .custom-indicators button {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  border: none;
  transition: background-color 0.3s ease;
}
.hero-carousel .custom-indicators .active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}
.program-details-hero {
  background-image: url("../img/program-details/program-details-hero-bg.png");
}
.the-hotels-hero {
  background: url("../img/the-hotel/the-hotel-hero-bg.png");
}
.tours-hero {
  background: url("../img/tours/tours-hero-bg.png");
}
.kosher-fest-hero {
  background: url("../img/kosher-fest/kosher-fest-hero-bg.png");
}
.gallery-hero {
  background: url("../img/gallery/gallery-hero-bg.png");
}
.about-us-hero {
  background: url("../img/about-us/about-us-hero-bg.png");
}
.contact-hero {
  background: url("../img/contact/contact-hero-bg.png");
}
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content .btn {
    font-size: 1rem;
    padding: 0.65rem 1.25rem;
  }
  .hero-carousel .custom-indicators {
    top: 95% !important;
    right: 80px !important;
    flex-direction: row !important;
  }
}
@media (min-width: 992px) {
  .hero-content {
    padding-left: 15px;
  }
}
/************************************
Experience the Magic: PYW 2025 Recap
*************************************/
.experience-section {
  background-color: var(--bg-light-orange);
}
.experience-section h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--black);
}
.experience-section p {
  font-size: 1.125rem;
  color: var(--grey);
  line-height: 1.7;
}
.tilted-frame-wrapper {
  perspective: 1000px;
}
.tilted-frame {
  transform: rotate(4deg);
  transition: transform 0.6s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.tilted-frame:hover {
  transform: rotate(0deg);
}
.bg-pink {
  background-color: #d63384;
}
.btn-outline-danger {
  color: #d63384;
  border-color: #d63384;
}
.btn-outline-danger:hover {
  background-color: #d63384;
  color: #fff;
}
@media (max-width: 767px) {
  .carousel-control-prev-icon, .carousel-control-next-icon {
    background-size: 1.5rem 1.5rem;
  }
}
/*************************************
Testimonials
*************************************/
.arrow {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.arrow-left {
  color: #ccc;
}
.arrow-right {
  color: #d63384;
}
.carousel-control {
  background: none;
  border: none;
  cursor: pointer;
}
/***********************************
Partners
***********************************/
.map-texture {
  z-index: 0;
  max-width: 50%;
}
/***********************************
CTA Banner
***********************************/
.cta-section {
  background-size: cover !important;
  height: 400px;
  display: flex;
  align-items: center;
}
.cta-overlay {
  /*background-color: rgba(0, 0, 0, 0.5);*/
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.cta-section.home {
  background: url("../img/home/ready-to-join.png") no-repeat center center;
}
.cta-section.program-details {
  background: url("../img/program-details/ready-to-experience-luxury.png") no-repeat center center;
}
.cta-section.the-hotel {
  background: url("../img/the-hotel/embera-village-cta-bg.png") no-repeat center center;
}
.cta-section.tours {
  background: url("../img/tours/embera-village-cta-bg.png") no-repeat center center;
}
.cta-section.kosher-fest {
  background: url("../img/kosher-fest/kosher-fest-cta-bg.png") no-repeat center center;
}
.cta-section.gallery {
  background: url("../img/gallery/gallery-cta-bg.png") no-repeat center center;
}
.cta-section.about-us {
  background: url("../img/about-us/about-us-cta-bg.png") no-repeat center center;
}
.cta-section.contact {
  background: url("../img/contact/contact-cta-banner.png") no-repeat center center;
}
/************************************
Program Details
***********************************/
.tabs {
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.tabs .nav-scroll {
  overflow-x: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.tabs .nav-scroll::-webkit-scrollbar {
  display: none;
}

.tabs .nav-link {
  color: var(--black);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  border-radius: 4px;
  transition: color 0.3s;
}

.tabs .nav-link:hover,
.tabs .nav-link.active {
  color: var(--primary-color);
}

.tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}
.package-inclusion ul {
  padding: 0px;
}
.package-inclusion ul li {
  padding: 8px 0px;
}
.itinerary-wrapper {
  background: url("../img/program-details/itinerary-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
	background-position-y: -320px;
}
.itinerary-wrapper img, .itinerary-wrapper h6 {
  padding-bottom: 10px;
}
.itinerary-wrapper .date {
  margin-bottom: 35px !important;
}
.itinerary-details {
  margin-top: 35px;
}
.timeline-container {
  position: relative;
}
.timeline {
  padding-top: 130px;
  gap: 2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.timeline-item {
  width: 130px;
  flex-shrink: 0;
  position: relative;
}
.timeline-connector {
  height: 1px;
  position: relative;
  width: 100%;
  top: 293px;
  border: 1px dashed var(--bg-light-blue);
}
.timeline-dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
@media (max-width: 768px) {
	.itinerary-wrapper {
	background-position-y: -50px;
		background-size: cover;
		background-repeat: repeat;
}
  .timeline {
    flex-direction: column;
    position: relative;
    padding-left: 2rem;
	  padding-top: 60px !important;
  }
  .timeline-item br {
    display: none;
  }
  .timeline-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .timeline-connector {
    position: absolute;
    top: 0;
    left: 32px;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, var(--primary-color), var(--primary-color) 5px, transparent 5px, transparent 12px);
    z-index: 0;
  }
  .timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 240px !important;
  }
  .timeline-item img {
    width: 48px;
    height: auto;
    margin-bottom: 0.75rem !important;
    margin: auto;
  }
  .timeline-item h6 {
    margin-bottom: 0.25rem;
  }
  .timeline-item .date {
    margin-bottom: 0.5rem !important;
  }
  .timeline-dot {
    position: absolute;
    top: 18px;
    left: -7px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 2;
  }
  .itinerary-details {
    margin-top: 0rem;
  }
  .itinerary-details p {
    margin-bottom: 0.75rem;
  }
}
/************************************
The Hotel
************************************/
.what-our-guest-says {
  background: url("../img/the-hotel/what-our-guest-says-bg.png");
  background-size: cover;
  display: flex;
  align-items: center;
}
/************************************
Kosher Fest
************************************/
.tailored-for-your-comfort-wrapper {
  background: url("../img/common/texture-pattern.svg") !important;
  background-size: cover !important;
  height: auto;
}
/************************************
About Us
************************************/
.booking-details {
  background: url("../img/about-us/booking-details-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.glass-card {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
/************************************
Contact Us
************************************/
.reach-us-section {
  background: url("../img/contact/reach-us-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
/*************************************
  Cards
*************************************/
.card {
  border-radius: var(--border-radius);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Highlight for Best Value quote card */
.quote-card-best {
  border: 2.5px solid var(--primary-color, #d80a7d) !important;
  box-shadow: 0 6px 32px rgba(216,10,125,0.12);
  background: #fff0f7;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, border 0.2s;
}
/* More visible border for all quote cards */
.card.quote-card {
  border: 2px solid #d1d5db !important; /* subtle gray border */
  transition: border-color 0.2s;
}

/* Best value card: bold pink border and light background */
.card.quote-card-best {
  border: 2.5px solid #e91e63 !important;
  background: #fff0fa;
}
/*************************************
  Footer
*************************************/
footer {
  font-size: 0.9rem;
  padding: 2rem 0;
  background: var(--bg-dark-blue);
}
footer a {
  color: var(--white);
}
footer a:hover {
  opacity: 0.8;
}
.footer .footer-brand img {
  height: 44px;
  margin-bottom: 28px;
}
/*************************************
  Media Queries
*************************************/
@media (max-width: 768px) {
  section h2 {
    font-size: 1.5rem;
  }
  .navbar .btn {
    margin-top: 1rem;
  }
}
.filter-white {
  filter: brightness(0) invert(1);
}

.room-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  display: inline-block;
}
#quote-stepper {
  scroll-margin-top: 110px;
}

#results {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*************************************
  Room Types Section
*************************************/
.room-types-section {
  background: linear-gradient(135deg, var(--bg-light-blue) 0%, #ffffff 100%);
}

.room-tabs .nav-pills {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 10, 125, 0.1);
}

.room-tabs .nav-link {
  border-radius: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
  transition: all var(--transition-speed);
  background: transparent;
}

.room-tabs .nav-link.active::after, .room-tabs .nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 0px;
  background: transparent;
}

.room-tabs .nav-link:hover {
  background: rgba(216, 10, 125, 0.1);
  color: var(--primary-color);
}

.room-tabs .nav-link.active {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(216, 10, 125, 0.3);
}

.room-gallery .carousel {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.room-gallery .carousel-control-prev,
.room-gallery .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.room-gallery .carousel-control-prev {
  left: 20px;
}

.room-gallery .carousel-control-next {
  right: 20px;
}

.room-gallery .carousel-control-prev-icon,
.room-gallery .carousel-control-next-icon {
  filter: invert(1);
  width: 20px;
  height: 20px;
}

.room-details {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 10, 125, 0.1);
}

.amenities-grid .amenity-item {
  padding: 0.75rem;
  background: rgba(216, 10, 125, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(216, 10, 125, 0.1);
  transition: all var(--transition-speed);
}

.amenities-grid .amenity-item:hover {
  background: rgba(216, 10, 125, 0.1);
  transform: translateY(-2px);
}

.amenities-grid .amenity-item i {
  font-size: 1.2rem;
}

.features-list ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list ul li:last-child {
  border-bottom: none;
}

.features-list ul li i {
  font-size: 1.1rem;
}

.room-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.room-actions .btn {
  font-weight: 600;
  transition: all var(--transition-speed);
}

.room-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .room-tabs .nav-pills {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .room-tabs .nav-link {
    width: 100%;
    text-align: center;
  }
  
  .room-details {
    padding: 1.5rem;
    margin-top: 1rem;
  }
  
  .amenities-grid .row {
    margin: 0;
  }
  
  .amenities-grid .col-6 {
    padding: 0.25rem;
  }
  
  .room-actions {
    text-align: center;
  }
  
  .room-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .room-actions .btn:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .room-gallery .carousel-control-prev,
  .room-gallery .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .room-gallery .carousel-control-prev {
    left: 10px;
  }
  
  .room-gallery .carousel-control-next {
    right: 10px;
  }
}
