/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('media/images/background_landing-ai-brush-removebg-xl5u7g6-e1742501642621-1536x722.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: black;
  margin: -2em -2em 0 -2em;
  padding: 2em;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2em;
}

.hero-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-subtitle {
  font-size: 0.9em;
  margin-bottom: 1.5em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-button {
  display: inline-block;
  padding: 0.6em 1.5em;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.72em;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-button:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Content section with same background */
body {
  background-image: url('media/images/background_landing-ai-brush-removebg-xl5u7g6-e1742501642621-1536x722.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: black;
}

main {
  background: transparent !important;
}

/* Featured Content Grid */
#featured-content {
  margin-top: 2em;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin: 2em;
  padding: 2em 0;
}

.content-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 1.5em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.8);
}

.content-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1em;
}

.content-card h3 {
  color: #4a9eff;
  margin: 0.5em 0;
}

.content-card h3 a {
  text-decoration: none;
  color: #4a9eff;
}

.content-card h3 a:hover {
  color: #6bb3ff;
}

.content-card p {
  color: #ccc;
  font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.2em;
  }
  
  .hero-subtitle {
    font-size: 0.72em;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
}
