/* Custom styles for Juvenal's blog */

/* Importar la fuente Ubuntu desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

/* Aplicar Ubuntu como fuente principal */
* {
  font-family: 'Ubuntu', sans-serif;
}

.navbar-brand {
  font-weight: 600;
}
.listing-title {
  color: #2c3e50;
}
.listing-description {
  color: #7f8c8d;
}
code {
  color: #e74c3c;
  background-color: #f8f9fa;
}
.highlight {
  background-color: #fff3cd;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
}

/* Hero Banner Styles */
.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  margin-bottom: 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive design for hero */
@media (max-width: 768px) {
  .hero-banner {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}