/* Import Dracula Pro or use a fallback if unavailable */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');

/* General Styles */
body {
  font-family: 'Dracula Pro', 'Fira Code', monospace;
  background-color: #282a36;
  color: #f8f8f2;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar-brand,
.nav-link,
.btn {
  font-family: inherit;
}

/* Hero Section */
.hero-image {
  background: url('../img/hero.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  position: relative;
}

/* Optional overlay for better text contrast */
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 42, 54, 0.5);
}

/* Ensure hero content is above the overlay */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Section Styles */
section {
  background-color: #44475a;
}

section:nth-of-type(even) {
  background-color: #6272a4;
}

h2 {
  font-weight: bold;
}

p {
  font-size: 1.1rem;
}