/**
* Template Name: LuxuryHotel
* Template URL: https://bootstrapmade.com/luxury-hotel-bootstrap-template/
* Updated: Jun 30 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";


/*--------------------------------------------------------------
Delete Above

# Control Banner Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Rooms Showcase Section
--------------------------------------------------------------*/
.service-img-card-grid .room-showcase-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.service-img-card-grid .room-showcase-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-img-card-grid .room-showcase-card.featured .room-hero-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.service-img-card-grid .room-showcase-card.featured .room-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-img-card-grid .room-showcase-card.featured .room-hero-image .room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.service-img-card-grid .room-showcase-card.featured .room-hero-image .room-icons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.service-img-card-grid .room-showcase-card.featured .room-hero-image .room-icons .icon-item {
  background-color:  var(--default-color);
  color: var(--surface-color);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.service-img-card-grid .room-showcase-card.featured .room-hero-image:hover img {
  transform: scale(1.06);
}

.service-img-card-grid .room-showcase-card.featured .room-info {
  padding: 30px;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-header h3 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-header .rating {
  color: #ffc107;
  font-size: 0.9rem;
  white-space: nowrap;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-excerpt {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-amenities {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-amenities i {
  color: var(--accent-color);
  font-size: 1.2rem;
  padding: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-amenities i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-bottom .pricing-info .price-tag {
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 800;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-bottom .pricing-info .price-label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  margin-left: 5px;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-bottom .explore-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-img-card-grid .room-showcase-card.featured .room-info .room-bottom .explore-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateX(5px);
}

.service-img-card-grid .room-showcase-card.compact {
  display: flex;
  align-items: stretch;
}

.service-img-card-grid .room-showcase-card.compact .compact-image {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}

.service-img-card-grid .room-showcase-card.compact .compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-img-card-grid .room-showcase-card.compact .compact-image .quick-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-img-card-grid .room-showcase-card.compact .compact-image:hover .quick-view {
  opacity: 1;
}

.service-img-card-grid .room-showcase-card.compact .compact-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-img-card-grid .room-showcase-card.compact .compact-content h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-img-card-grid .room-showcase-card.compact .compact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.service-img-card-grid .room-showcase-card.compact .compact-content .compact-features {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.service-img-card-grid .room-showcase-card.compact .compact-content .compact-features span {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-img-card-grid .room-showcase-card.compact .compact-content .compact-features span i {
  color: var(--accent-color);
}

.service-img-card-grid .room-showcase-card.compact .compact-content .compact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-img-card-grid .room-showcase-card.compact .compact-content .compact-bottom .compact-price {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.service-img-card-grid .room-showcase-card.compact .compact-content .compact-bottom .compact-price small {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.7rem;
  font-weight: 400;
}

.service-img-card-grid .room-showcase-card.compact .compact-content .compact-bottom .quick-book {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 6px 16px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-img-card-grid .room-showcase-card.compact .compact-content .compact-bottom .quick-book:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.service-img-card-grid .room-showcase-card.mini .mini-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.service-img-card-grid .room-showcase-card.mini .mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-img-card-grid .room-showcase-card.mini .mini-image .mini-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 144, 231, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-img-card-grid .room-showcase-card.mini .mini-image .mini-overlay a {
  color: var(--contrast-color);
  font-size: 1.5rem;
  text-decoration: none;
}

.service-img-card-grid .room-showcase-card.mini .mini-image .mini-overlay a:hover {
  color: var(--contrast-color);
}

.service-img-card-grid .room-showcase-card.mini .mini-image:hover .mini-overlay {
  opacity: 1;
}

.service-img-card-grid .room-showcase-card.mini .mini-image:hover img {
  transform: scale(1.05);
}

.service-img-card-grid .room-showcase-card.mini .mini-content {
  padding: 20px 15px;
}

.service-img-card-grid .room-showcase-card.mini .mini-content h5 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-img-card-grid .room-showcase-card.mini .mini-content .mini-price {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-img-card-grid .room-showcase-card.mini .mini-content .mini-price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.75rem;
  font-weight: 400;
}

.service-img-card-grid .room-showcase-card.mini .mini-content .mini-amenities {
  display: flex;
  gap: 8px;
}

.service-img-card-grid .room-showcase-card.mini .mini-content .mini-amenities i {
  color: var(--accent-color);
  font-size: 1rem;
}

.service-img-card-grid .discover-all-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.service-img-card-grid .discover-all-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.service-img-card-grid .discover-all-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}

.service-img-card-grid .discover-all-btn:hover:before {
  left: 100%;
}

@media (max-width: 992px) {
  .service-img-card-grid .room-showcase-card.compact {
    flex-direction: column;
  }

  .service-img-card-grid .room-showcase-card.compact .compact-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .service-img-card-grid .room-showcase-card.featured .room-info {
    padding: 20px;
  }

  .service-img-card-grid .room-showcase-card.featured .room-info .room-header {
    flex-direction: column;
    gap: 10px;
  }

  .service-img-card-grid .room-showcase-card.featured .room-info .room-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .service-img-card-grid .room-showcase-card.featured .room-info .room-amenities {
    justify-content: center;
  }

  .service-img-card-grid .room-showcase-card.compact .compact-content .compact-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Amenities Cards Section
--------------------------------------------------------------*/
.amenities-cards .amenity-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 2%));
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.amenities-cards .amenity-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amenities-cards .amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.amenities-cards .amenity-card:hover:before {
  opacity: 1;
}

.amenities-cards .amenity-card:hover .amenity-icon i {
  transform: scale(1.1);
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}

.amenities-cards .amenity-card:hover .feature-tag {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.amenities-cards .card-header {
  padding: 40px 35px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.amenities-cards .card-header h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
  flex: 1;
}

.amenities-cards .amenity-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amenities-cards .amenity-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.amenities-cards .amenity-content {
  padding: 0 35px 35px;
}

.amenities-cards .amenity-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.amenities-cards .amenity-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.amenities-cards .feature-tag {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.amenities-cards .amenities-cta {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.amenities-cards .amenities-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.amenities-cards .amenities-cta .cta-content h5 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities-cards .amenities-cta .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.amenities-cards .btn-explore {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.amenities-cards .btn-explore:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), black 10%), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .amenities-cards .card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 35px 30px 20px;
  }

  .amenities-cards .card-header h4 {
    font-size: 22px;
  }

  .amenities-cards .amenity-content {
    padding: 0 30px 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .amenities-cards .amenity-icon {
    width: 60px;
    height: 60px;
  }

  .amenities-cards .amenity-icon i {
    font-size: 28px;
  }

  .amenities-cards .card-header {
    padding: 30px 25px 15px;
  }

  .amenities-cards .card-header h4 {
    font-size: 20px;
  }

  .amenities-cards .amenity-content {
    padding: 0 25px 25px;
  }

  .amenities-cards .amenities-cta {
    padding: 40px 25px;
  }

  .amenities-cards .amenities-cta .cta-content h5 {
    font-size: 24px;
  }

  .amenities-cards .amenities-cta .cta-content p {
    font-size: 15px;
  }

  .amenities-cards .btn-explore {
    padding: 14px 32px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Offer Cards Section
--------------------------------------------------------------*/
.offer-cards .offer-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-cards .offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.offer-cards .offer-card.featured {
  border: 2px solid var(--accent-color);
}

.offer-cards .offer-card.featured .offer-badge .discount {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
}

.offer-cards .offer-card.featured .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.offer-cards .offer-card.featured .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
}

.offer-cards .offer-card .offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.offer-cards .offer-card .offer-badge .discount {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-cards .offer-card .offer-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.offer-cards .offer-card .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-cards .offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-cards .offer-card .offer-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-cards .offer-card .offer-content h3 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.offer-cards .offer-card .offer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.offer-cards .offer-card .offer-content .offer-details {
  margin-bottom: 20px;
}

.offer-cards .offer-card .offer-content .offer-details .price-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.offer-cards .offer-card .offer-content .offer-details .price-info .original-price {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-size: 14px;
}

.offer-cards .offer-card .offer-content .offer-details .price-info .offer-price {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
}

.offer-cards .offer-card .offer-content .offer-details .price-info .per-night {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
}

.offer-cards .offer-card .offer-content .offer-details .validity {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
}

.offer-cards .offer-card .offer-content .offer-details .validity i {
  color: var(--accent-color);
}

.offer-cards .offer-card .offer-content .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

.offer-cards .offer-card .offer-content .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .offer-cards .offer-card .offer-content {
    padding: 20px;
  }
}

.offer-cards .offer-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 30%) 100%);
  color: var(--contrast-color);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.offer-cards .offer-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.offer-cards .offer-banner .banner-content {
  position: relative;
  z-index: 2;
}

.offer-cards .offer-banner .banner-content h2 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.offer-cards .offer-banner .banner-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.offer-cards .offer-banner .banner-action {
  position: relative;
  z-index: 2;
  text-align: center;
}

.offer-cards .offer-banner .banner-action .countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.offer-cards .offer-banner .banner-action .countdown div {
  text-align: center;
}

.offer-cards .offer-banner .banner-action .countdown div span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
}

.offer-cards .offer-banner .banner-action .countdown div label {
  font-size: 12px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.offer-cards .offer-banner .banner-action .btn-cta {
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.offer-cards .offer-banner .banner-action .btn-cta:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .offer-cards .offer-banner {
    text-align: center;
  }

  .offer-cards .offer-banner .banner-action {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .offer-cards .offer-banner {
    padding: 30px 20px;
  }

  .offer-cards .offer-banner .banner-content h2 {
    font-size: 24px;
  }

  .offer-cards .offer-banner .banner-action .countdown {
    gap: 15px;
  }

  .offer-cards .offer-banner .banner-action .countdown div span {
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Events Cards Section
--------------------------------------------------------------*/
.events-cards .event-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 300px;
}

.events-cards .event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.events-cards .event-card .event-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.events-cards .event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.events-cards .event-card .event-image .event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(54, 144, 231, 0.9), rgba(45, 70, 94, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}

.events-cards .event-card .event-image .event-overlay h4 {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.events-cards .event-card .event-image .event-overlay p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.2s;
}

.events-cards .event-card .event-image .event-overlay .event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  transform: translateY(20px) scale(0.8);
}

.events-cards .event-card .event-image .event-overlay .event-btn:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  transform: translateY(20px) scale(1.1);
}

.events-cards .event-card .event-image .event-overlay .event-btn i {
  transition: transform 0.3s ease;
}

.events-cards .event-card .event-image .event-overlay .event-btn:hover i {
  transform: translateX(3px);
}

.events-cards .event-card:hover .event-image img {
  transform: scale(1.1);
}

.events-cards .event-card:hover .event-image .event-overlay {
  opacity: 1;
}

.events-cards .event-card:hover .event-image .event-overlay h4,
.events-cards .event-card:hover .event-image .event-overlay p,
.events-cards .event-card:hover .event-image .event-overlay .event-btn {
  transform: translateY(0);
}

.events-cards .event-card:hover .event-image .event-overlay .event-btn {
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .events-cards .event-card {
    height: 250px;
  }

  .events-cards .event-card .event-image .event-overlay {
    padding: 20px;
  }

  .events-cards .event-card .event-image .event-overlay h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .events-cards .event-card .event-image .event-overlay p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .events-cards .event-card .event-image .event-overlay .event-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Location Cards Section
--------------------------------------------------------------*/
.location-cards .location-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px 0 color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.location-cards .location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px 0 color-mix(in srgb, var(--default-color), transparent 80%);
}

.location-cards .location-card:hover .location-image {
  transform: scale(1.05);
}

.location-cards .location-card:hover .explore-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.location-cards .location-card .location-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.location-cards .location-card .location-content {
  padding: 30px;
  position: relative;
}

.location-cards .location-card .location-content .location-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: -45px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--surface-color);
}

.location-cards .location-card .location-content .location-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.location-cards .location-card .location-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.location-cards .location-card .location-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.location-cards .location-card .location-content .nearby-places {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.location-cards .location-card .location-content .nearby-places li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.location-cards .location-card .location-content .nearby-places li i {
  color: var(--accent-color);
  margin-right: 8px;
}

.location-cards .location-card .location-content .explore-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.location-cards .location-card .location-content .explore-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .location-cards .location-card .location-content {
    padding: 20px;
  }

  .location-cards .location-card .location-content .location-icon {
    width: 50px;
    height: 50px;
    margin-top: -35px;
  }

  .location-cards .location-card .location-content .location-icon i {
    font-size: 20px;
  }

  .location-cards .location-card .location-content h4 {
    font-size: 18px;
  }

  .location-cards .location-card .location-content .nearby-places li {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers .product-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.best-sellers .product-card:hover {
  transform: translateY(-4px);
}

.best-sellers .product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.best-sellers .product-card:hover .hover-image {
  transform: scale(1);
  opacity: 1;
}

.best-sellers .product-card:hover .main-image {
  transform: scale(1.1);
  opacity: 0;
}

.best-sellers .product-image {
  position: relative;
  padding-top: 125%;
  background: color-mix(in srgb, var(--surface-color), transparent 97%);
  overflow: hidden;
}

.best-sellers .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.best-sellers .product-image .main-image {
  transform: scale(1);
  opacity: 1;
}

.best-sellers .product-image .hover-image {
  transform: scale(1.1);
  opacity: 0;
}

.best-sellers .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 75%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.best-sellers .product-actions {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.best-sellers .product-actions .action-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface-color);
  border: none;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateX(20px);
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.best-sellers .product-actions .action-btn:nth-child(2) {
  animation-delay: 0.1s;
}

.best-sellers .product-actions .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.best-sellers .product-actions .action-btn i {
  font-size: 1.25rem;
}

.best-sellers .product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}

.best-sellers .product-badge.new {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.best-sellers .product-badge.sale {
  background: #ffa007;
  color: var(--contrast-color);
}

.best-sellers .product-details {
  padding: 1.5rem;
  background: var(--surface-color);
}

.best-sellers .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
}

.best-sellers .product-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.best-sellers .product-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.best-sellers .product-title a:hover {
  color: var(--accent-color);
}

.best-sellers .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.best-sellers .product-price {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent-color);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.best-sellers .product-price .original-price {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
  font-weight: normal;
}

.best-sellers .product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--heading-color);
  font-weight: 500;
}

.best-sellers .product-rating i {
  color: #ffc107;
  margin-right: 0.25rem;
}

.best-sellers .product-rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  font-weight: normal;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .best-sellers .product-image {
    padding-top: 100%;
  }

  .best-sellers .product-details {
    padding: 1.25rem;
  }

  .best-sellers .product-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .best-sellers .product-price {
    font-size: 1rem;
  }

  .best-sellers .product-actions .action-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .best-sellers .product-actions .action-btn i {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--default-font);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.menu .tab-content .menu-item {
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--default-font);
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Services Alt Section
--------------------------------------------------------------*/
.services-alt {
  overflow: hidden;
}

.services-alt .section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 300;
  margin: 0;
}

.services-alt .service-item {
  height: 100%;
  transition: all 0.4s ease;
}

.services-alt .service-item .service-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 32px;
}

.services-alt .service-item .service-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.services-alt .service-item .service-content h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.4;
}

.services-alt .service-item .service-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.services-alt .service-item .service-content .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.3s ease;
}

.services-alt .service-item .service-content .service-link span {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.services-alt .service-item .service-content .service-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services-alt .service-item .service-content .service-link:hover {
  color: var(--accent-color);
}

.services-alt .service-item .service-content .service-link:hover span {
  border-bottom-color: var(--accent-color);
}

.services-alt .service-item .service-content .service-link:hover i {
  transform: translateX(4px);
}

.services-alt .service-item:hover .service-visual img {
  transform: scale(1.05);
}

.services-alt .cta-section {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
  padding: 64px 48px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-alt .cta-section h4 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services-alt .cta-section p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-alt .cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
}

.services-alt .cta-section .btn-primary i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services-alt .cta-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.services-alt .cta-section .btn-primary:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services-alt .cta-section {
    padding: 48px 32px;
  }

  .services-alt .cta-section h4 {
    font-size: 28px;
  }

  .services-alt .cta-section p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .services-alt .service-item .service-visual {
    margin-bottom: 24px;
  }

  .services-alt .service-item .service-visual img {
    height: 240px;
  }

  .services-alt .service-item .service-content h3 {
    font-size: 22px;
  }

  .services-alt .service-item .service-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}