@charset "UTF-8";

/* ===== Base Styles ===== */
body {
  padding: 3rem;
  color: #fff;
  font-weight: 300;
  font-family: 'Lekton', monospace, sans-serif;
  text-shadow: 1px 1px 1px #71747f;
  line-height: 1.5;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== Background Layer (solid colour + fade) ===== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-color: #0a0a0a;
  animation: fade 15s ease-in-out infinite;
}

@keyframes fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}

/* ===== Header ===== */
header img {
  display: none;
  max-width: 100%;
  height: auto;
}

/* ===== Hero Section ===== */
#ello {
  width: 90%;
  max-width: 500px;
}

#ello img {
  margin-bottom: 3rem;
}

#ello p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Container ===== */
#container {
  padding: 3rem 1.25rem 0;
  position: relative;
}

#content {
  width: 100%;
  position: absolute;
  z-index: 3;
}

#content .logo {
  margin-bottom: 1.5rem;
}

/* ===== Links ===== */
a {
  transition: all 0.25s ease-in-out;
}

a:link,
a:visited {
  color: #fff;
  font-weight: normal;
  text-decoration: underline;
}

a:hover {
  color: #111;
}

/* ===== Selection Highlight ===== */
::selection {
  color: #fff;
  background: #3be6ff;
}

/* ===== Typography ===== */
p {
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ===== Services List ===== */
h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none; 
  margin: 0;
  padding: 0;
}

ul li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  body {
    margin: 0;
    padding: 0 0 1.5rem;
    width: auto;
  }

  h2 {
    text-align: center;
  }

  #backstretch {
    display: none !important;
  }

  header img {
    display: block;
    width: 100%;
    height: auto;
  }

  #ello {
    width: 100%;
  }

  .logo {
    position: absolute;
    top: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }

  p {
    padding: 0 1.5rem;
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.6;
  }

  ul {
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  ul li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
}
