/* Styling for the Hero Section on the Home Page */
.mdx-hero {
  background: url('../assets/bg-deeplearning.png') center/cover no-repeat;
  border-radius: 0.5rem;
  
  padding: 9rem 3rem;
  min-height: 500px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-top: 2rem;
}

.mdx-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}

.mdx-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 24, 39, 0.75);
  z-index: 1;
}

.mdx-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.mdx-hero h1 {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 2.5em;
  margin-bottom: 0.5rem;
}

.mdx-hero p {
  color: #e2e8f0 !important;
  font-size: 1.2em;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mdx-hero .md-button {
  background-color: var(--md-primary-fg-color);
  color: white;
  border: none;
  font-weight: bold;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mdx-hero .md-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(63, 81, 181, 0.4);
  color: white;
}