p {
   font-family: 'Inter', sans-serif;
   font-size: 1.25rem;
   color: #343434;
}
/* Content inside .mobile-container will flow like a mobile app */
.background-image {
  background-image: url('images/pre-wedding/AO-cover-2.jpg');
  background-size: cover;
  background-position: top left 60%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Ensure overlay is correctly positioned */
}

@media (max-width: 767px) {
  .background-image {
    min-height: 50vh;
    /* All other properties remain the same */
  }
}

.image-container {
  position: relative;
  display: inline-block; /* Or block depending on your layout */
}

.image-container img {
  display: block; /* Ensures the image takes up the full container */
}

.highlight-gradient {
    background: linear-gradient(to left,  #ff6a88, #d76b91); /* Gradient effect */
    -webkit-background-clip: text; /* Clipping background to text */
    color: transparent; /* Make text transparent to show gradient */
}

.contact-us-gradient-background {
  background: linear-gradient(to right, #396A65, #2f8d72 45%);
}

.big-day-text
 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.big-day-text::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0.5rem;
  background-color: #2f8d72;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.9s ease-out;
}

.big-day-text.animate-underline::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.fs-8 {
  font-size: 8rem;
}

.container-fluid {
  position: relative;
  z-index: 2; /* Bring the content above the overlay */
}

.ovo-font {
  font-family: 'Ovo', serif;
}

.ovo-font-700 {
  font-family: 'Ovo', serif;
  font-weight: 700 !important;
}

.ovo-font-900 {
  font-family: 'Ovo', serif;
  font-weight: 800 !important;
}


.bg-cream {
  background-color: #fffdd0;
}

.bg-peach {
  background-color: #eae0d5;
}

.bg-ghost-white {
  background-color: #f9f9f9;
}

.bg-te-papa-green {
  background-color: #254441;
}

.bg-myrtle-green {
  background-color: #396A65;
}

.bg-licorice {
  background-color: #120309;
}

.bg-viridian {
  background-color: #2f8d72;
}

.bg-purple {
  background-color: #6f2da8;
}

.text-penn-red {
  color: #343434 ;
}

.text-te-papa-green {
  color: #254441;
}

.text-indian-red {
  color: #d67070;
}

.text-white-smoke {
  color: #f4f4f4;
}

.charm-light {
  font-family: "Charm", serif;
  font-weight: 300;
  font-style: normal;
}

.charm-bold {
  font-family: "Charm", serif;
  font-weight: 700;
  font-style: normal;
}

.quintessential-font {
  font-family: "Quintessential", serif;
}

.kalam-font {
  font-family: "Kalam", serif;
}

.playfair-display-font {
  font-family: "Playfair Display", serif;
}

.scrolling-text {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  will-change: transform;
  backface-visibility: hidden;
}

.scrolling-text .scrolling-text-content {
  color: #fff;
  font-size: 60px;
  white-space: nowrap;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  line-height: 1em;
  margin: 50px 0;
}

.great-vibes-font {
  font-family: "Great Vibes", serif;
}

.playfair-display-font {
  font-family: "Playfair Display", serif;
}

.circle {
  border-radius: 50%;
  width: 50%;
  height: 50%;
}

.carousel-container-0 {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #254441;
}

.carousel-track-0 {
  display: flex;
  transition: none; /* We'll use JS for smooth scroll */
  will-change: transform;
}

.carousel-item-0 {
  flex: 0 0 auto;
  width: 20%;
  padding: 0 10px;
  box-sizing: border-box;
}

.carousel-item-0 img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item-0 {
      width: 33.33%; /* Show 3 images on mobile */
  }
}

.breakdown-day-effect {
  white-space: normal;
  display: inline-block;
}

.breakdown-day-effect::after {
  content: '';
  animation: blink 0.7s steps(1) infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.fade-line {
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.2s ease;
}

.quote-section-mobile {
  background: url('/assets/texture/soft-paper.jpg') no-repeat center center;
  background-size: cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-size: 1.25rem;
}

#quote-section {
  height: 80vh;
}

.image-wrapper {
  position: relative;
}

.image-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.5); /* Adjust dimming level */
  background: linear-gradient(to top left,  #0A0A0A, #00000080); /* Gradient effect */


  z-index: 1;
}

.quote-overlay {
  z-index: 2;
  font-size: 1.2rem;
  text-shadow: none;
  background: none;
}

#quote-section.visible .quote-overlay {
  opacity: 1;
  transform: translateY(0);
}

.music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s;
}

.sound-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #317873;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    color: #000; /* Or your default text color */
  }
  50% {
    transform: scale(1.05);
    color: #ff6347; /* A slightly brighter, eye-catching color */
  }
  100% {
    transform: scale(1);
    color: #000;
  }
}

.wisp-effect {
  position: relative;
  display: inline-block;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Initial subtle glow */
  animation: wisp-animation 4s ease-in-out infinite alternate;
}

@keyframes wisp-animation {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(200, 200, 255, 0.2);
    transform: scale(1) translateY(0);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(200, 200, 255, 0.6);
    transform: scale(1.01) translateY(-2px); /* Slight lift and scale */
  }
  100% {
    text-shadow: 0 0 5px red, 0 0 10px rgba(200, 200, 255, 0.2);
    transform: scale(1) translateY(0);
  }
}