body {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: 'Stack Sans Notch', sans-serif;
  line-height: 1.6;
  margin: 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.button {
  display: inline-block;          /* lets it take padding like a box */
  background-color: #e63946;      /* your brand red */
  color: #ffffff;                 /* white text */
  text-decoration: none;          /* removes the underline */
  padding: 14px 28px;             /* height (top/bottom) + width (left/right) */
  border-radius: 8px;             /* rounded corners */
  font-weight: 700;               /* bold */
  margin-top: 20px;               /* gap above it */
}

.button:hover {
  background-color: #c1121f;      /* darker red when you point at it */
}
.plugins {
  padding: 80px 20px;
  text-align: center;
}

.plugins h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.plugin-card {
  background-color: #262626;
  border-radius: 12px;
  padding: 30px;
  /* ...your existing card styles... */
  text-decoration: none;   /* no underline */
  color: inherit;          /* keep your white text, not link-blue */
  display: block;          /* behave as a full box */
}


.plugin-card h3 {
  color: #e63946;
  margin-bottom: 10px;
}
.plugin-card {
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.plugin-card:hover {
  transform: translateY(-6px);
  background-color: #2e2e2e;
  
}
.plugin-card:focus-visible {
  outline: 2px solid #e63946;   /* brand red focus ring, keyboard nav only */
  outline-offset: 2px;          /* small gap between card and ring */
}
.price {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 12px 0;
}
.navbar {
  display: flex;
  justify-content: space-between;  /* logo left, links right */
  align-items: center;             /* vertically centred */
  padding: 20px 40px;
  background-color: #111111;
  position: sticky;                /* stays pinned... */
  top: 0;                          /* ...to the top when scrolling */
  z-index: 10;                     /* sits above other content */
}

.nav-logo {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 24px;
}

.nav-links a:hover {
  color: #e63946;
}
.footer {
  background-color: #111111;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #333333;
}

.footer-links {
  margin: 16px 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 12px;
}

.footer-links a:hover {
  color: #e63946;
}

.copyright {
  color: #888888;
  font-size: 14px;
}

.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #262626;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #444444;
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: inherit;      /* use your page font, not the browser default */
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #e63946;
  border-color: #e63946;
}

.contact-form button {
  align-self: flex-start;
}