.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffb6c1, #d4af37);
  opacity: 0.1;
  filter: blur(40px);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
}

.section-header {
  position: relative;
  display: inline-block;
}

.section-header::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffb6c1, #d4af37);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-card {
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

/* Hero Slideshow Styles */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-dot.active {
  background-color: #d4af37;
  transform: scale(1.2);
}

/* Add a subtle zoom effect to the background images */
.hero-slide {
  transform: scale(1.1);
  transition: opacity 1s ease-in-out, transform 8s ease-in-out;
}

.hero-slide.active {
  transform: scale(1);
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 182, 193, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-dot:hover,
.nav-dot.active {
  background-color: #ffb6c1;
  transform: scale(1.2);
}

/* Decorative Elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffb6c1, #d4af37);
  opacity: 0.1;
  filter: blur(40px);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
}

/* Enhanced Card Styles */
.enhanced-card {
  position: relative;
  overflow: hidden;
}

.enhanced-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 182, 193, 0.1),
    rgba(212, 175, 55, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enhanced-card:hover::before {
  opacity: 1;
}

/* Animated Underline */
.animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #fc8eac;
  transition: width 0.3s ease;
}

.animated-underline:hover::after {
  width: 100%;
}

/* Enhanced Section Headers */
.section-header {
  position: relative;
  display: inline-block;
}

.section-header::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffb6c1, #d4af37);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
