/* Love Journey Section Styles */
.love-journey-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--bg-light);
}

.love-journey-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50,15 Q65,0 80,15 T100,50 T80,85 T50,100 T20,85 T0,50 T20,15 T50,0" fill="none" stroke="rgba(26, 94, 99, 0.05)" stroke-width="1"/></svg>');
  background-size: 300px 300px;
  opacity: 0.5;
  z-index: -1;
}

.love-journey-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.love-journey-content {
  position: relative;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  padding: 60px;
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
  transition: all var(--transition-medium);
}

.love-journey-content.in-view {
  transform: translateY(0);
  opacity: 1;
}

.love-journey-content::before,
.love-journey-content::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.1;
}

.love-journey-content::before {
  top: 20px;
  left: 20px;
  border-top: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
  border-radius: 20px 0 0 0;
}

.love-journey-content::after {
  bottom: 20px;
  right: 20px;
  border-bottom: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
  border-radius: 0 0 20px 0;
}

.love-journey-title {
  font-family: var(--font-script);
  font-size: 4.5rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.3;
}

.love-journey-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.love-journey-description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
}

.love-journey-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.floating-heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z" fill="rgba(218, 165, 32, 0.2)"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  animation: float-heart 15s linear infinite;
}

.heart-1 { top: 10%; left: 10%; animation-delay: 0s; }
.heart-2 { top: 20%; right: 20%; animation-delay: 2s; }
.heart-3 { top: 70%; left: 15%; animation-delay: 5s; }
.heart-4 { top: 40%; right: 10%; animation-delay: 7s; }
.heart-5 { top: 65%; right: 15%; animation-delay: 11s; }

@keyframes float-heart {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) rotate(90deg) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-60px) rotate(180deg) scale(1);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-90px) rotate(270deg) scale(0.8);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-120px) rotate(360deg) scale(0.6);
    opacity: 0;
  }
}

.love-journey-years {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}

.love-journey-years::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
  z-index: 0;
}

.year-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
  position: relative;
  z-index: 1;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.6rem;
  box-shadow: var(--shadow-small);
  transition: all var(--transition-fast);
}

.year-marker:hover {
  transform: scale(1.1);
  background-color: var(--secondary-light);
  color: var(--text-dark);
}

/* Media Queries */
@media (max-width: 992px) {
  .love-journey-section {
    padding: 100px 0;
  }
  
  .love-journey-content {
    padding: 50px 40px;
  }
  
  .love-journey-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .love-journey-section {
    padding: 80px 0;
  }
  
  .love-journey-content {
    padding: 40px 30px;
  }
  
  .love-journey-title {
    font-size: 3.5rem;
  }
  
  .love-journey-description {
    font-size: 1.6rem;
  }
  
  .year-marker {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .love-journey-section {
    padding: 60px 0;
  }
  
  .love-journey-content {
    padding: 30px 20px;
  }
  
  .love-journey-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  
  .love-journey-description {
    font-size: 1.5rem;
  }
  
  .year-marker {
    width: 40px;
    height: 40px;
    margin: 0 8px;
    font-size: 1.2rem;
  }
  
  .love-journey-years {
    flex-wrap: wrap;
    gap: 15px;
  }
}