/* Enhanced Welcome Card Styling */

/* Main card styling */
.welcome-card {
  border: none !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Decorative element */
.welcome-card-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #6e45a0, #9778c3, #6e45a0);
  z-index: 1;
}

/* Premium badge */
.welcome-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6e45a0 0%, #8a63b8 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(110, 69, 160, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.welcome-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(110, 69, 160, 0.4);
}

.welcome-badge i {
  color: #FFD700;
  margin-right: 0.5rem;
}

/* Welcome title */
h1.text-teal {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #6e45a0 0%, #9778c3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 1.2rem !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
}

/* Welcome text */
.text-gray-700 {
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  color: #4b5563 !important;
}

/* Email link */
.welcome-link {
  color: #6e45a0 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.welcome-link:hover {
  color: #8a63b8 !important;
}

.welcome-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(to right, #6e45a0, #9778c3);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.welcome-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Action buttons */
.welcome-actions {
  margin-top: 2rem !important;
}

.welcome-btn {
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.welcome-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.btn-primary.welcome-btn {
  background: linear-gradient(135deg, #6e45a0 0%, #8a63b8 100%) !important;
  border: none !important;
}

.btn-light.welcome-btn {
  background: #f8f9fa !important;
  color: #6e45a0 !important;
  border: 1px solid rgba(110, 69, 160, 0.2) !important;
}

.btn-light.welcome-btn:hover {
  background: #f0f2f5 !important;
}

/* Image container */
.welcome-image-container {
  position: relative !important;
  display: inline-block !important;
  z-index: 1 !important;
}

/* Image styling */
.welcome-image {
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1)) !important;
  transform: translateY(0) !important;
  transition: all 0.5s ease !important;
  position: relative !important;
  z-index: 2 !important;
}

.welcome-card:hover .welcome-image {
  transform: translateY(-10px) !important;
}

/* Image decoration */
.welcome-image-decoration {
  position: absolute !important;
  bottom: -20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80% !important;
  height: 15px !important;
  background: radial-gradient(ellipse at center, rgba(110, 69, 160, 0.2) 0%, rgba(110, 69, 160, 0) 70%) !important;
  border-radius: 50% !important;
  z-index: 1 !important;
  transition: all 0.5s ease !important;
}

.welcome-card:hover .welcome-image-decoration {
  width: 90% !important;
  opacity: 0.8 !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  h1.text-teal {
    font-size: 2.2rem !important;
  }
  
  .welcome-badge {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  h1.text-teal {
    font-size: 1.8rem !important;
  }
  
  .text-gray-700 {
    font-size: 1rem !important;
  }
  
  .welcome-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
  }
} 