/* Reset and Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Join Button */
.join-btn {
  background: linear-gradient(45deg, #ff9d5c, #ff6a00);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 154, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.join-btn:hover {
  background: linear-gradient(45deg, #ff8126, #e65100);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 154, 0, 0.6);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.1), transparent 70%);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: #f3f3f3;
  line-height: 1.6;
}

.hero-image {
  max-height: 400px;
  width: 100%;
  object-fit: contain;
}

/* Beautiful section separator */
.section-divider {
  border: 0;
  height: 4px;
  background: linear-gradient(to right, #fe2200, #ff4545);
  margin: 60px auto;
  border-radius: 2px;
  width: 80%;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    margin: 20px auto;
  }

  .join-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .hero-image {
    margin-top: 30px;
    max-height: 300px;
  }
}
