body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #6f42c1, #41216b);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0c093d;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.highlight {
  color: #009ee2;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 1rem;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  padding: 0 1rem;
}

.content {
  max-width: 600px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.subtext {
  margin-top: 1rem;
  font-size: 0.95rem;
}

a.btn {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(90deg, #009ee2, #e5007e);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}


a {
  color: #e5007e;
}

.blog-row {
  background: #0c093d;
  padding: 4rem 2rem;
  text-align: center;
}

.blog-row h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.blogs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  width: 300px;
  border-radius: 8px;
  text-align: left;
  text-decoration: none;
  color: white;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #f29222;
}

.blog-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.blog-card a {
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
}


.hero {
  background-image: url('images/drone-show.jpg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
