/* Welcome Page Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  background-image: url('Images/dr15.jpg'); /* Match home background */
  background-size: cover; /* Ensure the image covers the entire background */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
}

.welcome-container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-container h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.highlight {
  color: #e91e63;
}

.welcome-container p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #e91e63;
}

.social-icons a:hover {
  background-color: #c2185b;
  transform: translateY(-5px);
}

.enter-button {
  position: relative;
  padding: 15px 40px;
  background-color: #e91e63;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s ease;
}

.enter-button span {
  position: relative;
  z-index: 2;
}

.enter-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e91e63, #ff4081);
  z-index: 1;
  transition: all 0.5s ease;
  border-radius: 50px;
}

.enter-button:hover::before {
  transform: scale(1.1);
  opacity: 0;
}

.enter-button:hover {
  background-color: #ff4081;
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.6);
  transform: translateY(-5px);
}