/* Bootstrap & Tailwind Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

/* Global Colors and Themes */
:root {
  --primary-pink: #ff69b4;
  --dark-pink: #bf0040;
  --light-pink: #ffe4e9;
  --hover-pink: #ff85c2;
}

/* Pink Theme */
.pink-theme {
  background-color: var(--primary-pink);
  color: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


/* Buttons */
.btn-custom, .btn-pink {
  background-color: var(--primary-pink);
  color: white;
  transition: background-color 0.3s ease;
}

.btn-custom:hover, .btn-pink:hover {
  background-color: var(--hover-pink);
}

/* Icon Boxes */
.icon-box {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-box i {
  font-size: 3rem;
  color: var(--dark-pink);
  margin-bottom: 1rem;
}

.icon-box h4 {
  font-weight: bold;
  margin: 1rem 0;
  color: #000;
}

.icon-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* About Section */
.about-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.about-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #000;
}

.about-title span {
  color: var(--dark-pink);
}

/* Promotions Section */
.promotions-section {
  background-color: white;
  padding: 4rem 2rem;
}

.promotion-card {
  background: #f9f9f9;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.promotion-card h5 {
  color: var(--dark-pink);
  font-size: 1.5rem;
  font-weight: bold;
}

.promotion-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.promotion-card .btn {
  background-color: var(--dark-pink);
  color: white;
  transition: background-color 0.3s ease;
}

.promotion-card .btn:hover {
  background-color: #990032;
}

/* Gallery *//* Slideshow Container */
.slideshow-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #f8f9fa;
  border: 3px solid #ffc0cb; /* Pink border */
  border-radius: 10px;
}

.slideshow {
  display: flex;
  animation: slide 10s linear infinite;
}

.slide {
  flex: 0 0 auto;
  margin-right: 10px;
}

.fixed-size {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border: 5px solid #ff69b4; /* Pink border */
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixed-size:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Keyframes for Horizontal Slideshow */
@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Zoom-in/Zoom-out Effect */
.zoomable {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.zoomable.zoomed {
  transform: scale(2);
  z-index: 1000;
  border: 5px solid #ff1493; /* Darker pink border */
}

/* Modal Styling */
.modal-body img {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.modal-body img:hover {
  transform: scale(1.1);
}

.border-pink {
  border: 3px solid #ff69b4;
}

.bg-white {
  background-color: #fff;
}

.text-center button {
  background-color: #ff69b4;
  border-color: #ff69b4;
}

.text-center button:hover {
  background-color: #ff1493;
  border-color: #ff1493;
}


/* Contact Section */
.bg-pink-light {
  background-color: var(--light-pink);
}

.text-pink {
  color: var(--primary-pink);
}

.form-label {
  font-weight: bold;
}

.btn-success {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Cards */
.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.card-text {
  font-size: 1rem;
  color: #555;
}

    /* Mobile menu links */
    .mobile-link {
      font-size: 1.5rem;
      font-weight: 600;
      color: #ffffff;
      transition: color 0.3s ease-in-out;
  }

  .mobile-link:hover {
      color: #f50bbb;
  }

  /* Hamburger button */
  #menuToggle {
      cursor: pointer;
  }

  /* Mobile menu animations */
  #mobileMenu {
      transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  /* Text at the bottom of the slide */
.carousel-caption.custom-caption-bottom {
  position: absolute;
  bottom: 5%; /* Position the text near the bottom */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  width: 80%;
  max-width: 1000px;
}

/* Styling the heading */
.carousel-caption.custom-caption-bottom h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}

/* Styling the paragraph */
.carousel-caption.custom-caption-bottom p {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}

/* Button styling */
.carousel-caption.custom-caption-bottom .btn-custom {
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  background: #ff4d6d;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.carousel-caption.custom-caption-bottom .btn-custom:hover {
  background: #e63950;
}

