/* General resets and layout */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background-color: #0d011a;
  overflow-x: hidden;
}

.container {
  position: relative;
  padding: 2rem;
  background-image: url('/media/website/files/bgImage2.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  overflow: hidden;
  background-image: url('/media/website/files/bgImage2.jpeg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Button Styles */
.btn-filled {
  background-color: #7e22ce;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(126, 34, 206, 0.4);
}

.btn-filled:hover {
  background-color: #6b21a8;
  box-shadow: 0 0 20px rgba(126, 34, 206, 0.5);
}

.btn-outline {
  background-color: transparent;
  color: #d8b4fe;
  border: 1px solid #a855f7;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background-color: #7e22ce;
  color: white;
}

/* Top buttons positioning */
.top-right-buttons {
  position: absolute;
  top: 2rem;
  right: 0.2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 50;
}

/* Logo */
.logo-container {
  position: absolute;
  top: 1.5rem;
  left: 0.2rem;
}

.logo {
  width: 45%;
}

@media (min-width: 640px) {
  .logo {
    width: 20rem;
  }
}

/* Floating bot */
.floating-bot {
  position: absolute;
  top: 5rem;
  right: 1rem;
  width: 7rem;
  pointer-events: none;
  z-index: 30;
}

@media (min-width: 640px) {
  .floating-bot {
    top: 4rem;
    right: 2.5rem;
    width: 12rem;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  
  text-align: center;
  padding: 2rem;
  min-height: 100vh;
}

.hero-text {
  max-width: 55rem;
}

.gradient-text {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, #c084fc, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .gradient-text {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .gradient-text {
    font-size: 52px;
  }
}

.hero-text p {
  font-size: 1rem;
  color: #a1a1aa;
}

@media (min-width: 640px) {
  .hero-text p {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Mobile image (shown only on small screens) */
.mobile-img {
  margin-top: 2rem;
  display: none;
}

@media (max-width: 768px) {
  .mobile-img {
    display: block;
  }

  .mobile-img img {
    width: 80%;
    height: auto;
    object-fit: cover;
  }
}
