.web-container {
  margin-top: 100px;
  width: 95%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  will-change: opacity, transform;
}

.welcome-container {
  position: relative;
  padding: 25vh 2rem;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.welcome-container h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #222;
  margin-bottom: 1rem;
}

.welcome-container h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #555;
}

.explanation-container {
  position: relative;
  margin: 15vh auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog-preview {
  position: relative;
  margin: 15vh auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog-preview h2 {
  font-size: 2rem;
}

.blog-preview p {
  margin: 5px 0;
}


.uses-container {
  position: relative;
  margin: 15vh auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.uses-container h2 {
  font-size: 2rem;
}

.uses-container p {
  margin: 5px 0;
}

.faq_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 2rem;
}

.faq_cards h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.holder_faq {
  flex: 1 1 calc(33.333% - 20px); /* 3 columns with gap accounted */
  min-width: 200px;
  max-width: 100%;
  width: 33%;
  padding: 2rem;
  font-size: 1rem;
  background-color: #fafafad0;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
}

.holder_uses {
  flex: 1 1 calc(25% - 20px); /* 3 columns with gap accounted */
  min-width: 200px;
  max-width: 100%;
  width: 33%;
  padding: 2rem;
  font-size: 1rem;
  background-color: #fafafad0;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
}

.holder_uses {
  transform: scale(1.02);
}

.holder_faq:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .holder_faq {
    flex: 1 1 100%;
  }
  
  .holder_uses {
    flex: 1 1 100%;
  }
}

.explanation-container h2 {
  font-size: 2rem;
}

.explanation-container p {
  margin: 5px 0;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.about-extra {
  position: relative;
  text-align: left;
  display: flex;
  margin: 15vh auto;
  flex-direction: column;
  max-width: 1000px;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.about-extra-container {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem 2rem;
  gap: 1.5rem;
  z-index: 1;
}

.about-extra::after, .about-extra::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: conic-gradient(from var(--angle), #ff6781, #44c1ff, #ff6781);
  opacity: 0.5;
  z-index: 0;
  border-radius: 18px;
  margin: -3px;
  animation: 3s spin linear infinite;
}

.about-extra::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}

.about-extra h2 {
  font-size: 2rem;
  text-align: center;
}
.about-extra p {
  font-size: 1.1rem;
  line-height: 1.7;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

.end-container {
  position: relative;
  padding: 25vh 2rem;
  margin-bottom: 20vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.end-container h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #222;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.end-container p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #555;
}

.visit-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ff6781;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.visit-button:hover {
  background-color: #e3576f;
  transform: scale(1.02);
}

/* Canvas styles (for background animations) */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#blossomCanvas {
  z-index: 0;
}

#heartCanvas {
  z-index: 1;
}
