:root {
  --primary-color: #34011f;
  --deep-red: #7e0d10;
  --pink-light: #ffb6c1;
  --pink-medium: #ffc0cb;
  --pink-hot: #ff1493;
  --pink-glow: rgba(255, 20, 147, 0.3);
  --pink-glow-strong: rgba(255, 20, 147, 0.6);
  --header-gradient: linear-gradient(
    var(--primary-color) 0%,
    var(--primary-color) 80%,
    transparent 100%
  );
  --subtitle-left-to: 50%;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;

}

html {
  font-size: 27px;
}


* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  /* background-image: url("images/gifs/bg-heart.gif");
  background-color: #1a000f;
  background-color: #34011f; */
  height: 100vh-;
  background-color: #1a000f;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/gifs/bg-heart.gif");

  background-repeat: repeat;
  background-size: auto;
  font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  height: 250px;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #B22222 100%),
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.header-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 380px;
}

/* Content Section Styles */
.content-section {
  margin-bottom: 80px;
  padding: 40px 20px;
  background: rgba(26, 0, 15, 0.3);
  border-radius: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 20, 147, 0.3);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 20, 147, 0.2);
}

.section-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--pink-glow));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.section-title {
  font-family: "Petit Formal Script", cursive;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.section-content {
  line-height: 1.8;
}

.section-content p {
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.9;
}

.section-content a {
  color: var(--pink-hot);
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-content a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 10px var(--pink-glow);
}

/* Mobile responsive sections */
@media (max-width: 768px) {
  .content-section {
    margin-bottom: 60px;
    padding: 30px 15px;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .section-icon {
    width: 40px;
    height: 40px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-content p {
    font-size: 0.9rem;
  }
}

.script {
  font-family: "Petit Formal Script", cursive;
  font-weight: 400;
  font-style: normal;
}

.text-white {
  color: #FFFFFF;
}

.ascii-art {
  font-family: "Courier New", Courier, monospace;
  font-weight: bolder;
  font-size: 0.34rem;
  scale: 1;
  line-height: 1;
  white-space: pre;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #FFFFFF;
  height: 84px;
  text-shadow: 0 0 15px rgba(255,255,255,0.5), 0 0 30px var(--pink-glow);
  filter: drop-shadow(0 0 25px var(--pink-glow-strong));
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
}

.subtitle {
  position: absolute;
  font-size: 1.2rem;
  color: var(--pink-hot);
  opacity: 0.4;
  text-shadow: 0 0 15px rgba(255,255,255,0.5), 0 0 30px var(--pink-glow);
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
}


.socials {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  gap: 10px;
  height: min-content;
  padding-top: 20px;
}

.social-link {
  margin: 0 10px;
}

.social-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #1a000f 0%, #34011f 100%);
  color: #FFFFFF;
  padding: 40px 0 20px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.footer-section h3 {
  font-family: "Petit Formal Script", cursive;
  font-size: 24px;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: 600;
}

.footer-section p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
}

.footer-section a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--pink-hot);
}

.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-socials a {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-socials {
    justify-content: center;
  }
}

.rose {
  position: fixed;
  height: 4rem;
  z-index: 3;
  filter: drop-shadow(0 0 25px var(--pink-glow-strong));
}

.rose-left {
  left: 0px;
  top: 0px;
  transform: translate(-30%, -30%) rotate(35deg);
  opacity: 0.23;

}

.rose-right {
  right: 0px;
  top: 0px;
  opacity: 0.73;
  scale: 1.86;
  transform: translate(0%, -5%) rotate(-35deg);
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  main {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 250px;
  }

  :root {
    --subtitle-left-to: 25%;
  }
}