* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Vollkorn", serif;
  /* background: linear-gradient(135deg, #fee0d2 0%, #fee0d2 100%); */
  background: #FFFFFB;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  width: 100%;
}

/* Logo container */
.logo-container {
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.logo-heart {
  width: 150px;
  height: 100px;
  margin: 0 auto 20px;
  position: relative;
}

.logo-heart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  animation: pulseFloat 3s ease-in-out infinite;
}

@keyframes pulseFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    opacity: 0.9;
  }
}

.logo-text {
  font-family: "Vollkorn", serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #183f6d;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  animation: gentleGlow 3s ease-in-out infinite;
}

@keyframes gentleGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(24, 63, 109, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(24, 63, 109, 0.5);
  }
}

.lova-logo {
  max-width: 300px;
  height: auto;
  /* margin: 0 auto; */
  display: block;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.85;
    filter: brightness(1.1);
  }
}

/* Main content */
.content {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(24, 63, 109, 0.15);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards,
    subtleBreathe 4s ease-in-out 1.6s infinite;
}
@media (max-width: 768px) {
  .content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .content img {
    width: 150px !important;
  }
  .content .church {
    max-width: 200px !important;
  }
  .content .content-left {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content img {
    width: 150px !important;
  }
  .content .church {
    width: 300px !important;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .content img {
    width: 200px !important;
  }
  .content .church {
    width: 400px !important;
  }
}

.content img {
  width: 400px;
  /* height: 400px; */
  object-fit: contain;
}
.content .church {
  width: 500px;
  /* height: 400px; */
  object-fit: contain;
}

.content-left {
text-align: left;
display: flex;
flex-direction: column;
align-items: start;
justify-content: start;
gap: 20px;
}

@keyframes subtleBreathe {
  0%,
  100% {
    box-shadow: 0 20px 60px rgba(24, 63, 109, 0.15);
  }
  50% {
    box-shadow: 0 25px 70px rgba(24, 63, 109, 0.2);
  }
}

.tagline {
  font-family: "Vollkorn", serif;
  font-size: 2rem;
  color: #183f6d;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: 400;
}

.tagline .brand {
  font-weight: 700;
  color: #183f6d;
  position: relative;
  display: inline-block;
}

.tagline .brand::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #fee0d2 0%, #183f6d 100%);
  border-radius: 2px;
}

.description {
  font-size: 1.3rem;
  color: #183f6d;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.6;
}

/* Decorative elements */
.decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #fee0d2 0%, #183f6d 100%);
  /* margin: 30px auto; */
  border-radius: 2px;
  animation: expandShrink 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.decorative-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shimmerLine 3s infinite;
}

@keyframes expandShrink {
  0%,
  100% {
    width: 80px;
  }
  50% {
    width: 120px;
  }
}

@keyframes shimmerLine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Floating hearts animation */
.floating-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  opacity: 0.1;
  animation: float 15s infinite;
}

.floating-heart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-heart:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  width: 30px;
  height: 30px;
}

.floating-heart:nth-child(2) {
  left: 30%;
  animation-delay: 3s;
  width: 40px;
  height: 40px;
}

.floating-heart:nth-child(3) {
  left: 50%;
  animation-delay: 6s;
  width: 25px;
  height: 25px;
}

.floating-heart:nth-child(4) {
  left: 70%;
  animation-delay: 9s;
  width: 35px;
  height: 35px;
}

.floating-heart:nth-child(5) {
  left: 90%;
  animation-delay: 12s;
  width: 30px;
  height: 30px;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background: transparent;
  color: #4b4b4b;
  padding: 0;
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-about {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: center;
  width: 100%;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
  font-weight: 300;
  margin: 0 auto;
  max-width: 100%;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-link:hover {
  color: #fee0d2;
  transform: translateX(5px);
}

.footer-link-icon {
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
}

.heart-icon {
  color: #fee0d2;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fee0d2;
}

/* Footer Top Styles */
.footer-top {
  background: #ffdac9;
  padding: 20px 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.footer-top-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 20px;
  flex-wrap: wrap;
}

.logo-img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.footer-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #4b4b4b;
  text-align: center;
  margin: 0;
  max-width: 600px;
}

/* Footer Bottom Styles */
.footer-bottom {
  background: white;
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.footer-bottom-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-text {
  font-size: 14px;
  font-weight: 500;
  color: #7a7a7a;
  margin: 0;
}

.footer-heart {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-bottom-content .heart-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-bottom-content .footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: row;
}

.footer-bottom-content .footer-links li {
  list-style: none;
}

.footer-bottom-content .footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: #7a7a7a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-content .footer-links a:hover {
  color: #183f6d;
}

.footer-bottom-content .divider {
  width: 1px;
  height: 12px;
  background: #d9d9d9;
  display: inline-block;
}

.footer-bottom-content .footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-content .footer-socials li {
  list-style: none;
}

.footer-bottom-content .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.footer-bottom-content .icon:hover {
  opacity: 0.7;
}

/* Responsive design */
@media (max-width: 768px) {
  .logo-text {
    font-size: 2.5rem;
  }

  .lova-logo {
    max-width: 250px;
  }

  .content {
    padding: 40px 25px;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .description {
    font-size: 1.1rem;
  }

  /* .footer-content {
          flex-direction: column;
          text-align: center;
          align-items: center;
          width: 100%;
        }

        .footer-about {
          flex: none;
          min-width: auto;
          max-width: 100%;
          width: 100%;
          padding: 0 15px;
        }

        .footer-about p {
          text-align: center;
          width: 100%;
          max-width: 100%;
        }

        .footer-links {
          align-items: center;
          width: 100%;
        }

        .footer-bottom {
          flex-direction: column;
          text-align: center;
          width: 100%;
        }

        .footer-copyright {
          width: 100%;
          text-align: center;
        }

        .footer-legal {
          justify-content: center;
        } */

  /* footer */

  /* Footer Top Responsive */
  .footer-top {
    padding: 16px 0;
  }

  .footer-top-content {
    padding: 0 16px;
    flex-direction: column;
    gap: 15px;
  }

  /* Logo */
  .logo-img {
    max-width: 100px;
    height: 40px;
    object-fit: contain;
  }

  /* Text */
  .footer-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #4b4b4b;
  }

  /* Footer Bottom Responsive */
  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-content {
    padding: 0 16px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-bottom-content .footer-left {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  
  .footer-bottom-content .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom-content .footer-socials {
    justify-content: center;
  }

  /* Left text group */
  .footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-text {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
  }

  .footer-heart {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .heart-icon {
    width: 16px;
    height: 16px;
  }

  /* Links */
  .footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    text-decoration: none;
  }

  .divider {
    width: 1px;
    height: 12px;
    background: #d9d9d9;
  }

  /* Social Icons */
  .footer-socials {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .icon {
    width: 16px;
    height: 16px;
  }
}
