/*
  Vivid Pixel – Site Styles
  Brand Color: Vibrant Cyan #1FBAD6
*/

/* =========================
   GLOBAL STYLES
   ========================= */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Center content and keep it readable */
section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Headings */
h1, h2 {
  margin: 0;
  font-weight: 700;
}

/* =========================
   HERO / LOGO SECTION
   ========================= */

.hero {
  text-align: center;
  padding: 4rem 1.5rem;
}

/* Logo container */
.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

/* The pixel square */
.pixel {
  width: 90px;
  height: 90px;
  background-color: #1FBAD6;
}

/* Brand text */
.brand-text h1 {
  font-size: 3rem;
  line-height: 1;
}

/* Tagline under logo */
.tagline {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #cccccc;
}

/* =========================
   ABOUT SECTION
   ========================= */

.about h2 {
  color: #1FBAD6;
  margin-bottom: 1rem;
}

/* =========================
   CONTACT SECTION
   ========================= */

.contact h2 {
  color: #1FBAD6;
  margin-bottom: 1rem;
}

.form-wrapper {
  margin-top: 2rem;
  border: 2px solid #1FBAD6;
  padding: 1rem;
  border-radius: 4px;
}

/* =========================
   FOOTER
   ========================= */

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #aaaaaa;
}

