@import url(./base/_reset.css);
@import url(./base/_variables.css);
@import url(./icons.css);
@import url(./layout/_header.css);
@import url(./layout/_footer.css);
/* ========== Header ========== */
nav {
  user-select: none;
}
a {
  text-decoration: none;
  color: currentColor;
}
a:hover {
  color: currentColor;
}
.bg-light {
  background-color: #f4eee9 !important;
}

.section-title {
  font-size: 44px;
  font-family: cursive;
  text-align: center;
}
.section-subtitle {
  font-size: 20px;
  font-family: cursive;
  text-transform: uppercase;
  color: var(--color-primary);
}
@media (min-width: 1200px) {
  .container-fixed-xl {
    max-width: 1140px;
  }
}
.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* Swiper */
.swiper {
  width: 100%;
  position: relative;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
/*  */
.line-clamp-2,
.line-clamp-3,
.line-clamp-4,
.line-clamp-5,
.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
img {
  width: 100%;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  -webkit-line-clamp: 4;
}
.line-clamp-5 {
  -webkit-line-clamp: 5;
}
.line-clamp-6 {
  -webkit-line-clamp: 6;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.dark-theme {
  background-color: #000;
  color: #fff;
}

/*  */
.card-img {
  width: 100%;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-title {
  font-size: 28px;
}
.card-text {
}

.hover-scale {
  overflow: hidden;
  border-radius: 0;
}

.hover-scale img {
  transition: transform 0.3s ease-in-out;
}

.hover-scale:hover img {
  transform: scale(1.08);
}

/*  */

.btn {
  padding: 8px 16px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
  width: max-content;
}

.btn:active,
.btn:focus {
  border: none;
  box-shadow: none !important;
  outline: none;
}
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 999px;
}
.btn-primary:hover {
  background-color: var(--color-secondary);
}
.btn-primary:active,
.btn-primary:focus {
  background-color: var(--color-secondary);
}

.btn-outline-dark {
  border: 1px solid var(--color-text);
  border-radius: 999px;
}
.btn-outline-dark:hover {
  background-color: var(--color-text);
  color: var(--color-background);
}

.btn-link {
  color: currentColor;
  text-decoration: underline;
  font-style: italic;
  transition: color 0.3s ease;
}
.btn-link:hover {
  color: var(--color-primary);
}

/* Date */
.date-info {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background-color: transparent;
  padding: 6px 12px;
  text-align: center;
}
.date-info span {
  display: block;
}
.date-info .month {
  font-size: 12px;
  text-transform: uppercase;
}
.date-info .day {
  font-size: 24px;
}

/*  */
.floating-box {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  width: 80%;
  background-color: #fff;
  display: flex;
  padding: 8px 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/*  */
.dark-theme .swiper-pagination-bullet {
  background-color: #fff;
}
.dark-theme .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*  */
.banner-section {
}
.banner-wrapper {
  position: relative;
  height: 495px;
}
.banner-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
.banner-content h5 {
  font-size: 18px;
  text-transform: uppercase;
}
.banner-content h2 {
  font-size: 60px;
  font-family: cursive;
}

.aspect-ratio-responsive {
  aspect-ratio: 4 / 3;
}
.aspect-ratio-responsive img {
  object-fit: cover;
  height: 100%;
}

@media (max-width: 768px) {
  .banner-content h2 {
    font-size: 32px;
  }
  .aspect-ratio-responsive {
    aspect-ratio: 16 / 9;
  }
}

/*  */
.box-price strong,
.box-price span {
  font-size: 24px;
}
.box-price strong {
  color: var(--color-primary);
}
.box-price span {
  color: var(--color-text);
}
/*  */
.line {
  width: 100%;
  max-width: 10rem;
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
}
.promo-info-box {
  position: sticky;
  top: 100px;
  color: var(--color-primary);
  background-color: #000;
}

.gallery-slider .button-prev,
.gallery-slider .button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  border-color: currentColor;
  z-index: 5;
  line-height: 1;
  transition: transform 0.2s ease;
}

.gallery-slider .button-prev:hover,
.gallery-slider .button-next:hover {
  transform: translateY(-50%) scale(0.85);
}

.gallery-slider .button-prev {
  left: 16px;
}
.gallery-slider .button-next {
  right: 16px;
}

.gallery-slider .swiper-pagination {
  bottom: 5% !important;
}
.gallery-slider .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  width: 14px;
  height: 14px;
}

.gallery-slider .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*  */
.lightbox-slider {
  display: none !important;
  position: fixed;
  inset: 0;
  display: flex;
  align-content: center;
  z-index: 9999;
}
.lightbox-slider.active {
  display: block !important;
}
.lightbox-slider .overlay {
  background-color: rgba(0, 0, 0, 0.7);
}
.lightbox-slider .lightbox-swiper {
  height: 100%;
  z-index: 99;
}
.lightbox-swiper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-swiper .swiper-slide img {
  max-width: 1000px;
}
.lightbox-swiper .swiper-pagination {
  top: 12px;
  left: 12px;
  bottom: auto;
  color: white;
  z-index: 999;
  text-align: left;
  font-size: 12px;
  width: max-content;
}
.lightbox-swiper .swiper-pagination span {
  font-size: 14px;
}
.icons-toolbar {
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-flex;
  line-height: 1;
  z-index: 999;
}
.icons-toolbar i {
  margin-left: 16px;
  color: var(--dark-text-muted);
  cursor: pointer;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: red;
  z-index: 999;
}
@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.lightbox-swiper .button-prev,
.lightbox-swiper .button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-text-muted);
  z-index: 999;
  padding: 8px;
  line-height: 1;
}
.lightbox-swiper .button-next {
  right: 18px;

  background-color: #272727;
}
.lightbox-swiper .button-prev {
  left: 18px;
  background-color: #272727;
}

.lightbox-swiper .button-prev:hover,
.lightbox-swiper .button-next:hover {
  color: white;
}
.auto-hide {
  transition: opacity 0.3s ease;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

/*  */
.content-nav {
}
.content-nav .content-item {
}
.content-nav .title {
  padding: 8px 16px;
  position: relative;
  margin-bottom: 4px;
}

.content-nav .title::after {
  content: "\276E";
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.3s ease 0s;
  font-weight: 300;
  color: #fff;
  background: #343a40;
}
.content-nav .title.active::after {
  transform: translateY(-50%) rotate(90deg);
}
.content-nav .content-item .title.active + .content {
  display: block;
}

.content-nav .content {
  display: none;
  padding: 24px;
  margin-bottom: 4px;
}
.content-nav .content-item ul {
  list-style: disc;
  margin-left: 18px;
}
.content-nav .item,
.content-nav strong {
  font-size: 14px;
}
.content-nav .subtitle {
  font-weight: 500;
}
.content-nav .content-item .subtitle:not(:first-child) {
  margin-top: 16px;
}

/*  */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Georgia", serif;
}

.form-row {
  margin-bottom: 24px;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ccc;
  font-size: 16px;
  color: #333;
  font-family: "Georgia", serif;
  background: white;
  width: 100%;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: #000;
}

.form-row textarea {
  height: 150px;
  resize: vertical;
}

.form-row button {
  padding: 12px 24px;
  background-color: #2d2723;
  color: white;
  border: none;
  font-size: 18px;
  font-family: "Georgia", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

.form-row button:hover {
  background-color: #1f1b19;
}

/*  */
.slide-toggle {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
}

.slide-toggle.is-transitioning {
  visibility: visible;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.slide-toggle.is-expanded {
  visibility: visible;
  opacity: 1;
}
