/* Sakura Background Canvas */
#sakura-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* BELOW content */
}

/* Dark overlay with blur */
.overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Main content */
.glass-container {
 padding: 40px 20px;
}

/* Titles */
.welcome-title {
 font-size: 2.4rem;
  font-weight: bold;
}
.subtitle {
 font-size: 1.2rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
padding: 12px 25px;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}
.btn:hover {
  transform: scale(1.05);
}

/* Contact highlight */
.contact-number {
  color: #ffc107;
  font-weight: bold;
}

/* Footer */
.footer-text {
  opacity: 0.7;
}

/* Navbar */
.navbar {
  background-color: rgba(0,0,0,0.85) !important;
  padding: 15px;
}
.navbar-brand {
  font-weight: bold;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-title { font-size: 1.8rem; }
  .subtitle { font-size: 1rem; }
} 

/* Reset scroll issues */
html, body {
  background: black;      /* <-- Black background */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#sakura {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;          /* <-- Bring particles to the FRONT */
  pointer-events: none;
}